@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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;
  opacity: 0;
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
.glightbox-container .ginner-container.desc-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left {
  max-width: 100% !important;
}
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.glightbox-container.inactive {
  display: none;
}

.gslide iframe {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}
.gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}
.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}
.gslide-image img.zoomable {
  position: relative;
}
.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.desc-bottom .gslide-image img {
  width: auto;
}
.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.desc-top .gslide-image img {
  width: auto;
}
.desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.desc-left .gslide-image img {
  width: auto;
  max-width: 100%;
}

.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}
.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}
.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}
.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.zoomed .gslide-description {
  display: none;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}

.gslide-description.description-left {
  max-width: 100%;
}

.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom {
  margin: 0 auto;
  width: 100%;
}

.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}
.glightbox-mobile .goverlay {
  background: #000;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5px;
}
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gclose .garrow {
  stroke: #fff;
}

.gnext {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gnext svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gnext .garrow {
  stroke: #fff;
}

.gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gprev .garrow {
  stroke: #fff;
}

.gclose.disabled {
  opacity: 0.1;
}

.gnext.disabled {
  opacity: 0.1;
}

.gprev.disabled {
  opacity: 0.1;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose {
  opacity: 0 !important;
}
.glightbox-closing .gnext {
  opacity: 0 !important;
}
.glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}
.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video {
  background: #000;
}
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-clean .gclose path {
  fill: #fff;
}
.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}
.glightbox-clean .gclose:hover {
  opacity: 1;
}
.glightbox-clean .gnext {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gnext path {
  fill: #fff;
}
.glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gprev path {
  fill: #fff;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left {
    max-width: 275px;
  }
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gnext {
    background-color: rgba(0, 0, 0, 0.32);
    top: 45%;
  }
  .glightbox-clean .gnext:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
    top: 45%;
  }
  .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Commissioner";
  src: url("../../assets/fonts/Commissioner-Bold.eot");
  src: url("../../assets/fonts/Commissioner-Bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Commissioner-Bold.woff2") format("woff2"), url("../../assets/fonts/Commissioner-Bold.woff") format("woff"), url("../../assets/fonts/Commissioner-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("../../assets/fonts/Commissioner-Light.eot");
  src: url("../../assets/fonts/Commissioner-Light.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Commissioner-Light.woff2") format("woff2"), url("../../assets/fonts/Commissioner-Light.woff") format("woff"), url("../../assets/fonts/Commissioner-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commissioner";
  src: url("../../assets/fonts/Commissioner-Medium.eot");
  src: url("../../assets/fonts/Commissioner-Medium.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Commissioner-Medium.woff2") format("woff2"), url("../../assets/fonts/Commissioner-Medium.woff") format("woff"), url("../../assets/fonts/Commissioner-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Commissioner";
  src: url("../../assets/fonts/Commissioner-Regular.eot");
  src: url("../../assets/fonts/Commissioner-Regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Commissioner-Regular.woff2") format("woff2"), url("../../assets/fonts/Commissioner-Regular.woff") format("woff"), url("../../assets/fonts/Commissioner-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
@font-face {
  font-family: "Commissioner";
  src: url("../../assets/fonts/Commissioner-SemiBold.eot");
  src: url("../../assets/fonts/Commissioner-SemiBold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Commissioner-SemiBold.woff2") format("woff2"), url("../../assets/fonts/Commissioner-SemiBold.woff") format("woff"), url("../../assets/fonts/Commissioner-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}
/* Generated by Glyphter (http://www.glyphter.com) on  Mon Dec 29 2025*/
@font-face {
  font-family: "mig";
  src: url("../../assets/fonts/mig.eot");
  src: url("../../assets/fonts/mig.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/mig.woff") format("woff"), url("../../assets/fonts/mig.ttf") format("truetype"), url("../../assets/fonts/mig.svg#mig") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class*=icon-]:before {
  display: inline-block;
  font-family: "mig";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-right:before {
  content: "A";
}

.icon-arrow-up-right:before {
  content: "B";
}

.icon-blocks:before {
  content: "C";
}

.icon-boxes:before {
  content: "D";
}

.icon-check:before {
  content: "E";
}

.icon-check-check:before {
  content: "F";
}

.icon-chevron-down:before {
  content: "G";
}

.icon-chevron-left:before {
  content: "H";
}

.icon-chevron-right:before {
  content: "I";
}

.icon-chevrons-right:before {
  content: "J";
}

.icon-codepen:before {
  content: "K";
}

.icon-codesandbox:before {
  content: "L";
}

.icon-copy:before {
  content: "M";
}

.icon-cpu:before {
  content: "N";
}

.icon-cross:before {
  content: "O";
}

.icon-database:before {
  content: "P";
}

.icon-download:before {
  content: "Q";
}

.icon-layout-dashboard:before {
  content: "R";
}

.icon-link:before {
  content: "S";
}

.icon-mail:before {
  content: "T";
}

.icon-map-pin:before {
  content: "U";
}

.icon-max:before {
  content: "V";
}

.icon-menu:before {
  content: "W";
}

.icon-phone:before {
  content: "X";
}

.icon-pin:before {
  content: "Y";
}

.icon-plug-zap:before {
  content: "Z";
}

.icon-printer:before {
  content: "a";
}

.icon-radius:before {
  content: "b";
}

.icon-search:before {
  content: "c";
}

.icon-shapes:before {
  content: "d";
}

.icon-share:before {
  content: "e";
}

.icon-share-2:before {
  content: "f";
}

.icon-square:before {
  content: "g";
}

.icon-square-check-bg:before {
  content: "h";
}

.icon-swatch-book:before {
  content: "i";
}

.icon-telegram:before {
  content: "j";
}

.icon-unplug:before {
  content: "k";
}

.icon-vk:before {
  content: "l";
}

.icon-waypoints:before {
  content: "m";
}

.icon-whatsapp:before {
  content: "n";
}

:root {
  --white: #ffffff;
  --white-80: #ffffffcc;
  --light-grey: #f2f3f6;
  --grey-blue: #c9cfd4;
  --main: #ff7914;
  --black: #1d2123;
  --black-80: #1d2123cc;
  --black-50: #1d212380;
  --error: #b94141;
}

:root {
  --btn-size: 40px;
  --btn-padding-y: 16px;
  --btn-padding-x: 25px;
  --slides-gap: 10px;
}

@keyframes pulse {
  0% {
    transform: scale(120%);
  }
  75% {
    transform: scale(60%);
  }
  100% {
    transform: scale(100%);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinTrans {
  0% {
    transform: translate(var(--pos-x), var(--pos-y)) skewX(0deg) scale(0.5);
  }
  100% {
    transform: translate(0%, 0%) skewX(0deg) scale(1);
  }
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.bg-light-grey {
  background-color: #f2f3f6 !important;
}
.bg-grey-blue {
  background-color: #c9cfd4 !important;
}
.bg-main {
  background-color: #ff7914 !important;
}
.bg-black {
  background-color: #1d2123 !important;
}
.bg-black-80 {
  background-color: rgba(29, 33, 35, 0.8) !important;
}
.bg-black-50 {
  background-color: rgba(29, 33, 35, 0.5019607843) !important;
}
.bg-green {
  background-color: #4fac7f !important;
}
.bg-error {
  background-color: #b94141 !important;
}
@media (max-width: 1599.98px) {
  .bg-xxxl-white {
    background-color: #ffffff !important;
  }
  .bg-xxxl-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-xxxl-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-xxxl-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-xxxl-main {
    background-color: #ff7914 !important;
  }
  .bg-xxxl-black {
    background-color: #1d2123 !important;
  }
  .bg-xxxl-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-xxxl-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-xxxl-green {
    background-color: #4fac7f !important;
  }
  .bg-xxxl-error {
    background-color: #b94141 !important;
  }
}
@media (max-width: 1439.98px) {
  .bg-xxl-white {
    background-color: #ffffff !important;
  }
  .bg-xxl-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-xxl-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-xxl-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-xxl-main {
    background-color: #ff7914 !important;
  }
  .bg-xxl-black {
    background-color: #1d2123 !important;
  }
  .bg-xxl-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-xxl-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-xxl-green {
    background-color: #4fac7f !important;
  }
  .bg-xxl-error {
    background-color: #b94141 !important;
  }
}
@media (max-width: 1279.98px) {
  .bg-1280-white {
    background-color: #ffffff !important;
  }
  .bg-1280-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-1280-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-1280-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-1280-main {
    background-color: #ff7914 !important;
  }
  .bg-1280-black {
    background-color: #1d2123 !important;
  }
  .bg-1280-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-1280-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-1280-green {
    background-color: #4fac7f !important;
  }
  .bg-1280-error {
    background-color: #b94141 !important;
  }
}
@media (max-width: 1199.98px) {
  .bg-xl-white {
    background-color: #ffffff !important;
  }
  .bg-xl-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-xl-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-xl-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-xl-main {
    background-color: #ff7914 !important;
  }
  .bg-xl-black {
    background-color: #1d2123 !important;
  }
  .bg-xl-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-xl-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-xl-green {
    background-color: #4fac7f !important;
  }
  .bg-xl-error {
    background-color: #b94141 !important;
  }
}
@media (max-width: 999.98px) {
  .bg-lg-white {
    background-color: #ffffff !important;
  }
  .bg-lg-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-lg-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-lg-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-lg-main {
    background-color: #ff7914 !important;
  }
  .bg-lg-black {
    background-color: #1d2123 !important;
  }
  .bg-lg-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-lg-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-lg-green {
    background-color: #4fac7f !important;
  }
  .bg-lg-error {
    background-color: #b94141 !important;
  }
}
@media (max-width: 719.98px) {
  .bg-md-white {
    background-color: #ffffff !important;
  }
  .bg-md-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-md-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-md-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-md-main {
    background-color: #ff7914 !important;
  }
  .bg-md-black {
    background-color: #1d2123 !important;
  }
  .bg-md-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-md-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-md-green {
    background-color: #4fac7f !important;
  }
  .bg-md-error {
    background-color: #b94141 !important;
  }
}
@media (max-width: 575.98px) {
  .bg-sm-white {
    background-color: #ffffff !important;
  }
  .bg-sm-white-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .bg-sm-light-grey {
    background-color: #f2f3f6 !important;
  }
  .bg-sm-grey-blue {
    background-color: #c9cfd4 !important;
  }
  .bg-sm-main {
    background-color: #ff7914 !important;
  }
  .bg-sm-black {
    background-color: #1d2123 !important;
  }
  .bg-sm-black-80 {
    background-color: rgba(29, 33, 35, 0.8) !important;
  }
  .bg-sm-black-50 {
    background-color: rgba(29, 33, 35, 0.5019607843) !important;
  }
  .bg-sm-green {
    background-color: #4fac7f !important;
  }
  .bg-sm-error {
    background-color: #b94141 !important;
  }
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1699.98px) {
  .container {
    width: 96%;
    padding: 0;
  }
}
@media (max-width: 999.98px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}

.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
@media (max-width: 1599.98px) {
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1439.98px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1279.98px) {
  .d-1280-block {
    display: block !important;
  }
  .d-1280-flex {
    display: flex !important;
  }
  .d-1280-none {
    display: none !important;
  }
  .d-1280-inline {
    display: inline !important;
  }
  .d-1280-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1199.98px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 999.98px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 719.98px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
}

.gap-auto {
  gap: auto !important;
}
.gap-x-auto {
  column-gap: auto !important;
}
.gap-y-auto {
  row-gap: auto !important;
}
.gap-0 {
  gap: 0px !important;
}
.gap-x-0 {
  column-gap: 0px !important;
}
.gap-y-0 {
  row-gap: 0px !important;
}
.gap-5 {
  gap: 5px !important;
}
.gap-x-5 {
  column-gap: 5px !important;
}
.gap-y-5 {
  row-gap: 5px !important;
}
.gap-10 {
  gap: 10px !important;
}
.gap-x-10 {
  column-gap: 10px !important;
}
.gap-y-10 {
  row-gap: 10px !important;
}
.gap-15 {
  gap: 15px !important;
}
.gap-x-15 {
  column-gap: 15px !important;
}
.gap-y-15 {
  row-gap: 15px !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-x-20 {
  column-gap: 20px !important;
}
.gap-y-20 {
  row-gap: 20px !important;
}
.gap-25 {
  gap: 25px !important;
}
.gap-x-25 {
  column-gap: 25px !important;
}
.gap-y-25 {
  row-gap: 25px !important;
}
.gap-30 {
  gap: 30px !important;
}
.gap-x-30 {
  column-gap: 30px !important;
}
.gap-y-30 {
  row-gap: 30px !important;
}
.gap-35 {
  gap: 35px !important;
}
.gap-x-35 {
  column-gap: 35px !important;
}
.gap-y-35 {
  row-gap: 35px !important;
}
.gap-40 {
  gap: 40px !important;
}
.gap-x-40 {
  column-gap: 40px !important;
}
.gap-y-40 {
  row-gap: 40px !important;
}
.gap-45 {
  gap: 45px !important;
}
.gap-x-45 {
  column-gap: 45px !important;
}
.gap-y-45 {
  row-gap: 45px !important;
}
.gap-50 {
  gap: 50px !important;
}
.gap-x-50 {
  column-gap: 50px !important;
}
.gap-y-50 {
  row-gap: 50px !important;
}
.gap-55 {
  gap: 55px !important;
}
.gap-x-55 {
  column-gap: 55px !important;
}
.gap-y-55 {
  row-gap: 55px !important;
}
.gap-60 {
  gap: 60px !important;
}
.gap-x-60 {
  column-gap: 60px !important;
}
.gap-y-60 {
  row-gap: 60px !important;
}
.gap-65 {
  gap: 65px !important;
}
.gap-x-65 {
  column-gap: 65px !important;
}
.gap-y-65 {
  row-gap: 65px !important;
}
.gap-70 {
  gap: 70px !important;
}
.gap-x-70 {
  column-gap: 70px !important;
}
.gap-y-70 {
  row-gap: 70px !important;
}
.gap-75 {
  gap: 75px !important;
}
.gap-x-75 {
  column-gap: 75px !important;
}
.gap-y-75 {
  row-gap: 75px !important;
}
.gap-80 {
  gap: 80px !important;
}
.gap-x-80 {
  column-gap: 80px !important;
}
.gap-y-80 {
  row-gap: 80px !important;
}
.gap-85 {
  gap: 85px !important;
}
.gap-x-85 {
  column-gap: 85px !important;
}
.gap-y-85 {
  row-gap: 85px !important;
}
.gap-90 {
  gap: 90px !important;
}
.gap-x-90 {
  column-gap: 90px !important;
}
.gap-y-90 {
  row-gap: 90px !important;
}
.gap-95 {
  gap: 95px !important;
}
.gap-x-95 {
  column-gap: 95px !important;
}
.gap-y-95 {
  row-gap: 95px !important;
}
.gap-100 {
  gap: 100px !important;
}
.gap-x-100 {
  column-gap: 100px !important;
}
.gap-y-100 {
  row-gap: 100px !important;
}
@media (max-width: 1599.98px) {
  .gap-xxxl-auto {
    gap: auto !important;
  }
  .gap-xxxl-0 {
    gap: 0px !important;
  }
  .gap-xxxl-5 {
    gap: 5px !important;
  }
  .gap-xxxl-10 {
    gap: 10px !important;
  }
  .gap-xxxl-15 {
    gap: 15px !important;
  }
  .gap-xxxl-20 {
    gap: 20px !important;
  }
  .gap-xxxl-25 {
    gap: 25px !important;
  }
  .gap-xxxl-30 {
    gap: 30px !important;
  }
  .gap-xxxl-35 {
    gap: 35px !important;
  }
  .gap-xxxl-40 {
    gap: 40px !important;
  }
  .gap-xxxl-45 {
    gap: 45px !important;
  }
  .gap-xxxl-50 {
    gap: 50px !important;
  }
  .gap-xxxl-55 {
    gap: 55px !important;
  }
  .gap-xxxl-60 {
    gap: 60px !important;
  }
  .gap-xxxl-65 {
    gap: 65px !important;
  }
  .gap-xxxl-70 {
    gap: 70px !important;
  }
  .gap-xxxl-75 {
    gap: 75px !important;
  }
  .gap-xxxl-80 {
    gap: 80px !important;
  }
  .gap-xxxl-85 {
    gap: 85px !important;
  }
  .gap-xxxl-90 {
    gap: 90px !important;
  }
  .gap-xxxl-95 {
    gap: 95px !important;
  }
  .gap-xxxl-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .gap-x-xxxl-auto {
    column-gap: auto !important;
  }
  .gap-x-xxxl-0 {
    column-gap: 0px !important;
  }
  .gap-x-xxxl-5 {
    column-gap: 5px !important;
  }
  .gap-x-xxxl-10 {
    column-gap: 10px !important;
  }
  .gap-x-xxxl-15 {
    column-gap: 15px !important;
  }
  .gap-x-xxxl-20 {
    column-gap: 20px !important;
  }
  .gap-x-xxxl-25 {
    column-gap: 25px !important;
  }
  .gap-x-xxxl-30 {
    column-gap: 30px !important;
  }
  .gap-x-xxxl-35 {
    column-gap: 35px !important;
  }
  .gap-x-xxxl-40 {
    column-gap: 40px !important;
  }
  .gap-x-xxxl-45 {
    column-gap: 45px !important;
  }
  .gap-x-xxxl-50 {
    column-gap: 50px !important;
  }
  .gap-x-xxxl-55 {
    column-gap: 55px !important;
  }
  .gap-x-xxxl-60 {
    column-gap: 60px !important;
  }
  .gap-x-xxxl-65 {
    column-gap: 65px !important;
  }
  .gap-x-xxxl-70 {
    column-gap: 70px !important;
  }
  .gap-x-xxxl-75 {
    column-gap: 75px !important;
  }
  .gap-x-xxxl-80 {
    column-gap: 80px !important;
  }
  .gap-x-xxxl-85 {
    column-gap: 85px !important;
  }
  .gap-x-xxxl-90 {
    column-gap: 90px !important;
  }
  .gap-x-xxxl-95 {
    column-gap: 95px !important;
  }
  .gap-x-xxxl-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .gap-y-xxxl-auto {
    row-gap: auto !important;
  }
  .gap-y-xxxl-0 {
    row-gap: 0px !important;
  }
  .gap-y-xxxl-5 {
    row-gap: 5px !important;
  }
  .gap-y-xxxl-10 {
    row-gap: 10px !important;
  }
  .gap-y-xxxl-15 {
    row-gap: 15px !important;
  }
  .gap-y-xxxl-20 {
    row-gap: 20px !important;
  }
  .gap-y-xxxl-25 {
    row-gap: 25px !important;
  }
  .gap-y-xxxl-30 {
    row-gap: 30px !important;
  }
  .gap-y-xxxl-35 {
    row-gap: 35px !important;
  }
  .gap-y-xxxl-40 {
    row-gap: 40px !important;
  }
  .gap-y-xxxl-45 {
    row-gap: 45px !important;
  }
  .gap-y-xxxl-50 {
    row-gap: 50px !important;
  }
  .gap-y-xxxl-55 {
    row-gap: 55px !important;
  }
  .gap-y-xxxl-60 {
    row-gap: 60px !important;
  }
  .gap-y-xxxl-65 {
    row-gap: 65px !important;
  }
  .gap-y-xxxl-70 {
    row-gap: 70px !important;
  }
  .gap-y-xxxl-75 {
    row-gap: 75px !important;
  }
  .gap-y-xxxl-80 {
    row-gap: 80px !important;
  }
  .gap-y-xxxl-85 {
    row-gap: 85px !important;
  }
  .gap-y-xxxl-90 {
    row-gap: 90px !important;
  }
  .gap-y-xxxl-95 {
    row-gap: 95px !important;
  }
  .gap-y-xxxl-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .gap-xxl-auto {
    gap: auto !important;
  }
  .gap-xxl-0 {
    gap: 0px !important;
  }
  .gap-xxl-5 {
    gap: 5px !important;
  }
  .gap-xxl-10 {
    gap: 10px !important;
  }
  .gap-xxl-15 {
    gap: 15px !important;
  }
  .gap-xxl-20 {
    gap: 20px !important;
  }
  .gap-xxl-25 {
    gap: 25px !important;
  }
  .gap-xxl-30 {
    gap: 30px !important;
  }
  .gap-xxl-35 {
    gap: 35px !important;
  }
  .gap-xxl-40 {
    gap: 40px !important;
  }
  .gap-xxl-45 {
    gap: 45px !important;
  }
  .gap-xxl-50 {
    gap: 50px !important;
  }
  .gap-xxl-55 {
    gap: 55px !important;
  }
  .gap-xxl-60 {
    gap: 60px !important;
  }
  .gap-xxl-65 {
    gap: 65px !important;
  }
  .gap-xxl-70 {
    gap: 70px !important;
  }
  .gap-xxl-75 {
    gap: 75px !important;
  }
  .gap-xxl-80 {
    gap: 80px !important;
  }
  .gap-xxl-85 {
    gap: 85px !important;
  }
  .gap-xxl-90 {
    gap: 90px !important;
  }
  .gap-xxl-95 {
    gap: 95px !important;
  }
  .gap-xxl-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .gap-x-xxl-auto {
    column-gap: auto !important;
  }
  .gap-x-xxl-0 {
    column-gap: 0px !important;
  }
  .gap-x-xxl-5 {
    column-gap: 5px !important;
  }
  .gap-x-xxl-10 {
    column-gap: 10px !important;
  }
  .gap-x-xxl-15 {
    column-gap: 15px !important;
  }
  .gap-x-xxl-20 {
    column-gap: 20px !important;
  }
  .gap-x-xxl-25 {
    column-gap: 25px !important;
  }
  .gap-x-xxl-30 {
    column-gap: 30px !important;
  }
  .gap-x-xxl-35 {
    column-gap: 35px !important;
  }
  .gap-x-xxl-40 {
    column-gap: 40px !important;
  }
  .gap-x-xxl-45 {
    column-gap: 45px !important;
  }
  .gap-x-xxl-50 {
    column-gap: 50px !important;
  }
  .gap-x-xxl-55 {
    column-gap: 55px !important;
  }
  .gap-x-xxl-60 {
    column-gap: 60px !important;
  }
  .gap-x-xxl-65 {
    column-gap: 65px !important;
  }
  .gap-x-xxl-70 {
    column-gap: 70px !important;
  }
  .gap-x-xxl-75 {
    column-gap: 75px !important;
  }
  .gap-x-xxl-80 {
    column-gap: 80px !important;
  }
  .gap-x-xxl-85 {
    column-gap: 85px !important;
  }
  .gap-x-xxl-90 {
    column-gap: 90px !important;
  }
  .gap-x-xxl-95 {
    column-gap: 95px !important;
  }
  .gap-x-xxl-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .gap-y-xxl-auto {
    row-gap: auto !important;
  }
  .gap-y-xxl-0 {
    row-gap: 0px !important;
  }
  .gap-y-xxl-5 {
    row-gap: 5px !important;
  }
  .gap-y-xxl-10 {
    row-gap: 10px !important;
  }
  .gap-y-xxl-15 {
    row-gap: 15px !important;
  }
  .gap-y-xxl-20 {
    row-gap: 20px !important;
  }
  .gap-y-xxl-25 {
    row-gap: 25px !important;
  }
  .gap-y-xxl-30 {
    row-gap: 30px !important;
  }
  .gap-y-xxl-35 {
    row-gap: 35px !important;
  }
  .gap-y-xxl-40 {
    row-gap: 40px !important;
  }
  .gap-y-xxl-45 {
    row-gap: 45px !important;
  }
  .gap-y-xxl-50 {
    row-gap: 50px !important;
  }
  .gap-y-xxl-55 {
    row-gap: 55px !important;
  }
  .gap-y-xxl-60 {
    row-gap: 60px !important;
  }
  .gap-y-xxl-65 {
    row-gap: 65px !important;
  }
  .gap-y-xxl-70 {
    row-gap: 70px !important;
  }
  .gap-y-xxl-75 {
    row-gap: 75px !important;
  }
  .gap-y-xxl-80 {
    row-gap: 80px !important;
  }
  .gap-y-xxl-85 {
    row-gap: 85px !important;
  }
  .gap-y-xxl-90 {
    row-gap: 90px !important;
  }
  .gap-y-xxl-95 {
    row-gap: 95px !important;
  }
  .gap-y-xxl-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .gap-1280-auto {
    gap: auto !important;
  }
  .gap-1280-0 {
    gap: 0px !important;
  }
  .gap-1280-5 {
    gap: 5px !important;
  }
  .gap-1280-10 {
    gap: 10px !important;
  }
  .gap-1280-15 {
    gap: 15px !important;
  }
  .gap-1280-20 {
    gap: 20px !important;
  }
  .gap-1280-25 {
    gap: 25px !important;
  }
  .gap-1280-30 {
    gap: 30px !important;
  }
  .gap-1280-35 {
    gap: 35px !important;
  }
  .gap-1280-40 {
    gap: 40px !important;
  }
  .gap-1280-45 {
    gap: 45px !important;
  }
  .gap-1280-50 {
    gap: 50px !important;
  }
  .gap-1280-55 {
    gap: 55px !important;
  }
  .gap-1280-60 {
    gap: 60px !important;
  }
  .gap-1280-65 {
    gap: 65px !important;
  }
  .gap-1280-70 {
    gap: 70px !important;
  }
  .gap-1280-75 {
    gap: 75px !important;
  }
  .gap-1280-80 {
    gap: 80px !important;
  }
  .gap-1280-85 {
    gap: 85px !important;
  }
  .gap-1280-90 {
    gap: 90px !important;
  }
  .gap-1280-95 {
    gap: 95px !important;
  }
  .gap-1280-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .gap-x-1280-auto {
    column-gap: auto !important;
  }
  .gap-x-1280-0 {
    column-gap: 0px !important;
  }
  .gap-x-1280-5 {
    column-gap: 5px !important;
  }
  .gap-x-1280-10 {
    column-gap: 10px !important;
  }
  .gap-x-1280-15 {
    column-gap: 15px !important;
  }
  .gap-x-1280-20 {
    column-gap: 20px !important;
  }
  .gap-x-1280-25 {
    column-gap: 25px !important;
  }
  .gap-x-1280-30 {
    column-gap: 30px !important;
  }
  .gap-x-1280-35 {
    column-gap: 35px !important;
  }
  .gap-x-1280-40 {
    column-gap: 40px !important;
  }
  .gap-x-1280-45 {
    column-gap: 45px !important;
  }
  .gap-x-1280-50 {
    column-gap: 50px !important;
  }
  .gap-x-1280-55 {
    column-gap: 55px !important;
  }
  .gap-x-1280-60 {
    column-gap: 60px !important;
  }
  .gap-x-1280-65 {
    column-gap: 65px !important;
  }
  .gap-x-1280-70 {
    column-gap: 70px !important;
  }
  .gap-x-1280-75 {
    column-gap: 75px !important;
  }
  .gap-x-1280-80 {
    column-gap: 80px !important;
  }
  .gap-x-1280-85 {
    column-gap: 85px !important;
  }
  .gap-x-1280-90 {
    column-gap: 90px !important;
  }
  .gap-x-1280-95 {
    column-gap: 95px !important;
  }
  .gap-x-1280-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .gap-y-1280-auto {
    row-gap: auto !important;
  }
  .gap-y-1280-0 {
    row-gap: 0px !important;
  }
  .gap-y-1280-5 {
    row-gap: 5px !important;
  }
  .gap-y-1280-10 {
    row-gap: 10px !important;
  }
  .gap-y-1280-15 {
    row-gap: 15px !important;
  }
  .gap-y-1280-20 {
    row-gap: 20px !important;
  }
  .gap-y-1280-25 {
    row-gap: 25px !important;
  }
  .gap-y-1280-30 {
    row-gap: 30px !important;
  }
  .gap-y-1280-35 {
    row-gap: 35px !important;
  }
  .gap-y-1280-40 {
    row-gap: 40px !important;
  }
  .gap-y-1280-45 {
    row-gap: 45px !important;
  }
  .gap-y-1280-50 {
    row-gap: 50px !important;
  }
  .gap-y-1280-55 {
    row-gap: 55px !important;
  }
  .gap-y-1280-60 {
    row-gap: 60px !important;
  }
  .gap-y-1280-65 {
    row-gap: 65px !important;
  }
  .gap-y-1280-70 {
    row-gap: 70px !important;
  }
  .gap-y-1280-75 {
    row-gap: 75px !important;
  }
  .gap-y-1280-80 {
    row-gap: 80px !important;
  }
  .gap-y-1280-85 {
    row-gap: 85px !important;
  }
  .gap-y-1280-90 {
    row-gap: 90px !important;
  }
  .gap-y-1280-95 {
    row-gap: 95px !important;
  }
  .gap-y-1280-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .gap-xl-auto {
    gap: auto !important;
  }
  .gap-xl-0 {
    gap: 0px !important;
  }
  .gap-xl-5 {
    gap: 5px !important;
  }
  .gap-xl-10 {
    gap: 10px !important;
  }
  .gap-xl-15 {
    gap: 15px !important;
  }
  .gap-xl-20 {
    gap: 20px !important;
  }
  .gap-xl-25 {
    gap: 25px !important;
  }
  .gap-xl-30 {
    gap: 30px !important;
  }
  .gap-xl-35 {
    gap: 35px !important;
  }
  .gap-xl-40 {
    gap: 40px !important;
  }
  .gap-xl-45 {
    gap: 45px !important;
  }
  .gap-xl-50 {
    gap: 50px !important;
  }
  .gap-xl-55 {
    gap: 55px !important;
  }
  .gap-xl-60 {
    gap: 60px !important;
  }
  .gap-xl-65 {
    gap: 65px !important;
  }
  .gap-xl-70 {
    gap: 70px !important;
  }
  .gap-xl-75 {
    gap: 75px !important;
  }
  .gap-xl-80 {
    gap: 80px !important;
  }
  .gap-xl-85 {
    gap: 85px !important;
  }
  .gap-xl-90 {
    gap: 90px !important;
  }
  .gap-xl-95 {
    gap: 95px !important;
  }
  .gap-xl-100 {
    gap: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .gap-x-xl-auto {
    column-gap: auto !important;
  }
  .gap-x-xl-0 {
    column-gap: 0px !important;
  }
  .gap-x-xl-5 {
    column-gap: 5px !important;
  }
  .gap-x-xl-10 {
    column-gap: 10px !important;
  }
  .gap-x-xl-15 {
    column-gap: 15px !important;
  }
  .gap-x-xl-20 {
    column-gap: 20px !important;
  }
  .gap-x-xl-25 {
    column-gap: 25px !important;
  }
  .gap-x-xl-30 {
    column-gap: 30px !important;
  }
  .gap-x-xl-35 {
    column-gap: 35px !important;
  }
  .gap-x-xl-40 {
    column-gap: 40px !important;
  }
  .gap-x-xl-45 {
    column-gap: 45px !important;
  }
  .gap-x-xl-50 {
    column-gap: 50px !important;
  }
  .gap-x-xl-55 {
    column-gap: 55px !important;
  }
  .gap-x-xl-60 {
    column-gap: 60px !important;
  }
  .gap-x-xl-65 {
    column-gap: 65px !important;
  }
  .gap-x-xl-70 {
    column-gap: 70px !important;
  }
  .gap-x-xl-75 {
    column-gap: 75px !important;
  }
  .gap-x-xl-80 {
    column-gap: 80px !important;
  }
  .gap-x-xl-85 {
    column-gap: 85px !important;
  }
  .gap-x-xl-90 {
    column-gap: 90px !important;
  }
  .gap-x-xl-95 {
    column-gap: 95px !important;
  }
  .gap-x-xl-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .gap-y-xl-auto {
    row-gap: auto !important;
  }
  .gap-y-xl-0 {
    row-gap: 0px !important;
  }
  .gap-y-xl-5 {
    row-gap: 5px !important;
  }
  .gap-y-xl-10 {
    row-gap: 10px !important;
  }
  .gap-y-xl-15 {
    row-gap: 15px !important;
  }
  .gap-y-xl-20 {
    row-gap: 20px !important;
  }
  .gap-y-xl-25 {
    row-gap: 25px !important;
  }
  .gap-y-xl-30 {
    row-gap: 30px !important;
  }
  .gap-y-xl-35 {
    row-gap: 35px !important;
  }
  .gap-y-xl-40 {
    row-gap: 40px !important;
  }
  .gap-y-xl-45 {
    row-gap: 45px !important;
  }
  .gap-y-xl-50 {
    row-gap: 50px !important;
  }
  .gap-y-xl-55 {
    row-gap: 55px !important;
  }
  .gap-y-xl-60 {
    row-gap: 60px !important;
  }
  .gap-y-xl-65 {
    row-gap: 65px !important;
  }
  .gap-y-xl-70 {
    row-gap: 70px !important;
  }
  .gap-y-xl-75 {
    row-gap: 75px !important;
  }
  .gap-y-xl-80 {
    row-gap: 80px !important;
  }
  .gap-y-xl-85 {
    row-gap: 85px !important;
  }
  .gap-y-xl-90 {
    row-gap: 90px !important;
  }
  .gap-y-xl-95 {
    row-gap: 95px !important;
  }
  .gap-y-xl-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .gap-lg-auto {
    gap: auto !important;
  }
  .gap-lg-0 {
    gap: 0px !important;
  }
  .gap-lg-5 {
    gap: 5px !important;
  }
  .gap-lg-10 {
    gap: 10px !important;
  }
  .gap-lg-15 {
    gap: 15px !important;
  }
  .gap-lg-20 {
    gap: 20px !important;
  }
  .gap-lg-25 {
    gap: 25px !important;
  }
  .gap-lg-30 {
    gap: 30px !important;
  }
  .gap-lg-35 {
    gap: 35px !important;
  }
  .gap-lg-40 {
    gap: 40px !important;
  }
  .gap-lg-45 {
    gap: 45px !important;
  }
  .gap-lg-50 {
    gap: 50px !important;
  }
  .gap-lg-55 {
    gap: 55px !important;
  }
  .gap-lg-60 {
    gap: 60px !important;
  }
  .gap-lg-65 {
    gap: 65px !important;
  }
  .gap-lg-70 {
    gap: 70px !important;
  }
  .gap-lg-75 {
    gap: 75px !important;
  }
  .gap-lg-80 {
    gap: 80px !important;
  }
  .gap-lg-85 {
    gap: 85px !important;
  }
  .gap-lg-90 {
    gap: 90px !important;
  }
  .gap-lg-95 {
    gap: 95px !important;
  }
  .gap-lg-100 {
    gap: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .gap-x-lg-auto {
    column-gap: auto !important;
  }
  .gap-x-lg-0 {
    column-gap: 0px !important;
  }
  .gap-x-lg-5 {
    column-gap: 5px !important;
  }
  .gap-x-lg-10 {
    column-gap: 10px !important;
  }
  .gap-x-lg-15 {
    column-gap: 15px !important;
  }
  .gap-x-lg-20 {
    column-gap: 20px !important;
  }
  .gap-x-lg-25 {
    column-gap: 25px !important;
  }
  .gap-x-lg-30 {
    column-gap: 30px !important;
  }
  .gap-x-lg-35 {
    column-gap: 35px !important;
  }
  .gap-x-lg-40 {
    column-gap: 40px !important;
  }
  .gap-x-lg-45 {
    column-gap: 45px !important;
  }
  .gap-x-lg-50 {
    column-gap: 50px !important;
  }
  .gap-x-lg-55 {
    column-gap: 55px !important;
  }
  .gap-x-lg-60 {
    column-gap: 60px !important;
  }
  .gap-x-lg-65 {
    column-gap: 65px !important;
  }
  .gap-x-lg-70 {
    column-gap: 70px !important;
  }
  .gap-x-lg-75 {
    column-gap: 75px !important;
  }
  .gap-x-lg-80 {
    column-gap: 80px !important;
  }
  .gap-x-lg-85 {
    column-gap: 85px !important;
  }
  .gap-x-lg-90 {
    column-gap: 90px !important;
  }
  .gap-x-lg-95 {
    column-gap: 95px !important;
  }
  .gap-x-lg-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .gap-y-lg-auto {
    row-gap: auto !important;
  }
  .gap-y-lg-0 {
    row-gap: 0px !important;
  }
  .gap-y-lg-5 {
    row-gap: 5px !important;
  }
  .gap-y-lg-10 {
    row-gap: 10px !important;
  }
  .gap-y-lg-15 {
    row-gap: 15px !important;
  }
  .gap-y-lg-20 {
    row-gap: 20px !important;
  }
  .gap-y-lg-25 {
    row-gap: 25px !important;
  }
  .gap-y-lg-30 {
    row-gap: 30px !important;
  }
  .gap-y-lg-35 {
    row-gap: 35px !important;
  }
  .gap-y-lg-40 {
    row-gap: 40px !important;
  }
  .gap-y-lg-45 {
    row-gap: 45px !important;
  }
  .gap-y-lg-50 {
    row-gap: 50px !important;
  }
  .gap-y-lg-55 {
    row-gap: 55px !important;
  }
  .gap-y-lg-60 {
    row-gap: 60px !important;
  }
  .gap-y-lg-65 {
    row-gap: 65px !important;
  }
  .gap-y-lg-70 {
    row-gap: 70px !important;
  }
  .gap-y-lg-75 {
    row-gap: 75px !important;
  }
  .gap-y-lg-80 {
    row-gap: 80px !important;
  }
  .gap-y-lg-85 {
    row-gap: 85px !important;
  }
  .gap-y-lg-90 {
    row-gap: 90px !important;
  }
  .gap-y-lg-95 {
    row-gap: 95px !important;
  }
  .gap-y-lg-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .gap-md-auto {
    gap: auto !important;
  }
  .gap-md-0 {
    gap: 0px !important;
  }
  .gap-md-5 {
    gap: 5px !important;
  }
  .gap-md-10 {
    gap: 10px !important;
  }
  .gap-md-15 {
    gap: 15px !important;
  }
  .gap-md-20 {
    gap: 20px !important;
  }
  .gap-md-25 {
    gap: 25px !important;
  }
  .gap-md-30 {
    gap: 30px !important;
  }
  .gap-md-35 {
    gap: 35px !important;
  }
  .gap-md-40 {
    gap: 40px !important;
  }
  .gap-md-45 {
    gap: 45px !important;
  }
  .gap-md-50 {
    gap: 50px !important;
  }
  .gap-md-55 {
    gap: 55px !important;
  }
  .gap-md-60 {
    gap: 60px !important;
  }
  .gap-md-65 {
    gap: 65px !important;
  }
  .gap-md-70 {
    gap: 70px !important;
  }
  .gap-md-75 {
    gap: 75px !important;
  }
  .gap-md-80 {
    gap: 80px !important;
  }
  .gap-md-85 {
    gap: 85px !important;
  }
  .gap-md-90 {
    gap: 90px !important;
  }
  .gap-md-95 {
    gap: 95px !important;
  }
  .gap-md-100 {
    gap: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .gap-x-md-auto {
    column-gap: auto !important;
  }
  .gap-x-md-0 {
    column-gap: 0px !important;
  }
  .gap-x-md-5 {
    column-gap: 5px !important;
  }
  .gap-x-md-10 {
    column-gap: 10px !important;
  }
  .gap-x-md-15 {
    column-gap: 15px !important;
  }
  .gap-x-md-20 {
    column-gap: 20px !important;
  }
  .gap-x-md-25 {
    column-gap: 25px !important;
  }
  .gap-x-md-30 {
    column-gap: 30px !important;
  }
  .gap-x-md-35 {
    column-gap: 35px !important;
  }
  .gap-x-md-40 {
    column-gap: 40px !important;
  }
  .gap-x-md-45 {
    column-gap: 45px !important;
  }
  .gap-x-md-50 {
    column-gap: 50px !important;
  }
  .gap-x-md-55 {
    column-gap: 55px !important;
  }
  .gap-x-md-60 {
    column-gap: 60px !important;
  }
  .gap-x-md-65 {
    column-gap: 65px !important;
  }
  .gap-x-md-70 {
    column-gap: 70px !important;
  }
  .gap-x-md-75 {
    column-gap: 75px !important;
  }
  .gap-x-md-80 {
    column-gap: 80px !important;
  }
  .gap-x-md-85 {
    column-gap: 85px !important;
  }
  .gap-x-md-90 {
    column-gap: 90px !important;
  }
  .gap-x-md-95 {
    column-gap: 95px !important;
  }
  .gap-x-md-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .gap-y-md-auto {
    row-gap: auto !important;
  }
  .gap-y-md-0 {
    row-gap: 0px !important;
  }
  .gap-y-md-5 {
    row-gap: 5px !important;
  }
  .gap-y-md-10 {
    row-gap: 10px !important;
  }
  .gap-y-md-15 {
    row-gap: 15px !important;
  }
  .gap-y-md-20 {
    row-gap: 20px !important;
  }
  .gap-y-md-25 {
    row-gap: 25px !important;
  }
  .gap-y-md-30 {
    row-gap: 30px !important;
  }
  .gap-y-md-35 {
    row-gap: 35px !important;
  }
  .gap-y-md-40 {
    row-gap: 40px !important;
  }
  .gap-y-md-45 {
    row-gap: 45px !important;
  }
  .gap-y-md-50 {
    row-gap: 50px !important;
  }
  .gap-y-md-55 {
    row-gap: 55px !important;
  }
  .gap-y-md-60 {
    row-gap: 60px !important;
  }
  .gap-y-md-65 {
    row-gap: 65px !important;
  }
  .gap-y-md-70 {
    row-gap: 70px !important;
  }
  .gap-y-md-75 {
    row-gap: 75px !important;
  }
  .gap-y-md-80 {
    row-gap: 80px !important;
  }
  .gap-y-md-85 {
    row-gap: 85px !important;
  }
  .gap-y-md-90 {
    row-gap: 90px !important;
  }
  .gap-y-md-95 {
    row-gap: 95px !important;
  }
  .gap-y-md-100 {
    row-gap: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .gap-sm-auto {
    gap: auto !important;
  }
  .gap-sm-0 {
    gap: 0px !important;
  }
  .gap-sm-5 {
    gap: 5px !important;
  }
  .gap-sm-10 {
    gap: 10px !important;
  }
  .gap-sm-15 {
    gap: 15px !important;
  }
  .gap-sm-20 {
    gap: 20px !important;
  }
  .gap-sm-25 {
    gap: 25px !important;
  }
  .gap-sm-30 {
    gap: 30px !important;
  }
  .gap-sm-35 {
    gap: 35px !important;
  }
  .gap-sm-40 {
    gap: 40px !important;
  }
  .gap-sm-45 {
    gap: 45px !important;
  }
  .gap-sm-50 {
    gap: 50px !important;
  }
  .gap-sm-55 {
    gap: 55px !important;
  }
  .gap-sm-60 {
    gap: 60px !important;
  }
  .gap-sm-65 {
    gap: 65px !important;
  }
  .gap-sm-70 {
    gap: 70px !important;
  }
  .gap-sm-75 {
    gap: 75px !important;
  }
  .gap-sm-80 {
    gap: 80px !important;
  }
  .gap-sm-85 {
    gap: 85px !important;
  }
  .gap-sm-90 {
    gap: 90px !important;
  }
  .gap-sm-95 {
    gap: 95px !important;
  }
  .gap-sm-100 {
    gap: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .gap-x-sm-auto {
    column-gap: auto !important;
  }
  .gap-x-sm-0 {
    column-gap: 0px !important;
  }
  .gap-x-sm-5 {
    column-gap: 5px !important;
  }
  .gap-x-sm-10 {
    column-gap: 10px !important;
  }
  .gap-x-sm-15 {
    column-gap: 15px !important;
  }
  .gap-x-sm-20 {
    column-gap: 20px !important;
  }
  .gap-x-sm-25 {
    column-gap: 25px !important;
  }
  .gap-x-sm-30 {
    column-gap: 30px !important;
  }
  .gap-x-sm-35 {
    column-gap: 35px !important;
  }
  .gap-x-sm-40 {
    column-gap: 40px !important;
  }
  .gap-x-sm-45 {
    column-gap: 45px !important;
  }
  .gap-x-sm-50 {
    column-gap: 50px !important;
  }
  .gap-x-sm-55 {
    column-gap: 55px !important;
  }
  .gap-x-sm-60 {
    column-gap: 60px !important;
  }
  .gap-x-sm-65 {
    column-gap: 65px !important;
  }
  .gap-x-sm-70 {
    column-gap: 70px !important;
  }
  .gap-x-sm-75 {
    column-gap: 75px !important;
  }
  .gap-x-sm-80 {
    column-gap: 80px !important;
  }
  .gap-x-sm-85 {
    column-gap: 85px !important;
  }
  .gap-x-sm-90 {
    column-gap: 90px !important;
  }
  .gap-x-sm-95 {
    column-gap: 95px !important;
  }
  .gap-x-sm-100 {
    column-gap: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .gap-y-sm-auto {
    row-gap: auto !important;
  }
  .gap-y-sm-0 {
    row-gap: 0px !important;
  }
  .gap-y-sm-5 {
    row-gap: 5px !important;
  }
  .gap-y-sm-10 {
    row-gap: 10px !important;
  }
  .gap-y-sm-15 {
    row-gap: 15px !important;
  }
  .gap-y-sm-20 {
    row-gap: 20px !important;
  }
  .gap-y-sm-25 {
    row-gap: 25px !important;
  }
  .gap-y-sm-30 {
    row-gap: 30px !important;
  }
  .gap-y-sm-35 {
    row-gap: 35px !important;
  }
  .gap-y-sm-40 {
    row-gap: 40px !important;
  }
  .gap-y-sm-45 {
    row-gap: 45px !important;
  }
  .gap-y-sm-50 {
    row-gap: 50px !important;
  }
  .gap-y-sm-55 {
    row-gap: 55px !important;
  }
  .gap-y-sm-60 {
    row-gap: 60px !important;
  }
  .gap-y-sm-65 {
    row-gap: 65px !important;
  }
  .gap-y-sm-70 {
    row-gap: 70px !important;
  }
  .gap-y-sm-75 {
    row-gap: 75px !important;
  }
  .gap-y-sm-80 {
    row-gap: 80px !important;
  }
  .gap-y-sm-85 {
    row-gap: 85px !important;
  }
  .gap-y-sm-90 {
    row-gap: 90px !important;
  }
  .gap-y-sm-95 {
    row-gap: 95px !important;
  }
  .gap-y-sm-100 {
    row-gap: 100px !important;
  }
}

.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-1 {
  flex: 1;
}
.flex-fill {
  flex: 1 0 0%;
}
.flex-fit {
  flex: 1 1 0%;
}
@media (max-width: 1599.98px) {
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-1 {
    flex: 1;
  }
  .flex-xxxl-fill {
    flex: 1 0 0%;
  }
  .flex-xxxl-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 1439.98px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-1 {
    flex: 1;
  }
  .flex-xxl-fill {
    flex: 1 0 0%;
  }
  .flex-xxl-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 1279.98px) {
  .flex-1280-row {
    flex-direction: row !important;
  }
  .flex-1280-column {
    flex-direction: column !important;
  }
  .flex-1280-wrap {
    flex-wrap: wrap !important;
  }
  .flex-1280-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-1280-1 {
    flex: 1;
  }
  .flex-1280-fill {
    flex: 1 0 0%;
  }
  .flex-1280-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 1199.98px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-1 {
    flex: 1;
  }
  .flex-xl-fill {
    flex: 1 0 0%;
  }
  .flex-xl-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 999.98px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-1 {
    flex: 1;
  }
  .flex-lg-fill {
    flex: 1 0 0%;
  }
  .flex-lg-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 719.98px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-1 {
    flex: 1;
  }
  .flex-md-fill {
    flex: 1 0 0%;
  }
  .flex-md-fit {
    flex: 1 1 0%;
  }
}
@media (max-width: 575.98px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-1 {
    flex: 1;
  }
  .flex-sm-fill {
    flex: 1 0 0%;
  }
  .flex-sm-fit {
    flex: 1 1 0%;
  }
}

.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
@media (max-width: 1599.98px) {
  .align-xxxl-self-start {
    align-self: flex-start !important;
  }
  .align-xxxl-self-end {
    align-self: flex-end !important;
  }
  .align-xxxl-self-center {
    align-self: center !important;
  }
  .align-xxxl-self-baseline {
    align-self: baseline !important;
  }
  .align-xxxl-self-stretch {
    align-self: stretch !important;
  }
  .align-xxxl-items-start {
    align-items: flex-start !important;
  }
  .align-xxxl-items-end {
    align-items: flex-end !important;
  }
  .align-xxxl-items-center {
    align-items: center !important;
  }
  .align-xxxl-items-baseline {
    align-items: baseline !important;
  }
  .align-xxxl-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 1439.98px) {
  .align-xxl-self-start {
    align-self: flex-start !important;
  }
  .align-xxl-self-end {
    align-self: flex-end !important;
  }
  .align-xxl-self-center {
    align-self: center !important;
  }
  .align-xxl-self-baseline {
    align-self: baseline !important;
  }
  .align-xxl-self-stretch {
    align-self: stretch !important;
  }
  .align-xxl-items-start {
    align-items: flex-start !important;
  }
  .align-xxl-items-end {
    align-items: flex-end !important;
  }
  .align-xxl-items-center {
    align-items: center !important;
  }
  .align-xxl-items-baseline {
    align-items: baseline !important;
  }
  .align-xxl-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 1279.98px) {
  .align-1280-self-start {
    align-self: flex-start !important;
  }
  .align-1280-self-end {
    align-self: flex-end !important;
  }
  .align-1280-self-center {
    align-self: center !important;
  }
  .align-1280-self-baseline {
    align-self: baseline !important;
  }
  .align-1280-self-stretch {
    align-self: stretch !important;
  }
  .align-1280-items-start {
    align-items: flex-start !important;
  }
  .align-1280-items-end {
    align-items: flex-end !important;
  }
  .align-1280-items-center {
    align-items: center !important;
  }
  .align-1280-items-baseline {
    align-items: baseline !important;
  }
  .align-1280-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 1199.98px) {
  .align-xl-self-start {
    align-self: flex-start !important;
  }
  .align-xl-self-end {
    align-self: flex-end !important;
  }
  .align-xl-self-center {
    align-self: center !important;
  }
  .align-xl-self-baseline {
    align-self: baseline !important;
  }
  .align-xl-self-stretch {
    align-self: stretch !important;
  }
  .align-xl-items-start {
    align-items: flex-start !important;
  }
  .align-xl-items-end {
    align-items: flex-end !important;
  }
  .align-xl-items-center {
    align-items: center !important;
  }
  .align-xl-items-baseline {
    align-items: baseline !important;
  }
  .align-xl-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 999.98px) {
  .align-lg-self-start {
    align-self: flex-start !important;
  }
  .align-lg-self-end {
    align-self: flex-end !important;
  }
  .align-lg-self-center {
    align-self: center !important;
  }
  .align-lg-self-baseline {
    align-self: baseline !important;
  }
  .align-lg-self-stretch {
    align-self: stretch !important;
  }
  .align-lg-items-start {
    align-items: flex-start !important;
  }
  .align-lg-items-end {
    align-items: flex-end !important;
  }
  .align-lg-items-center {
    align-items: center !important;
  }
  .align-lg-items-baseline {
    align-items: baseline !important;
  }
  .align-lg-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 719.98px) {
  .align-md-self-start {
    align-self: flex-start !important;
  }
  .align-md-self-end {
    align-self: flex-end !important;
  }
  .align-md-self-center {
    align-self: center !important;
  }
  .align-md-self-baseline {
    align-self: baseline !important;
  }
  .align-md-self-stretch {
    align-self: stretch !important;
  }
  .align-md-items-start {
    align-items: flex-start !important;
  }
  .align-md-items-end {
    align-items: flex-end !important;
  }
  .align-md-items-center {
    align-items: center !important;
  }
  .align-md-items-baseline {
    align-items: baseline !important;
  }
  .align-md-items-stretch {
    align-items: stretch !important;
  }
}
@media (max-width: 575.98px) {
  .align-sm-self-start {
    align-self: flex-start !important;
  }
  .align-sm-self-end {
    align-self: flex-end !important;
  }
  .align-sm-self-center {
    align-self: center !important;
  }
  .align-sm-self-baseline {
    align-self: baseline !important;
  }
  .align-sm-self-stretch {
    align-self: stretch !important;
  }
  .align-sm-items-start {
    align-items: flex-start !important;
  }
  .align-sm-items-end {
    align-items: flex-end !important;
  }
  .align-sm-items-center {
    align-items: center !important;
  }
  .align-sm-items-baseline {
    align-items: baseline !important;
  }
  .align-sm-items-stretch {
    align-items: stretch !important;
  }
}

.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.justify-content-stretch {
  justify-content: stretch !important;
}
@media (max-width: 1599.98px) {
  .justify-xxxl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xxxl-content-center {
    justify-content: center !important;
  }
  .justify-xxxl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xxxl-content-around {
    justify-content: space-around !important;
  }
  .justify-xxxl-content-between {
    justify-content: space-between !important;
  }
  .justify-xxxl-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-xxxl-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 1439.98px) {
  .justify-xxl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xxl-content-center {
    justify-content: center !important;
  }
  .justify-xxl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xxl-content-around {
    justify-content: space-around !important;
  }
  .justify-xxl-content-between {
    justify-content: space-between !important;
  }
  .justify-xxl-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-xxl-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 1279.98px) {
  .justify-1280-content-start {
    justify-content: flex-start !important;
  }
  .justify-1280-content-center {
    justify-content: center !important;
  }
  .justify-1280-content-end {
    justify-content: flex-end !important;
  }
  .justify-1280-content-around {
    justify-content: space-around !important;
  }
  .justify-1280-content-between {
    justify-content: space-between !important;
  }
  .justify-1280-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-1280-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 1199.98px) {
  .justify-xl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xl-content-center {
    justify-content: center !important;
  }
  .justify-xl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xl-content-around {
    justify-content: space-around !important;
  }
  .justify-xl-content-between {
    justify-content: space-between !important;
  }
  .justify-xl-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-xl-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 999.98px) {
  .justify-lg-content-start {
    justify-content: flex-start !important;
  }
  .justify-lg-content-center {
    justify-content: center !important;
  }
  .justify-lg-content-end {
    justify-content: flex-end !important;
  }
  .justify-lg-content-around {
    justify-content: space-around !important;
  }
  .justify-lg-content-between {
    justify-content: space-between !important;
  }
  .justify-lg-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-lg-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 719.98px) {
  .justify-md-content-start {
    justify-content: flex-start !important;
  }
  .justify-md-content-center {
    justify-content: center !important;
  }
  .justify-md-content-end {
    justify-content: flex-end !important;
  }
  .justify-md-content-around {
    justify-content: space-around !important;
  }
  .justify-md-content-between {
    justify-content: space-between !important;
  }
  .justify-md-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-md-content-stretch {
    justify-content: stretch !important;
  }
}
@media (max-width: 575.98px) {
  .justify-sm-content-start {
    justify-content: flex-start !important;
  }
  .justify-sm-content-center {
    justify-content: center !important;
  }
  .justify-sm-content-end {
    justify-content: flex-end !important;
  }
  .justify-sm-content-around {
    justify-content: space-around !important;
  }
  .justify-sm-content-between {
    justify-content: space-between !important;
  }
  .justify-sm-content-evenly {
    justify-content: space-evenly !important;
  }
  .justify-sm-content-stretch {
    justify-content: stretch !important;
  }
}

.m-auto {
  margin: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.m-0 {
  margin: 0px !important;
}
.mt-0 {
  margin-top: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.m-5 {
  margin: 5px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.m-10 {
  margin: 10px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.m-15 {
  margin: 15px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.m-20 {
  margin: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.m-25 {
  margin: 25px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.m-30 {
  margin: 30px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.m-35 {
  margin: 35px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}
.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}
.m-40 {
  margin: 40px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.m-45 {
  margin: 45px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mx-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}
.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}
.m-50 {
  margin: 50px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.m-55 {
  margin: 55px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.ml-55 {
  margin-left: 55px !important;
}
.mr-55 {
  margin-right: 55px !important;
}
.mx-55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}
.my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}
.m-60 {
  margin: 60px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.m-65 {
  margin: 65px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mx-65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}
.my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}
.m-70 {
  margin: 70px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.ml-70 {
  margin-left: 70px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mx-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}
.my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}
.m-75 {
  margin: 75px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mx-75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}
.my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}
.m-80 {
  margin: 80px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.mr-80 {
  margin-right: 80px !important;
}
.mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}
.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.m-85 {
  margin: 85px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.ml-85 {
  margin-left: 85px !important;
}
.mr-85 {
  margin-right: 85px !important;
}
.mx-85 {
  margin-left: 85px !important;
  margin-right: 85px !important;
}
.my-85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important;
}
.m-90 {
  margin: 90px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.mr-90 {
  margin-right: 90px !important;
}
.mx-90 {
  margin-left: 90px !important;
  margin-right: 90px !important;
}
.my-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}
.m-95 {
  margin: 95px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.ml-95 {
  margin-left: 95px !important;
}
.mr-95 {
  margin-right: 95px !important;
}
.mx-95 {
  margin-left: 95px !important;
  margin-right: 95px !important;
}
.my-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}
.m-100 {
  margin: 100px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.ml-100 {
  margin-left: 100px !important;
}
.mr-100 {
  margin-right: 100px !important;
}
.mx-100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}
.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
@media (max-width: 1599.98px) {
  .m-xxxl-auto {
    margin: auto !important;
  }
  .m-xxxl-0 {
    margin: 0px !important;
  }
  .m-xxxl-5 {
    margin: 5px !important;
  }
  .m-xxxl-10 {
    margin: 10px !important;
  }
  .m-xxxl-15 {
    margin: 15px !important;
  }
  .m-xxxl-20 {
    margin: 20px !important;
  }
  .m-xxxl-25 {
    margin: 25px !important;
  }
  .m-xxxl-30 {
    margin: 30px !important;
  }
  .m-xxxl-35 {
    margin: 35px !important;
  }
  .m-xxxl-40 {
    margin: 40px !important;
  }
  .m-xxxl-45 {
    margin: 45px !important;
  }
  .m-xxxl-50 {
    margin: 50px !important;
  }
  .m-xxxl-55 {
    margin: 55px !important;
  }
  .m-xxxl-60 {
    margin: 60px !important;
  }
  .m-xxxl-65 {
    margin: 65px !important;
  }
  .m-xxxl-70 {
    margin: 70px !important;
  }
  .m-xxxl-75 {
    margin: 75px !important;
  }
  .m-xxxl-80 {
    margin: 80px !important;
  }
  .m-xxxl-85 {
    margin: 85px !important;
  }
  .m-xxxl-90 {
    margin: 90px !important;
  }
  .m-xxxl-95 {
    margin: 95px !important;
  }
  .m-xxxl-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0px !important;
  }
  .mt-xxxl-5 {
    margin-top: 5px !important;
  }
  .mt-xxxl-10 {
    margin-top: 10px !important;
  }
  .mt-xxxl-15 {
    margin-top: 15px !important;
  }
  .mt-xxxl-20 {
    margin-top: 20px !important;
  }
  .mt-xxxl-25 {
    margin-top: 25px !important;
  }
  .mt-xxxl-30 {
    margin-top: 30px !important;
  }
  .mt-xxxl-35 {
    margin-top: 35px !important;
  }
  .mt-xxxl-40 {
    margin-top: 40px !important;
  }
  .mt-xxxl-45 {
    margin-top: 45px !important;
  }
  .mt-xxxl-50 {
    margin-top: 50px !important;
  }
  .mt-xxxl-55 {
    margin-top: 55px !important;
  }
  .mt-xxxl-60 {
    margin-top: 60px !important;
  }
  .mt-xxxl-65 {
    margin-top: 65px !important;
  }
  .mt-xxxl-70 {
    margin-top: 70px !important;
  }
  .mt-xxxl-75 {
    margin-top: 75px !important;
  }
  .mt-xxxl-80 {
    margin-top: 80px !important;
  }
  .mt-xxxl-85 {
    margin-top: 85px !important;
  }
  .mt-xxxl-90 {
    margin-top: 90px !important;
  }
  .mt-xxxl-95 {
    margin-top: 95px !important;
  }
  .mt-xxxl-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0px !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxxl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xxxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxxl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xxxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxxl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xxxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxxl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xxxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxxl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xxxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxxl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xxxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxxl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xxxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxxl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xxxl-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .ml-xxxl-auto {
    margin-left: auto !important;
  }
  .ml-xxxl-0 {
    margin-left: 0px !important;
  }
  .ml-xxxl-5 {
    margin-left: 5px !important;
  }
  .ml-xxxl-10 {
    margin-left: 10px !important;
  }
  .ml-xxxl-15 {
    margin-left: 15px !important;
  }
  .ml-xxxl-20 {
    margin-left: 20px !important;
  }
  .ml-xxxl-25 {
    margin-left: 25px !important;
  }
  .ml-xxxl-30 {
    margin-left: 30px !important;
  }
  .ml-xxxl-35 {
    margin-left: 35px !important;
  }
  .ml-xxxl-40 {
    margin-left: 40px !important;
  }
  .ml-xxxl-45 {
    margin-left: 45px !important;
  }
  .ml-xxxl-50 {
    margin-left: 50px !important;
  }
  .ml-xxxl-55 {
    margin-left: 55px !important;
  }
  .ml-xxxl-60 {
    margin-left: 60px !important;
  }
  .ml-xxxl-65 {
    margin-left: 65px !important;
  }
  .ml-xxxl-70 {
    margin-left: 70px !important;
  }
  .ml-xxxl-75 {
    margin-left: 75px !important;
  }
  .ml-xxxl-80 {
    margin-left: 80px !important;
  }
  .ml-xxxl-85 {
    margin-left: 85px !important;
  }
  .ml-xxxl-90 {
    margin-left: 90px !important;
  }
  .ml-xxxl-95 {
    margin-left: 95px !important;
  }
  .ml-xxxl-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mr-xxxl-auto {
    margin-right: auto !important;
  }
  .mr-xxxl-0 {
    margin-right: 0px !important;
  }
  .mr-xxxl-5 {
    margin-right: 5px !important;
  }
  .mr-xxxl-10 {
    margin-right: 10px !important;
  }
  .mr-xxxl-15 {
    margin-right: 15px !important;
  }
  .mr-xxxl-20 {
    margin-right: 20px !important;
  }
  .mr-xxxl-25 {
    margin-right: 25px !important;
  }
  .mr-xxxl-30 {
    margin-right: 30px !important;
  }
  .mr-xxxl-35 {
    margin-right: 35px !important;
  }
  .mr-xxxl-40 {
    margin-right: 40px !important;
  }
  .mr-xxxl-45 {
    margin-right: 45px !important;
  }
  .mr-xxxl-50 {
    margin-right: 50px !important;
  }
  .mr-xxxl-55 {
    margin-right: 55px !important;
  }
  .mr-xxxl-60 {
    margin-right: 60px !important;
  }
  .mr-xxxl-65 {
    margin-right: 65px !important;
  }
  .mr-xxxl-70 {
    margin-right: 70px !important;
  }
  .mr-xxxl-75 {
    margin-right: 75px !important;
  }
  .mr-xxxl-80 {
    margin-right: 80px !important;
  }
  .mr-xxxl-85 {
    margin-right: 85px !important;
  }
  .mr-xxxl-90 {
    margin-right: 90px !important;
  }
  .mr-xxxl-95 {
    margin-right: 95px !important;
  }
  .mr-xxxl-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .mx-xxxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xxxl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-xxxl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-xxxl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-xxxl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-xxxl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-xxxl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-xxxl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-xxxl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-xxxl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-xxxl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-xxxl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-xxxl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-xxxl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-xxxl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-xxxl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-xxxl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-xxxl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-xxxl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-xxxl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-xxxl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-xxxl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-xxxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-xxxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-xxxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-xxxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-xxxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-xxxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-xxxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-xxxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-xxxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-xxxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-xxxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-xxxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-xxxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-xxxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-xxxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-xxxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-xxxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-xxxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-xxxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-xxxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .m-xxl-auto {
    margin: auto !important;
  }
  .m-xxl-0 {
    margin: 0px !important;
  }
  .m-xxl-5 {
    margin: 5px !important;
  }
  .m-xxl-10 {
    margin: 10px !important;
  }
  .m-xxl-15 {
    margin: 15px !important;
  }
  .m-xxl-20 {
    margin: 20px !important;
  }
  .m-xxl-25 {
    margin: 25px !important;
  }
  .m-xxl-30 {
    margin: 30px !important;
  }
  .m-xxl-35 {
    margin: 35px !important;
  }
  .m-xxl-40 {
    margin: 40px !important;
  }
  .m-xxl-45 {
    margin: 45px !important;
  }
  .m-xxl-50 {
    margin: 50px !important;
  }
  .m-xxl-55 {
    margin: 55px !important;
  }
  .m-xxl-60 {
    margin: 60px !important;
  }
  .m-xxl-65 {
    margin: 65px !important;
  }
  .m-xxl-70 {
    margin: 70px !important;
  }
  .m-xxl-75 {
    margin: 75px !important;
  }
  .m-xxl-80 {
    margin: 80px !important;
  }
  .m-xxl-85 {
    margin: 85px !important;
  }
  .m-xxl-90 {
    margin: 90px !important;
  }
  .m-xxl-95 {
    margin: 95px !important;
  }
  .m-xxl-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0px !important;
  }
  .mt-xxl-5 {
    margin-top: 5px !important;
  }
  .mt-xxl-10 {
    margin-top: 10px !important;
  }
  .mt-xxl-15 {
    margin-top: 15px !important;
  }
  .mt-xxl-20 {
    margin-top: 20px !important;
  }
  .mt-xxl-25 {
    margin-top: 25px !important;
  }
  .mt-xxl-30 {
    margin-top: 30px !important;
  }
  .mt-xxl-35 {
    margin-top: 35px !important;
  }
  .mt-xxl-40 {
    margin-top: 40px !important;
  }
  .mt-xxl-45 {
    margin-top: 45px !important;
  }
  .mt-xxl-50 {
    margin-top: 50px !important;
  }
  .mt-xxl-55 {
    margin-top: 55px !important;
  }
  .mt-xxl-60 {
    margin-top: 60px !important;
  }
  .mt-xxl-65 {
    margin-top: 65px !important;
  }
  .mt-xxl-70 {
    margin-top: 70px !important;
  }
  .mt-xxl-75 {
    margin-top: 75px !important;
  }
  .mt-xxl-80 {
    margin-top: 80px !important;
  }
  .mt-xxl-85 {
    margin-top: 85px !important;
  }
  .mt-xxl-90 {
    margin-top: 90px !important;
  }
  .mt-xxl-95 {
    margin-top: 95px !important;
  }
  .mt-xxl-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0px !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0px !important;
  }
  .ml-xxl-5 {
    margin-left: 5px !important;
  }
  .ml-xxl-10 {
    margin-left: 10px !important;
  }
  .ml-xxl-15 {
    margin-left: 15px !important;
  }
  .ml-xxl-20 {
    margin-left: 20px !important;
  }
  .ml-xxl-25 {
    margin-left: 25px !important;
  }
  .ml-xxl-30 {
    margin-left: 30px !important;
  }
  .ml-xxl-35 {
    margin-left: 35px !important;
  }
  .ml-xxl-40 {
    margin-left: 40px !important;
  }
  .ml-xxl-45 {
    margin-left: 45px !important;
  }
  .ml-xxl-50 {
    margin-left: 50px !important;
  }
  .ml-xxl-55 {
    margin-left: 55px !important;
  }
  .ml-xxl-60 {
    margin-left: 60px !important;
  }
  .ml-xxl-65 {
    margin-left: 65px !important;
  }
  .ml-xxl-70 {
    margin-left: 70px !important;
  }
  .ml-xxl-75 {
    margin-left: 75px !important;
  }
  .ml-xxl-80 {
    margin-left: 80px !important;
  }
  .ml-xxl-85 {
    margin-left: 85px !important;
  }
  .ml-xxl-90 {
    margin-left: 90px !important;
  }
  .ml-xxl-95 {
    margin-left: 95px !important;
  }
  .ml-xxl-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0px !important;
  }
  .mr-xxl-5 {
    margin-right: 5px !important;
  }
  .mr-xxl-10 {
    margin-right: 10px !important;
  }
  .mr-xxl-15 {
    margin-right: 15px !important;
  }
  .mr-xxl-20 {
    margin-right: 20px !important;
  }
  .mr-xxl-25 {
    margin-right: 25px !important;
  }
  .mr-xxl-30 {
    margin-right: 30px !important;
  }
  .mr-xxl-35 {
    margin-right: 35px !important;
  }
  .mr-xxl-40 {
    margin-right: 40px !important;
  }
  .mr-xxl-45 {
    margin-right: 45px !important;
  }
  .mr-xxl-50 {
    margin-right: 50px !important;
  }
  .mr-xxl-55 {
    margin-right: 55px !important;
  }
  .mr-xxl-60 {
    margin-right: 60px !important;
  }
  .mr-xxl-65 {
    margin-right: 65px !important;
  }
  .mr-xxl-70 {
    margin-right: 70px !important;
  }
  .mr-xxl-75 {
    margin-right: 75px !important;
  }
  .mr-xxl-80 {
    margin-right: 80px !important;
  }
  .mr-xxl-85 {
    margin-right: 85px !important;
  }
  .mr-xxl-90 {
    margin-right: 90px !important;
  }
  .mr-xxl-95 {
    margin-right: 95px !important;
  }
  .mr-xxl-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xxl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-xxl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-xxl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-xxl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-xxl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-xxl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-xxl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-xxl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-xxl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-xxl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-xxl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-xxl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-xxl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-xxl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-xxl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-xxl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-xxl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-xxl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-xxl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-xxl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-xxl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-xxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-xxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-xxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-xxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-xxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-xxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-xxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-xxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-xxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-xxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-xxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-xxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-xxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-xxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-xxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-xxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-xxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-xxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-xxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-xxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .m-1280-auto {
    margin: auto !important;
  }
  .m-1280-0 {
    margin: 0px !important;
  }
  .m-1280-5 {
    margin: 5px !important;
  }
  .m-1280-10 {
    margin: 10px !important;
  }
  .m-1280-15 {
    margin: 15px !important;
  }
  .m-1280-20 {
    margin: 20px !important;
  }
  .m-1280-25 {
    margin: 25px !important;
  }
  .m-1280-30 {
    margin: 30px !important;
  }
  .m-1280-35 {
    margin: 35px !important;
  }
  .m-1280-40 {
    margin: 40px !important;
  }
  .m-1280-45 {
    margin: 45px !important;
  }
  .m-1280-50 {
    margin: 50px !important;
  }
  .m-1280-55 {
    margin: 55px !important;
  }
  .m-1280-60 {
    margin: 60px !important;
  }
  .m-1280-65 {
    margin: 65px !important;
  }
  .m-1280-70 {
    margin: 70px !important;
  }
  .m-1280-75 {
    margin: 75px !important;
  }
  .m-1280-80 {
    margin: 80px !important;
  }
  .m-1280-85 {
    margin: 85px !important;
  }
  .m-1280-90 {
    margin: 90px !important;
  }
  .m-1280-95 {
    margin: 95px !important;
  }
  .m-1280-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .mt-1280-auto {
    margin-top: auto !important;
  }
  .mt-1280-0 {
    margin-top: 0px !important;
  }
  .mt-1280-5 {
    margin-top: 5px !important;
  }
  .mt-1280-10 {
    margin-top: 10px !important;
  }
  .mt-1280-15 {
    margin-top: 15px !important;
  }
  .mt-1280-20 {
    margin-top: 20px !important;
  }
  .mt-1280-25 {
    margin-top: 25px !important;
  }
  .mt-1280-30 {
    margin-top: 30px !important;
  }
  .mt-1280-35 {
    margin-top: 35px !important;
  }
  .mt-1280-40 {
    margin-top: 40px !important;
  }
  .mt-1280-45 {
    margin-top: 45px !important;
  }
  .mt-1280-50 {
    margin-top: 50px !important;
  }
  .mt-1280-55 {
    margin-top: 55px !important;
  }
  .mt-1280-60 {
    margin-top: 60px !important;
  }
  .mt-1280-65 {
    margin-top: 65px !important;
  }
  .mt-1280-70 {
    margin-top: 70px !important;
  }
  .mt-1280-75 {
    margin-top: 75px !important;
  }
  .mt-1280-80 {
    margin-top: 80px !important;
  }
  .mt-1280-85 {
    margin-top: 85px !important;
  }
  .mt-1280-90 {
    margin-top: 90px !important;
  }
  .mt-1280-95 {
    margin-top: 95px !important;
  }
  .mt-1280-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .mb-1280-auto {
    margin-bottom: auto !important;
  }
  .mb-1280-0 {
    margin-bottom: 0px !important;
  }
  .mb-1280-5 {
    margin-bottom: 5px !important;
  }
  .mb-1280-10 {
    margin-bottom: 10px !important;
  }
  .mb-1280-15 {
    margin-bottom: 15px !important;
  }
  .mb-1280-20 {
    margin-bottom: 20px !important;
  }
  .mb-1280-25 {
    margin-bottom: 25px !important;
  }
  .mb-1280-30 {
    margin-bottom: 30px !important;
  }
  .mb-1280-35 {
    margin-bottom: 35px !important;
  }
  .mb-1280-40 {
    margin-bottom: 40px !important;
  }
  .mb-1280-45 {
    margin-bottom: 45px !important;
  }
  .mb-1280-50 {
    margin-bottom: 50px !important;
  }
  .mb-1280-55 {
    margin-bottom: 55px !important;
  }
  .mb-1280-60 {
    margin-bottom: 60px !important;
  }
  .mb-1280-65 {
    margin-bottom: 65px !important;
  }
  .mb-1280-70 {
    margin-bottom: 70px !important;
  }
  .mb-1280-75 {
    margin-bottom: 75px !important;
  }
  .mb-1280-80 {
    margin-bottom: 80px !important;
  }
  .mb-1280-85 {
    margin-bottom: 85px !important;
  }
  .mb-1280-90 {
    margin-bottom: 90px !important;
  }
  .mb-1280-95 {
    margin-bottom: 95px !important;
  }
  .mb-1280-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .ml-1280-auto {
    margin-left: auto !important;
  }
  .ml-1280-0 {
    margin-left: 0px !important;
  }
  .ml-1280-5 {
    margin-left: 5px !important;
  }
  .ml-1280-10 {
    margin-left: 10px !important;
  }
  .ml-1280-15 {
    margin-left: 15px !important;
  }
  .ml-1280-20 {
    margin-left: 20px !important;
  }
  .ml-1280-25 {
    margin-left: 25px !important;
  }
  .ml-1280-30 {
    margin-left: 30px !important;
  }
  .ml-1280-35 {
    margin-left: 35px !important;
  }
  .ml-1280-40 {
    margin-left: 40px !important;
  }
  .ml-1280-45 {
    margin-left: 45px !important;
  }
  .ml-1280-50 {
    margin-left: 50px !important;
  }
  .ml-1280-55 {
    margin-left: 55px !important;
  }
  .ml-1280-60 {
    margin-left: 60px !important;
  }
  .ml-1280-65 {
    margin-left: 65px !important;
  }
  .ml-1280-70 {
    margin-left: 70px !important;
  }
  .ml-1280-75 {
    margin-left: 75px !important;
  }
  .ml-1280-80 {
    margin-left: 80px !important;
  }
  .ml-1280-85 {
    margin-left: 85px !important;
  }
  .ml-1280-90 {
    margin-left: 90px !important;
  }
  .ml-1280-95 {
    margin-left: 95px !important;
  }
  .ml-1280-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .mr-1280-auto {
    margin-right: auto !important;
  }
  .mr-1280-0 {
    margin-right: 0px !important;
  }
  .mr-1280-5 {
    margin-right: 5px !important;
  }
  .mr-1280-10 {
    margin-right: 10px !important;
  }
  .mr-1280-15 {
    margin-right: 15px !important;
  }
  .mr-1280-20 {
    margin-right: 20px !important;
  }
  .mr-1280-25 {
    margin-right: 25px !important;
  }
  .mr-1280-30 {
    margin-right: 30px !important;
  }
  .mr-1280-35 {
    margin-right: 35px !important;
  }
  .mr-1280-40 {
    margin-right: 40px !important;
  }
  .mr-1280-45 {
    margin-right: 45px !important;
  }
  .mr-1280-50 {
    margin-right: 50px !important;
  }
  .mr-1280-55 {
    margin-right: 55px !important;
  }
  .mr-1280-60 {
    margin-right: 60px !important;
  }
  .mr-1280-65 {
    margin-right: 65px !important;
  }
  .mr-1280-70 {
    margin-right: 70px !important;
  }
  .mr-1280-75 {
    margin-right: 75px !important;
  }
  .mr-1280-80 {
    margin-right: 80px !important;
  }
  .mr-1280-85 {
    margin-right: 85px !important;
  }
  .mr-1280-90 {
    margin-right: 90px !important;
  }
  .mr-1280-95 {
    margin-right: 95px !important;
  }
  .mr-1280-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .mx-1280-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-1280-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-1280-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-1280-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-1280-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-1280-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-1280-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-1280-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-1280-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-1280-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-1280-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-1280-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-1280-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-1280-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-1280-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-1280-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-1280-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-1280-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-1280-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-1280-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-1280-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-1280-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .my-1280-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-1280-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-1280-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-1280-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-1280-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-1280-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-1280-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-1280-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-1280-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-1280-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-1280-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-1280-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-1280-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-1280-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-1280-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-1280-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-1280-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-1280-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-1280-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-1280-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-1280-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-1280-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .m-xl-auto {
    margin: auto !important;
  }
  .m-xl-0 {
    margin: 0px !important;
  }
  .m-xl-5 {
    margin: 5px !important;
  }
  .m-xl-10 {
    margin: 10px !important;
  }
  .m-xl-15 {
    margin: 15px !important;
  }
  .m-xl-20 {
    margin: 20px !important;
  }
  .m-xl-25 {
    margin: 25px !important;
  }
  .m-xl-30 {
    margin: 30px !important;
  }
  .m-xl-35 {
    margin: 35px !important;
  }
  .m-xl-40 {
    margin: 40px !important;
  }
  .m-xl-45 {
    margin: 45px !important;
  }
  .m-xl-50 {
    margin: 50px !important;
  }
  .m-xl-55 {
    margin: 55px !important;
  }
  .m-xl-60 {
    margin: 60px !important;
  }
  .m-xl-65 {
    margin: 65px !important;
  }
  .m-xl-70 {
    margin: 70px !important;
  }
  .m-xl-75 {
    margin: 75px !important;
  }
  .m-xl-80 {
    margin: 80px !important;
  }
  .m-xl-85 {
    margin: 85px !important;
  }
  .m-xl-90 {
    margin: 90px !important;
  }
  .m-xl-95 {
    margin: 95px !important;
  }
  .m-xl-100 {
    margin: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0px !important;
  }
  .mt-xl-5 {
    margin-top: 5px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .mt-xl-15 {
    margin-top: 15px !important;
  }
  .mt-xl-20 {
    margin-top: 20px !important;
  }
  .mt-xl-25 {
    margin-top: 25px !important;
  }
  .mt-xl-30 {
    margin-top: 30px !important;
  }
  .mt-xl-35 {
    margin-top: 35px !important;
  }
  .mt-xl-40 {
    margin-top: 40px !important;
  }
  .mt-xl-45 {
    margin-top: 45px !important;
  }
  .mt-xl-50 {
    margin-top: 50px !important;
  }
  .mt-xl-55 {
    margin-top: 55px !important;
  }
  .mt-xl-60 {
    margin-top: 60px !important;
  }
  .mt-xl-65 {
    margin-top: 65px !important;
  }
  .mt-xl-70 {
    margin-top: 70px !important;
  }
  .mt-xl-75 {
    margin-top: 75px !important;
  }
  .mt-xl-80 {
    margin-top: 80px !important;
  }
  .mt-xl-85 {
    margin-top: 85px !important;
  }
  .mt-xl-90 {
    margin-top: 90px !important;
  }
  .mt-xl-95 {
    margin-top: 95px !important;
  }
  .mt-xl-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .mb-xl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0px !important;
  }
  .ml-xl-5 {
    margin-left: 5px !important;
  }
  .ml-xl-10 {
    margin-left: 10px !important;
  }
  .ml-xl-15 {
    margin-left: 15px !important;
  }
  .ml-xl-20 {
    margin-left: 20px !important;
  }
  .ml-xl-25 {
    margin-left: 25px !important;
  }
  .ml-xl-30 {
    margin-left: 30px !important;
  }
  .ml-xl-35 {
    margin-left: 35px !important;
  }
  .ml-xl-40 {
    margin-left: 40px !important;
  }
  .ml-xl-45 {
    margin-left: 45px !important;
  }
  .ml-xl-50 {
    margin-left: 50px !important;
  }
  .ml-xl-55 {
    margin-left: 55px !important;
  }
  .ml-xl-60 {
    margin-left: 60px !important;
  }
  .ml-xl-65 {
    margin-left: 65px !important;
  }
  .ml-xl-70 {
    margin-left: 70px !important;
  }
  .ml-xl-75 {
    margin-left: 75px !important;
  }
  .ml-xl-80 {
    margin-left: 80px !important;
  }
  .ml-xl-85 {
    margin-left: 85px !important;
  }
  .ml-xl-90 {
    margin-left: 90px !important;
  }
  .ml-xl-95 {
    margin-left: 95px !important;
  }
  .ml-xl-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0px !important;
  }
  .mr-xl-5 {
    margin-right: 5px !important;
  }
  .mr-xl-10 {
    margin-right: 10px !important;
  }
  .mr-xl-15 {
    margin-right: 15px !important;
  }
  .mr-xl-20 {
    margin-right: 20px !important;
  }
  .mr-xl-25 {
    margin-right: 25px !important;
  }
  .mr-xl-30 {
    margin-right: 30px !important;
  }
  .mr-xl-35 {
    margin-right: 35px !important;
  }
  .mr-xl-40 {
    margin-right: 40px !important;
  }
  .mr-xl-45 {
    margin-right: 45px !important;
  }
  .mr-xl-50 {
    margin-right: 50px !important;
  }
  .mr-xl-55 {
    margin-right: 55px !important;
  }
  .mr-xl-60 {
    margin-right: 60px !important;
  }
  .mr-xl-65 {
    margin-right: 65px !important;
  }
  .mr-xl-70 {
    margin-right: 70px !important;
  }
  .mr-xl-75 {
    margin-right: 75px !important;
  }
  .mr-xl-80 {
    margin-right: 80px !important;
  }
  .mr-xl-85 {
    margin-right: 85px !important;
  }
  .mr-xl-90 {
    margin-right: 90px !important;
  }
  .mr-xl-95 {
    margin-right: 95px !important;
  }
  .mr-xl-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-xl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-xl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-xl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-xl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-xl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-xl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-xl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-xl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-xl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-xl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-xl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-xl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-xl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-xl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-xl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-xl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-xl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-xl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-xl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-xl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-xl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-xl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-xl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-xl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-xl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-xl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-xl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-xl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-xl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-xl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-xl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-xl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-xl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-xl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-xl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-xl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-xl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-xl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-xl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-xl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .m-lg-auto {
    margin: auto !important;
  }
  .m-lg-0 {
    margin: 0px !important;
  }
  .m-lg-5 {
    margin: 5px !important;
  }
  .m-lg-10 {
    margin: 10px !important;
  }
  .m-lg-15 {
    margin: 15px !important;
  }
  .m-lg-20 {
    margin: 20px !important;
  }
  .m-lg-25 {
    margin: 25px !important;
  }
  .m-lg-30 {
    margin: 30px !important;
  }
  .m-lg-35 {
    margin: 35px !important;
  }
  .m-lg-40 {
    margin: 40px !important;
  }
  .m-lg-45 {
    margin: 45px !important;
  }
  .m-lg-50 {
    margin: 50px !important;
  }
  .m-lg-55 {
    margin: 55px !important;
  }
  .m-lg-60 {
    margin: 60px !important;
  }
  .m-lg-65 {
    margin: 65px !important;
  }
  .m-lg-70 {
    margin: 70px !important;
  }
  .m-lg-75 {
    margin: 75px !important;
  }
  .m-lg-80 {
    margin: 80px !important;
  }
  .m-lg-85 {
    margin: 85px !important;
  }
  .m-lg-90 {
    margin: 90px !important;
  }
  .m-lg-95 {
    margin: 95px !important;
  }
  .m-lg-100 {
    margin: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mt-lg-35 {
    margin-top: 35px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .mt-lg-45 {
    margin-top: 45px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mt-lg-55 {
    margin-top: 55px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .mt-lg-65 {
    margin-top: 65px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .mt-lg-75 {
    margin-top: 75px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .mt-lg-85 {
    margin-top: 85px !important;
  }
  .mt-lg-90 {
    margin-top: 90px !important;
  }
  .mt-lg-95 {
    margin-top: 95px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-35 {
    margin-bottom: 35px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-45 {
    margin-bottom: 45px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-55 {
    margin-bottom: 55px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-65 {
    margin-bottom: 65px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-75 {
    margin-bottom: 75px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-85 {
    margin-bottom: 85px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-95 {
    margin-bottom: 95px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0px !important;
  }
  .ml-lg-5 {
    margin-left: 5px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .ml-lg-15 {
    margin-left: 15px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .ml-lg-25 {
    margin-left: 25px !important;
  }
  .ml-lg-30 {
    margin-left: 30px !important;
  }
  .ml-lg-35 {
    margin-left: 35px !important;
  }
  .ml-lg-40 {
    margin-left: 40px !important;
  }
  .ml-lg-45 {
    margin-left: 45px !important;
  }
  .ml-lg-50 {
    margin-left: 50px !important;
  }
  .ml-lg-55 {
    margin-left: 55px !important;
  }
  .ml-lg-60 {
    margin-left: 60px !important;
  }
  .ml-lg-65 {
    margin-left: 65px !important;
  }
  .ml-lg-70 {
    margin-left: 70px !important;
  }
  .ml-lg-75 {
    margin-left: 75px !important;
  }
  .ml-lg-80 {
    margin-left: 80px !important;
  }
  .ml-lg-85 {
    margin-left: 85px !important;
  }
  .ml-lg-90 {
    margin-left: 90px !important;
  }
  .ml-lg-95 {
    margin-left: 95px !important;
  }
  .ml-lg-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0px !important;
  }
  .mr-lg-5 {
    margin-right: 5px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .mr-lg-15 {
    margin-right: 15px !important;
  }
  .mr-lg-20 {
    margin-right: 20px !important;
  }
  .mr-lg-25 {
    margin-right: 25px !important;
  }
  .mr-lg-30 {
    margin-right: 30px !important;
  }
  .mr-lg-35 {
    margin-right: 35px !important;
  }
  .mr-lg-40 {
    margin-right: 40px !important;
  }
  .mr-lg-45 {
    margin-right: 45px !important;
  }
  .mr-lg-50 {
    margin-right: 50px !important;
  }
  .mr-lg-55 {
    margin-right: 55px !important;
  }
  .mr-lg-60 {
    margin-right: 60px !important;
  }
  .mr-lg-65 {
    margin-right: 65px !important;
  }
  .mr-lg-70 {
    margin-right: 70px !important;
  }
  .mr-lg-75 {
    margin-right: 75px !important;
  }
  .mr-lg-80 {
    margin-right: 80px !important;
  }
  .mr-lg-85 {
    margin-right: 85px !important;
  }
  .mr-lg-90 {
    margin-right: 90px !important;
  }
  .mr-lg-95 {
    margin-right: 95px !important;
  }
  .mr-lg-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-lg-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-lg-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-lg-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-lg-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-lg-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-lg-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-lg-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-lg-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-lg-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-lg-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-lg-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-lg-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-lg-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-lg-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-lg-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-lg-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-lg-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-lg-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-lg-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-lg-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-lg-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-lg-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-lg-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-lg-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-lg-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-lg-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-lg-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-lg-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-lg-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-lg-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-lg-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-lg-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-lg-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-lg-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-lg-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-lg-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-lg-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .m-md-auto {
    margin: auto !important;
  }
  .m-md-0 {
    margin: 0px !important;
  }
  .m-md-5 {
    margin: 5px !important;
  }
  .m-md-10 {
    margin: 10px !important;
  }
  .m-md-15 {
    margin: 15px !important;
  }
  .m-md-20 {
    margin: 20px !important;
  }
  .m-md-25 {
    margin: 25px !important;
  }
  .m-md-30 {
    margin: 30px !important;
  }
  .m-md-35 {
    margin: 35px !important;
  }
  .m-md-40 {
    margin: 40px !important;
  }
  .m-md-45 {
    margin: 45px !important;
  }
  .m-md-50 {
    margin: 50px !important;
  }
  .m-md-55 {
    margin: 55px !important;
  }
  .m-md-60 {
    margin: 60px !important;
  }
  .m-md-65 {
    margin: 65px !important;
  }
  .m-md-70 {
    margin: 70px !important;
  }
  .m-md-75 {
    margin: 75px !important;
  }
  .m-md-80 {
    margin: 80px !important;
  }
  .m-md-85 {
    margin: 85px !important;
  }
  .m-md-90 {
    margin: 90px !important;
  }
  .m-md-95 {
    margin: 95px !important;
  }
  .m-md-100 {
    margin: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .ml-md-auto {
    margin-left: auto !important;
  }
  .ml-md-0 {
    margin-left: 0px !important;
  }
  .ml-md-5 {
    margin-left: 5px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .ml-md-15 {
    margin-left: 15px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .ml-md-25 {
    margin-left: 25px !important;
  }
  .ml-md-30 {
    margin-left: 30px !important;
  }
  .ml-md-35 {
    margin-left: 35px !important;
  }
  .ml-md-40 {
    margin-left: 40px !important;
  }
  .ml-md-45 {
    margin-left: 45px !important;
  }
  .ml-md-50 {
    margin-left: 50px !important;
  }
  .ml-md-55 {
    margin-left: 55px !important;
  }
  .ml-md-60 {
    margin-left: 60px !important;
  }
  .ml-md-65 {
    margin-left: 65px !important;
  }
  .ml-md-70 {
    margin-left: 70px !important;
  }
  .ml-md-75 {
    margin-left: 75px !important;
  }
  .ml-md-80 {
    margin-left: 80px !important;
  }
  .ml-md-85 {
    margin-left: 85px !important;
  }
  .ml-md-90 {
    margin-left: 90px !important;
  }
  .ml-md-95 {
    margin-left: 95px !important;
  }
  .ml-md-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mr-md-0 {
    margin-right: 0px !important;
  }
  .mr-md-5 {
    margin-right: 5px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .mr-md-15 {
    margin-right: 15px !important;
  }
  .mr-md-20 {
    margin-right: 20px !important;
  }
  .mr-md-25 {
    margin-right: 25px !important;
  }
  .mr-md-30 {
    margin-right: 30px !important;
  }
  .mr-md-35 {
    margin-right: 35px !important;
  }
  .mr-md-40 {
    margin-right: 40px !important;
  }
  .mr-md-45 {
    margin-right: 45px !important;
  }
  .mr-md-50 {
    margin-right: 50px !important;
  }
  .mr-md-55 {
    margin-right: 55px !important;
  }
  .mr-md-60 {
    margin-right: 60px !important;
  }
  .mr-md-65 {
    margin-right: 65px !important;
  }
  .mr-md-70 {
    margin-right: 70px !important;
  }
  .mr-md-75 {
    margin-right: 75px !important;
  }
  .mr-md-80 {
    margin-right: 80px !important;
  }
  .mr-md-85 {
    margin-right: 85px !important;
  }
  .mr-md-90 {
    margin-right: 90px !important;
  }
  .mr-md-95 {
    margin-right: 95px !important;
  }
  .mr-md-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-md-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-md-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-md-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-md-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-md-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-md-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-md-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-md-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-md-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-md-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-md-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-md-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-md-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-md-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-md-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-md-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-md-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-md-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-md-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-md-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-md-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-md-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-md-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-md-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-md-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-md-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-md-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-md-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-md-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-md-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-md-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-md-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-md-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-md-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-md-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-md-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-md-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .m-sm-auto {
    margin: auto !important;
  }
  .m-sm-0 {
    margin: 0px !important;
  }
  .m-sm-5 {
    margin: 5px !important;
  }
  .m-sm-10 {
    margin: 10px !important;
  }
  .m-sm-15 {
    margin: 15px !important;
  }
  .m-sm-20 {
    margin: 20px !important;
  }
  .m-sm-25 {
    margin: 25px !important;
  }
  .m-sm-30 {
    margin: 30px !important;
  }
  .m-sm-35 {
    margin: 35px !important;
  }
  .m-sm-40 {
    margin: 40px !important;
  }
  .m-sm-45 {
    margin: 45px !important;
  }
  .m-sm-50 {
    margin: 50px !important;
  }
  .m-sm-55 {
    margin: 55px !important;
  }
  .m-sm-60 {
    margin: 60px !important;
  }
  .m-sm-65 {
    margin: 65px !important;
  }
  .m-sm-70 {
    margin: 70px !important;
  }
  .m-sm-75 {
    margin: 75px !important;
  }
  .m-sm-80 {
    margin: 80px !important;
  }
  .m-sm-85 {
    margin: 85px !important;
  }
  .m-sm-90 {
    margin: 90px !important;
  }
  .m-sm-95 {
    margin: 95px !important;
  }
  .m-sm-100 {
    margin: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .mt-sm-35 {
    margin-top: 35px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .mt-sm-45 {
    margin-top: 45px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .mt-sm-55 {
    margin-top: 55px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .mt-sm-65 {
    margin-top: 65px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .mt-sm-75 {
    margin-top: 75px !important;
  }
  .mt-sm-80 {
    margin-top: 80px !important;
  }
  .mt-sm-85 {
    margin-top: 85px !important;
  }
  .mt-sm-90 {
    margin-top: 90px !important;
  }
  .mt-sm-95 {
    margin-top: 95px !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-35 {
    margin-bottom: 35px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-45 {
    margin-bottom: 45px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-55 {
    margin-bottom: 55px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-65 {
    margin-bottom: 65px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-75 {
    margin-bottom: 75px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-85 {
    margin-bottom: 85px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-95 {
    margin-bottom: 95px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0px !important;
  }
  .ml-sm-5 {
    margin-left: 5px !important;
  }
  .ml-sm-10 {
    margin-left: 10px !important;
  }
  .ml-sm-15 {
    margin-left: 15px !important;
  }
  .ml-sm-20 {
    margin-left: 20px !important;
  }
  .ml-sm-25 {
    margin-left: 25px !important;
  }
  .ml-sm-30 {
    margin-left: 30px !important;
  }
  .ml-sm-35 {
    margin-left: 35px !important;
  }
  .ml-sm-40 {
    margin-left: 40px !important;
  }
  .ml-sm-45 {
    margin-left: 45px !important;
  }
  .ml-sm-50 {
    margin-left: 50px !important;
  }
  .ml-sm-55 {
    margin-left: 55px !important;
  }
  .ml-sm-60 {
    margin-left: 60px !important;
  }
  .ml-sm-65 {
    margin-left: 65px !important;
  }
  .ml-sm-70 {
    margin-left: 70px !important;
  }
  .ml-sm-75 {
    margin-left: 75px !important;
  }
  .ml-sm-80 {
    margin-left: 80px !important;
  }
  .ml-sm-85 {
    margin-left: 85px !important;
  }
  .ml-sm-90 {
    margin-left: 90px !important;
  }
  .ml-sm-95 {
    margin-left: 95px !important;
  }
  .ml-sm-100 {
    margin-left: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0px !important;
  }
  .mr-sm-5 {
    margin-right: 5px !important;
  }
  .mr-sm-10 {
    margin-right: 10px !important;
  }
  .mr-sm-15 {
    margin-right: 15px !important;
  }
  .mr-sm-20 {
    margin-right: 20px !important;
  }
  .mr-sm-25 {
    margin-right: 25px !important;
  }
  .mr-sm-30 {
    margin-right: 30px !important;
  }
  .mr-sm-35 {
    margin-right: 35px !important;
  }
  .mr-sm-40 {
    margin-right: 40px !important;
  }
  .mr-sm-45 {
    margin-right: 45px !important;
  }
  .mr-sm-50 {
    margin-right: 50px !important;
  }
  .mr-sm-55 {
    margin-right: 55px !important;
  }
  .mr-sm-60 {
    margin-right: 60px !important;
  }
  .mr-sm-65 {
    margin-right: 65px !important;
  }
  .mr-sm-70 {
    margin-right: 70px !important;
  }
  .mr-sm-75 {
    margin-right: 75px !important;
  }
  .mr-sm-80 {
    margin-right: 80px !important;
  }
  .mr-sm-85 {
    margin-right: 85px !important;
  }
  .mr-sm-90 {
    margin-right: 90px !important;
  }
  .mr-sm-95 {
    margin-right: 95px !important;
  }
  .mr-sm-100 {
    margin-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-sm-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .mx-sm-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .mx-sm-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .mx-sm-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .mx-sm-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .mx-sm-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .mx-sm-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .mx-sm-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .mx-sm-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .mx-sm-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .mx-sm-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .mx-sm-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .mx-sm-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .mx-sm-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .mx-sm-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .mx-sm-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .mx-sm-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .mx-sm-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .mx-sm-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .mx-sm-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .mx-sm-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .my-sm-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .my-sm-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .my-sm-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .my-sm-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .my-sm-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .my-sm-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .my-sm-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .my-sm-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .my-sm-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .my-sm-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .my-sm-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .my-sm-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .my-sm-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .my-sm-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .my-sm-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .my-sm-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .my-sm-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .my-sm-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .my-sm-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .my-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
}

.p-0 {
  padding: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.p-5 {
  padding: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.p-35 {
  padding: 35px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.p-40 {
  padding: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.p-45 {
  padding: 45px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.px-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}
.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}
.p-50 {
  padding: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.p-55 {
  padding: 55px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.px-55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}
.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}
.p-60 {
  padding: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.p-65 {
  padding: 65px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pl-65 {
  padding-left: 65px !important;
}
.pr-65 {
  padding-right: 65px !important;
}
.px-65 {
  padding-left: 65px !important;
  padding-right: 65px !important;
}
.py-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}
.p-70 {
  padding: 70px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.px-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.p-75 {
  padding: 75px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pl-75 {
  padding-left: 75px !important;
}
.pr-75 {
  padding-right: 75px !important;
}
.px-75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}
.py-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}
.p-80 {
  padding: 80px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.p-85 {
  padding: 85px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pl-85 {
  padding-left: 85px !important;
}
.pr-85 {
  padding-right: 85px !important;
}
.px-85 {
  padding-left: 85px !important;
  padding-right: 85px !important;
}
.py-85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}
.p-90 {
  padding: 90px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.px-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}
.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
.p-95 {
  padding: 95px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pl-95 {
  padding-left: 95px !important;
}
.pr-95 {
  padding-right: 95px !important;
}
.px-95 {
  padding-left: 95px !important;
  padding-right: 95px !important;
}
.py-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}
.p-100 {
  padding: 100px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pl-100 {
  padding-left: 100px !important;
}
.pr-100 {
  padding-right: 100px !important;
}
.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
@media (max-width: 1599.98px) {
  .p-xxxl-0 {
    padding: 0px !important;
  }
  .p-xxxl-5 {
    padding: 5px !important;
  }
  .p-xxxl-10 {
    padding: 10px !important;
  }
  .p-xxxl-15 {
    padding: 15px !important;
  }
  .p-xxxl-20 {
    padding: 20px !important;
  }
  .p-xxxl-25 {
    padding: 25px !important;
  }
  .p-xxxl-30 {
    padding: 30px !important;
  }
  .p-xxxl-35 {
    padding: 35px !important;
  }
  .p-xxxl-40 {
    padding: 40px !important;
  }
  .p-xxxl-45 {
    padding: 45px !important;
  }
  .p-xxxl-50 {
    padding: 50px !important;
  }
  .p-xxxl-55 {
    padding: 55px !important;
  }
  .p-xxxl-60 {
    padding: 60px !important;
  }
  .p-xxxl-65 {
    padding: 65px !important;
  }
  .p-xxxl-70 {
    padding: 70px !important;
  }
  .p-xxxl-75 {
    padding: 75px !important;
  }
  .p-xxxl-80 {
    padding: 80px !important;
  }
  .p-xxxl-85 {
    padding: 85px !important;
  }
  .p-xxxl-90 {
    padding: 90px !important;
  }
  .p-xxxl-95 {
    padding: 95px !important;
  }
  .p-xxxl-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pt-xxxl-0 {
    padding-top: 0px !important;
  }
  .pt-xxxl-5 {
    padding-top: 5px !important;
  }
  .pt-xxxl-10 {
    padding-top: 10px !important;
  }
  .pt-xxxl-15 {
    padding-top: 15px !important;
  }
  .pt-xxxl-20 {
    padding-top: 20px !important;
  }
  .pt-xxxl-25 {
    padding-top: 25px !important;
  }
  .pt-xxxl-30 {
    padding-top: 30px !important;
  }
  .pt-xxxl-35 {
    padding-top: 35px !important;
  }
  .pt-xxxl-40 {
    padding-top: 40px !important;
  }
  .pt-xxxl-45 {
    padding-top: 45px !important;
  }
  .pt-xxxl-50 {
    padding-top: 50px !important;
  }
  .pt-xxxl-55 {
    padding-top: 55px !important;
  }
  .pt-xxxl-60 {
    padding-top: 60px !important;
  }
  .pt-xxxl-65 {
    padding-top: 65px !important;
  }
  .pt-xxxl-70 {
    padding-top: 70px !important;
  }
  .pt-xxxl-75 {
    padding-top: 75px !important;
  }
  .pt-xxxl-80 {
    padding-top: 80px !important;
  }
  .pt-xxxl-85 {
    padding-top: 85px !important;
  }
  .pt-xxxl-90 {
    padding-top: 90px !important;
  }
  .pt-xxxl-95 {
    padding-top: 95px !important;
  }
  .pt-xxxl-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pb-xxxl-0 {
    padding-bottom: 0px !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xxxl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xxxl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xxxl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xxxl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xxxl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xxxl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xxxl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xxxl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xxxl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xxxl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xxxl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xxxl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xxxl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xxxl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xxxl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xxxl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xxxl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xxxl-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pl-xxxl-0 {
    padding-left: 0px !important;
  }
  .pl-xxxl-5 {
    padding-left: 5px !important;
  }
  .pl-xxxl-10 {
    padding-left: 10px !important;
  }
  .pl-xxxl-15 {
    padding-left: 15px !important;
  }
  .pl-xxxl-20 {
    padding-left: 20px !important;
  }
  .pl-xxxl-25 {
    padding-left: 25px !important;
  }
  .pl-xxxl-30 {
    padding-left: 30px !important;
  }
  .pl-xxxl-35 {
    padding-left: 35px !important;
  }
  .pl-xxxl-40 {
    padding-left: 40px !important;
  }
  .pl-xxxl-45 {
    padding-left: 45px !important;
  }
  .pl-xxxl-50 {
    padding-left: 50px !important;
  }
  .pl-xxxl-55 {
    padding-left: 55px !important;
  }
  .pl-xxxl-60 {
    padding-left: 60px !important;
  }
  .pl-xxxl-65 {
    padding-left: 65px !important;
  }
  .pl-xxxl-70 {
    padding-left: 70px !important;
  }
  .pl-xxxl-75 {
    padding-left: 75px !important;
  }
  .pl-xxxl-80 {
    padding-left: 80px !important;
  }
  .pl-xxxl-85 {
    padding-left: 85px !important;
  }
  .pl-xxxl-90 {
    padding-left: 90px !important;
  }
  .pl-xxxl-95 {
    padding-left: 95px !important;
  }
  .pl-xxxl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .pr-xxxl-0 {
    padding-right: 0px !important;
  }
  .pr-xxxl-5 {
    padding-right: 5px !important;
  }
  .pr-xxxl-10 {
    padding-right: 10px !important;
  }
  .pr-xxxl-15 {
    padding-right: 15px !important;
  }
  .pr-xxxl-20 {
    padding-right: 20px !important;
  }
  .pr-xxxl-25 {
    padding-right: 25px !important;
  }
  .pr-xxxl-30 {
    padding-right: 30px !important;
  }
  .pr-xxxl-35 {
    padding-right: 35px !important;
  }
  .pr-xxxl-40 {
    padding-right: 40px !important;
  }
  .pr-xxxl-45 {
    padding-right: 45px !important;
  }
  .pr-xxxl-50 {
    padding-right: 50px !important;
  }
  .pr-xxxl-55 {
    padding-right: 55px !important;
  }
  .pr-xxxl-60 {
    padding-right: 60px !important;
  }
  .pr-xxxl-65 {
    padding-right: 65px !important;
  }
  .pr-xxxl-70 {
    padding-right: 70px !important;
  }
  .pr-xxxl-75 {
    padding-right: 75px !important;
  }
  .pr-xxxl-80 {
    padding-right: 80px !important;
  }
  .pr-xxxl-85 {
    padding-right: 85px !important;
  }
  .pr-xxxl-90 {
    padding-right: 90px !important;
  }
  .pr-xxxl-95 {
    padding-right: 95px !important;
  }
  .pr-xxxl-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .px-xxxl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-xxxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xxxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xxxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xxxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xxxl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-xxxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xxxl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-xxxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xxxl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-xxxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xxxl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-xxxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-xxxl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-xxxl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-xxxl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-xxxl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-xxxl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-xxxl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-xxxl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-xxxl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1599.98px) {
  .py-xxxl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-xxxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xxxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xxxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xxxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xxxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-xxxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xxxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-xxxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xxxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-xxxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xxxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-xxxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-xxxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-xxxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-xxxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-xxxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-xxxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-xxxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-xxxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-xxxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .p-xxl-0 {
    padding: 0px !important;
  }
  .p-xxl-5 {
    padding: 5px !important;
  }
  .p-xxl-10 {
    padding: 10px !important;
  }
  .p-xxl-15 {
    padding: 15px !important;
  }
  .p-xxl-20 {
    padding: 20px !important;
  }
  .p-xxl-25 {
    padding: 25px !important;
  }
  .p-xxl-30 {
    padding: 30px !important;
  }
  .p-xxl-35 {
    padding: 35px !important;
  }
  .p-xxl-40 {
    padding: 40px !important;
  }
  .p-xxl-45 {
    padding: 45px !important;
  }
  .p-xxl-50 {
    padding: 50px !important;
  }
  .p-xxl-55 {
    padding: 55px !important;
  }
  .p-xxl-60 {
    padding: 60px !important;
  }
  .p-xxl-65 {
    padding: 65px !important;
  }
  .p-xxl-70 {
    padding: 70px !important;
  }
  .p-xxl-75 {
    padding: 75px !important;
  }
  .p-xxl-80 {
    padding: 80px !important;
  }
  .p-xxl-85 {
    padding: 85px !important;
  }
  .p-xxl-90 {
    padding: 90px !important;
  }
  .p-xxl-95 {
    padding: 95px !important;
  }
  .p-xxl-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .pt-xxl-0 {
    padding-top: 0px !important;
  }
  .pt-xxl-5 {
    padding-top: 5px !important;
  }
  .pt-xxl-10 {
    padding-top: 10px !important;
  }
  .pt-xxl-15 {
    padding-top: 15px !important;
  }
  .pt-xxl-20 {
    padding-top: 20px !important;
  }
  .pt-xxl-25 {
    padding-top: 25px !important;
  }
  .pt-xxl-30 {
    padding-top: 30px !important;
  }
  .pt-xxl-35 {
    padding-top: 35px !important;
  }
  .pt-xxl-40 {
    padding-top: 40px !important;
  }
  .pt-xxl-45 {
    padding-top: 45px !important;
  }
  .pt-xxl-50 {
    padding-top: 50px !important;
  }
  .pt-xxl-55 {
    padding-top: 55px !important;
  }
  .pt-xxl-60 {
    padding-top: 60px !important;
  }
  .pt-xxl-65 {
    padding-top: 65px !important;
  }
  .pt-xxl-70 {
    padding-top: 70px !important;
  }
  .pt-xxl-75 {
    padding-top: 75px !important;
  }
  .pt-xxl-80 {
    padding-top: 80px !important;
  }
  .pt-xxl-85 {
    padding-top: 85px !important;
  }
  .pt-xxl-90 {
    padding-top: 90px !important;
  }
  .pt-xxl-95 {
    padding-top: 95px !important;
  }
  .pt-xxl-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .pb-xxl-0 {
    padding-bottom: 0px !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xxl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xxl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xxl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xxl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xxl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xxl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xxl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xxl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xxl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xxl-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .pl-xxl-0 {
    padding-left: 0px !important;
  }
  .pl-xxl-5 {
    padding-left: 5px !important;
  }
  .pl-xxl-10 {
    padding-left: 10px !important;
  }
  .pl-xxl-15 {
    padding-left: 15px !important;
  }
  .pl-xxl-20 {
    padding-left: 20px !important;
  }
  .pl-xxl-25 {
    padding-left: 25px !important;
  }
  .pl-xxl-30 {
    padding-left: 30px !important;
  }
  .pl-xxl-35 {
    padding-left: 35px !important;
  }
  .pl-xxl-40 {
    padding-left: 40px !important;
  }
  .pl-xxl-45 {
    padding-left: 45px !important;
  }
  .pl-xxl-50 {
    padding-left: 50px !important;
  }
  .pl-xxl-55 {
    padding-left: 55px !important;
  }
  .pl-xxl-60 {
    padding-left: 60px !important;
  }
  .pl-xxl-65 {
    padding-left: 65px !important;
  }
  .pl-xxl-70 {
    padding-left: 70px !important;
  }
  .pl-xxl-75 {
    padding-left: 75px !important;
  }
  .pl-xxl-80 {
    padding-left: 80px !important;
  }
  .pl-xxl-85 {
    padding-left: 85px !important;
  }
  .pl-xxl-90 {
    padding-left: 90px !important;
  }
  .pl-xxl-95 {
    padding-left: 95px !important;
  }
  .pl-xxl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .pr-xxl-0 {
    padding-right: 0px !important;
  }
  .pr-xxl-5 {
    padding-right: 5px !important;
  }
  .pr-xxl-10 {
    padding-right: 10px !important;
  }
  .pr-xxl-15 {
    padding-right: 15px !important;
  }
  .pr-xxl-20 {
    padding-right: 20px !important;
  }
  .pr-xxl-25 {
    padding-right: 25px !important;
  }
  .pr-xxl-30 {
    padding-right: 30px !important;
  }
  .pr-xxl-35 {
    padding-right: 35px !important;
  }
  .pr-xxl-40 {
    padding-right: 40px !important;
  }
  .pr-xxl-45 {
    padding-right: 45px !important;
  }
  .pr-xxl-50 {
    padding-right: 50px !important;
  }
  .pr-xxl-55 {
    padding-right: 55px !important;
  }
  .pr-xxl-60 {
    padding-right: 60px !important;
  }
  .pr-xxl-65 {
    padding-right: 65px !important;
  }
  .pr-xxl-70 {
    padding-right: 70px !important;
  }
  .pr-xxl-75 {
    padding-right: 75px !important;
  }
  .pr-xxl-80 {
    padding-right: 80px !important;
  }
  .pr-xxl-85 {
    padding-right: 85px !important;
  }
  .pr-xxl-90 {
    padding-right: 90px !important;
  }
  .pr-xxl-95 {
    padding-right: 95px !important;
  }
  .pr-xxl-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .px-xxl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-xxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xxl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-xxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xxl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-xxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xxl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-xxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xxl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-xxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-xxl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-xxl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-xxl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-xxl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-xxl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-xxl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-xxl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-xxl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1439.98px) {
  .py-xxl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-xxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-xxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-xxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-xxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-xxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-xxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-xxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-xxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-xxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .p-1280-0 {
    padding: 0px !important;
  }
  .p-1280-5 {
    padding: 5px !important;
  }
  .p-1280-10 {
    padding: 10px !important;
  }
  .p-1280-15 {
    padding: 15px !important;
  }
  .p-1280-20 {
    padding: 20px !important;
  }
  .p-1280-25 {
    padding: 25px !important;
  }
  .p-1280-30 {
    padding: 30px !important;
  }
  .p-1280-35 {
    padding: 35px !important;
  }
  .p-1280-40 {
    padding: 40px !important;
  }
  .p-1280-45 {
    padding: 45px !important;
  }
  .p-1280-50 {
    padding: 50px !important;
  }
  .p-1280-55 {
    padding: 55px !important;
  }
  .p-1280-60 {
    padding: 60px !important;
  }
  .p-1280-65 {
    padding: 65px !important;
  }
  .p-1280-70 {
    padding: 70px !important;
  }
  .p-1280-75 {
    padding: 75px !important;
  }
  .p-1280-80 {
    padding: 80px !important;
  }
  .p-1280-85 {
    padding: 85px !important;
  }
  .p-1280-90 {
    padding: 90px !important;
  }
  .p-1280-95 {
    padding: 95px !important;
  }
  .p-1280-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .pt-1280-0 {
    padding-top: 0px !important;
  }
  .pt-1280-5 {
    padding-top: 5px !important;
  }
  .pt-1280-10 {
    padding-top: 10px !important;
  }
  .pt-1280-15 {
    padding-top: 15px !important;
  }
  .pt-1280-20 {
    padding-top: 20px !important;
  }
  .pt-1280-25 {
    padding-top: 25px !important;
  }
  .pt-1280-30 {
    padding-top: 30px !important;
  }
  .pt-1280-35 {
    padding-top: 35px !important;
  }
  .pt-1280-40 {
    padding-top: 40px !important;
  }
  .pt-1280-45 {
    padding-top: 45px !important;
  }
  .pt-1280-50 {
    padding-top: 50px !important;
  }
  .pt-1280-55 {
    padding-top: 55px !important;
  }
  .pt-1280-60 {
    padding-top: 60px !important;
  }
  .pt-1280-65 {
    padding-top: 65px !important;
  }
  .pt-1280-70 {
    padding-top: 70px !important;
  }
  .pt-1280-75 {
    padding-top: 75px !important;
  }
  .pt-1280-80 {
    padding-top: 80px !important;
  }
  .pt-1280-85 {
    padding-top: 85px !important;
  }
  .pt-1280-90 {
    padding-top: 90px !important;
  }
  .pt-1280-95 {
    padding-top: 95px !important;
  }
  .pt-1280-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .pb-1280-0 {
    padding-bottom: 0px !important;
  }
  .pb-1280-5 {
    padding-bottom: 5px !important;
  }
  .pb-1280-10 {
    padding-bottom: 10px !important;
  }
  .pb-1280-15 {
    padding-bottom: 15px !important;
  }
  .pb-1280-20 {
    padding-bottom: 20px !important;
  }
  .pb-1280-25 {
    padding-bottom: 25px !important;
  }
  .pb-1280-30 {
    padding-bottom: 30px !important;
  }
  .pb-1280-35 {
    padding-bottom: 35px !important;
  }
  .pb-1280-40 {
    padding-bottom: 40px !important;
  }
  .pb-1280-45 {
    padding-bottom: 45px !important;
  }
  .pb-1280-50 {
    padding-bottom: 50px !important;
  }
  .pb-1280-55 {
    padding-bottom: 55px !important;
  }
  .pb-1280-60 {
    padding-bottom: 60px !important;
  }
  .pb-1280-65 {
    padding-bottom: 65px !important;
  }
  .pb-1280-70 {
    padding-bottom: 70px !important;
  }
  .pb-1280-75 {
    padding-bottom: 75px !important;
  }
  .pb-1280-80 {
    padding-bottom: 80px !important;
  }
  .pb-1280-85 {
    padding-bottom: 85px !important;
  }
  .pb-1280-90 {
    padding-bottom: 90px !important;
  }
  .pb-1280-95 {
    padding-bottom: 95px !important;
  }
  .pb-1280-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .pl-1280-0 {
    padding-left: 0px !important;
  }
  .pl-1280-5 {
    padding-left: 5px !important;
  }
  .pl-1280-10 {
    padding-left: 10px !important;
  }
  .pl-1280-15 {
    padding-left: 15px !important;
  }
  .pl-1280-20 {
    padding-left: 20px !important;
  }
  .pl-1280-25 {
    padding-left: 25px !important;
  }
  .pl-1280-30 {
    padding-left: 30px !important;
  }
  .pl-1280-35 {
    padding-left: 35px !important;
  }
  .pl-1280-40 {
    padding-left: 40px !important;
  }
  .pl-1280-45 {
    padding-left: 45px !important;
  }
  .pl-1280-50 {
    padding-left: 50px !important;
  }
  .pl-1280-55 {
    padding-left: 55px !important;
  }
  .pl-1280-60 {
    padding-left: 60px !important;
  }
  .pl-1280-65 {
    padding-left: 65px !important;
  }
  .pl-1280-70 {
    padding-left: 70px !important;
  }
  .pl-1280-75 {
    padding-left: 75px !important;
  }
  .pl-1280-80 {
    padding-left: 80px !important;
  }
  .pl-1280-85 {
    padding-left: 85px !important;
  }
  .pl-1280-90 {
    padding-left: 90px !important;
  }
  .pl-1280-95 {
    padding-left: 95px !important;
  }
  .pl-1280-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .pr-1280-0 {
    padding-right: 0px !important;
  }
  .pr-1280-5 {
    padding-right: 5px !important;
  }
  .pr-1280-10 {
    padding-right: 10px !important;
  }
  .pr-1280-15 {
    padding-right: 15px !important;
  }
  .pr-1280-20 {
    padding-right: 20px !important;
  }
  .pr-1280-25 {
    padding-right: 25px !important;
  }
  .pr-1280-30 {
    padding-right: 30px !important;
  }
  .pr-1280-35 {
    padding-right: 35px !important;
  }
  .pr-1280-40 {
    padding-right: 40px !important;
  }
  .pr-1280-45 {
    padding-right: 45px !important;
  }
  .pr-1280-50 {
    padding-right: 50px !important;
  }
  .pr-1280-55 {
    padding-right: 55px !important;
  }
  .pr-1280-60 {
    padding-right: 60px !important;
  }
  .pr-1280-65 {
    padding-right: 65px !important;
  }
  .pr-1280-70 {
    padding-right: 70px !important;
  }
  .pr-1280-75 {
    padding-right: 75px !important;
  }
  .pr-1280-80 {
    padding-right: 80px !important;
  }
  .pr-1280-85 {
    padding-right: 85px !important;
  }
  .pr-1280-90 {
    padding-right: 90px !important;
  }
  .pr-1280-95 {
    padding-right: 95px !important;
  }
  .pr-1280-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .px-1280-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-1280-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-1280-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-1280-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-1280-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-1280-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-1280-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-1280-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-1280-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-1280-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-1280-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-1280-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-1280-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-1280-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-1280-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-1280-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-1280-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-1280-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-1280-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-1280-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-1280-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1279.98px) {
  .py-1280-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-1280-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-1280-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-1280-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-1280-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-1280-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-1280-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-1280-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-1280-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-1280-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-1280-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-1280-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-1280-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-1280-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-1280-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-1280-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-1280-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-1280-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-1280-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-1280-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-1280-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .p-xl-0 {
    padding: 0px !important;
  }
  .p-xl-5 {
    padding: 5px !important;
  }
  .p-xl-10 {
    padding: 10px !important;
  }
  .p-xl-15 {
    padding: 15px !important;
  }
  .p-xl-20 {
    padding: 20px !important;
  }
  .p-xl-25 {
    padding: 25px !important;
  }
  .p-xl-30 {
    padding: 30px !important;
  }
  .p-xl-35 {
    padding: 35px !important;
  }
  .p-xl-40 {
    padding: 40px !important;
  }
  .p-xl-45 {
    padding: 45px !important;
  }
  .p-xl-50 {
    padding: 50px !important;
  }
  .p-xl-55 {
    padding: 55px !important;
  }
  .p-xl-60 {
    padding: 60px !important;
  }
  .p-xl-65 {
    padding: 65px !important;
  }
  .p-xl-70 {
    padding: 70px !important;
  }
  .p-xl-75 {
    padding: 75px !important;
  }
  .p-xl-80 {
    padding: 80px !important;
  }
  .p-xl-85 {
    padding: 85px !important;
  }
  .p-xl-90 {
    padding: 90px !important;
  }
  .p-xl-95 {
    padding: 95px !important;
  }
  .p-xl-100 {
    padding: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pt-xl-0 {
    padding-top: 0px !important;
  }
  .pt-xl-5 {
    padding-top: 5px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pt-xl-15 {
    padding-top: 15px !important;
  }
  .pt-xl-20 {
    padding-top: 20px !important;
  }
  .pt-xl-25 {
    padding-top: 25px !important;
  }
  .pt-xl-30 {
    padding-top: 30px !important;
  }
  .pt-xl-35 {
    padding-top: 35px !important;
  }
  .pt-xl-40 {
    padding-top: 40px !important;
  }
  .pt-xl-45 {
    padding-top: 45px !important;
  }
  .pt-xl-50 {
    padding-top: 50px !important;
  }
  .pt-xl-55 {
    padding-top: 55px !important;
  }
  .pt-xl-60 {
    padding-top: 60px !important;
  }
  .pt-xl-65 {
    padding-top: 65px !important;
  }
  .pt-xl-70 {
    padding-top: 70px !important;
  }
  .pt-xl-75 {
    padding-top: 75px !important;
  }
  .pt-xl-80 {
    padding-top: 80px !important;
  }
  .pt-xl-85 {
    padding-top: 85px !important;
  }
  .pt-xl-90 {
    padding-top: 90px !important;
  }
  .pt-xl-95 {
    padding-top: 95px !important;
  }
  .pt-xl-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .pb-xl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xl-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pl-xl-0 {
    padding-left: 0px !important;
  }
  .pl-xl-5 {
    padding-left: 5px !important;
  }
  .pl-xl-10 {
    padding-left: 10px !important;
  }
  .pl-xl-15 {
    padding-left: 15px !important;
  }
  .pl-xl-20 {
    padding-left: 20px !important;
  }
  .pl-xl-25 {
    padding-left: 25px !important;
  }
  .pl-xl-30 {
    padding-left: 30px !important;
  }
  .pl-xl-35 {
    padding-left: 35px !important;
  }
  .pl-xl-40 {
    padding-left: 40px !important;
  }
  .pl-xl-45 {
    padding-left: 45px !important;
  }
  .pl-xl-50 {
    padding-left: 50px !important;
  }
  .pl-xl-55 {
    padding-left: 55px !important;
  }
  .pl-xl-60 {
    padding-left: 60px !important;
  }
  .pl-xl-65 {
    padding-left: 65px !important;
  }
  .pl-xl-70 {
    padding-left: 70px !important;
  }
  .pl-xl-75 {
    padding-left: 75px !important;
  }
  .pl-xl-80 {
    padding-left: 80px !important;
  }
  .pl-xl-85 {
    padding-left: 85px !important;
  }
  .pl-xl-90 {
    padding-left: 90px !important;
  }
  .pl-xl-95 {
    padding-left: 95px !important;
  }
  .pl-xl-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .pr-xl-0 {
    padding-right: 0px !important;
  }
  .pr-xl-5 {
    padding-right: 5px !important;
  }
  .pr-xl-10 {
    padding-right: 10px !important;
  }
  .pr-xl-15 {
    padding-right: 15px !important;
  }
  .pr-xl-20 {
    padding-right: 20px !important;
  }
  .pr-xl-25 {
    padding-right: 25px !important;
  }
  .pr-xl-30 {
    padding-right: 30px !important;
  }
  .pr-xl-35 {
    padding-right: 35px !important;
  }
  .pr-xl-40 {
    padding-right: 40px !important;
  }
  .pr-xl-45 {
    padding-right: 45px !important;
  }
  .pr-xl-50 {
    padding-right: 50px !important;
  }
  .pr-xl-55 {
    padding-right: 55px !important;
  }
  .pr-xl-60 {
    padding-right: 60px !important;
  }
  .pr-xl-65 {
    padding-right: 65px !important;
  }
  .pr-xl-70 {
    padding-right: 70px !important;
  }
  .pr-xl-75 {
    padding-right: 75px !important;
  }
  .pr-xl-80 {
    padding-right: 80px !important;
  }
  .pr-xl-85 {
    padding-right: 85px !important;
  }
  .pr-xl-90 {
    padding-right: 90px !important;
  }
  .pr-xl-95 {
    padding-right: 95px !important;
  }
  .pr-xl-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .px-xl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-xl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-xl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-xl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-xl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-xl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-xl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-xl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-xl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-xl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-xl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-xl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-xl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-xl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-xl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-xl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-xl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-xl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-xl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-xl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-xl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-xl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .p-lg-0 {
    padding: 0px !important;
  }
  .p-lg-5 {
    padding: 5px !important;
  }
  .p-lg-10 {
    padding: 10px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .p-lg-20 {
    padding: 20px !important;
  }
  .p-lg-25 {
    padding: 25px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .p-lg-35 {
    padding: 35px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .p-lg-45 {
    padding: 45px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .p-lg-55 {
    padding: 55px !important;
  }
  .p-lg-60 {
    padding: 60px !important;
  }
  .p-lg-65 {
    padding: 65px !important;
  }
  .p-lg-70 {
    padding: 70px !important;
  }
  .p-lg-75 {
    padding: 75px !important;
  }
  .p-lg-80 {
    padding: 80px !important;
  }
  .p-lg-85 {
    padding: 85px !important;
  }
  .p-lg-90 {
    padding: 90px !important;
  }
  .p-lg-95 {
    padding: 95px !important;
  }
  .p-lg-100 {
    padding: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pt-lg-25 {
    padding-top: 25px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pt-lg-35 {
    padding-top: 35px !important;
  }
  .pt-lg-40 {
    padding-top: 40px !important;
  }
  .pt-lg-45 {
    padding-top: 45px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pt-lg-55 {
    padding-top: 55px !important;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .pt-lg-65 {
    padding-top: 65px !important;
  }
  .pt-lg-70 {
    padding-top: 70px !important;
  }
  .pt-lg-75 {
    padding-top: 75px !important;
  }
  .pt-lg-80 {
    padding-top: 80px !important;
  }
  .pt-lg-85 {
    padding-top: 85px !important;
  }
  .pt-lg-90 {
    padding-top: 90px !important;
  }
  .pt-lg-95 {
    padding-top: 95px !important;
  }
  .pt-lg-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .pb-lg-35 {
    padding-bottom: 35px !important;
  }
  .pb-lg-40 {
    padding-bottom: 40px !important;
  }
  .pb-lg-45 {
    padding-bottom: 45px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .pb-lg-55 {
    padding-bottom: 55px !important;
  }
  .pb-lg-60 {
    padding-bottom: 60px !important;
  }
  .pb-lg-65 {
    padding-bottom: 65px !important;
  }
  .pb-lg-70 {
    padding-bottom: 70px !important;
  }
  .pb-lg-75 {
    padding-bottom: 75px !important;
  }
  .pb-lg-80 {
    padding-bottom: 80px !important;
  }
  .pb-lg-85 {
    padding-bottom: 85px !important;
  }
  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
  .pb-lg-95 {
    padding-bottom: 95px !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pl-lg-0 {
    padding-left: 0px !important;
  }
  .pl-lg-5 {
    padding-left: 5px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .pl-lg-15 {
    padding-left: 15px !important;
  }
  .pl-lg-20 {
    padding-left: 20px !important;
  }
  .pl-lg-25 {
    padding-left: 25px !important;
  }
  .pl-lg-30 {
    padding-left: 30px !important;
  }
  .pl-lg-35 {
    padding-left: 35px !important;
  }
  .pl-lg-40 {
    padding-left: 40px !important;
  }
  .pl-lg-45 {
    padding-left: 45px !important;
  }
  .pl-lg-50 {
    padding-left: 50px !important;
  }
  .pl-lg-55 {
    padding-left: 55px !important;
  }
  .pl-lg-60 {
    padding-left: 60px !important;
  }
  .pl-lg-65 {
    padding-left: 65px !important;
  }
  .pl-lg-70 {
    padding-left: 70px !important;
  }
  .pl-lg-75 {
    padding-left: 75px !important;
  }
  .pl-lg-80 {
    padding-left: 80px !important;
  }
  .pl-lg-85 {
    padding-left: 85px !important;
  }
  .pl-lg-90 {
    padding-left: 90px !important;
  }
  .pl-lg-95 {
    padding-left: 95px !important;
  }
  .pl-lg-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .pr-lg-0 {
    padding-right: 0px !important;
  }
  .pr-lg-5 {
    padding-right: 5px !important;
  }
  .pr-lg-10 {
    padding-right: 10px !important;
  }
  .pr-lg-15 {
    padding-right: 15px !important;
  }
  .pr-lg-20 {
    padding-right: 20px !important;
  }
  .pr-lg-25 {
    padding-right: 25px !important;
  }
  .pr-lg-30 {
    padding-right: 30px !important;
  }
  .pr-lg-35 {
    padding-right: 35px !important;
  }
  .pr-lg-40 {
    padding-right: 40px !important;
  }
  .pr-lg-45 {
    padding-right: 45px !important;
  }
  .pr-lg-50 {
    padding-right: 50px !important;
  }
  .pr-lg-55 {
    padding-right: 55px !important;
  }
  .pr-lg-60 {
    padding-right: 60px !important;
  }
  .pr-lg-65 {
    padding-right: 65px !important;
  }
  .pr-lg-70 {
    padding-right: 70px !important;
  }
  .pr-lg-75 {
    padding-right: 75px !important;
  }
  .pr-lg-80 {
    padding-right: 80px !important;
  }
  .pr-lg-85 {
    padding-right: 85px !important;
  }
  .pr-lg-90 {
    padding-right: 90px !important;
  }
  .pr-lg-95 {
    padding-right: 95px !important;
  }
  .pr-lg-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .px-lg-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-lg-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-lg-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-lg-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-lg-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-lg-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-lg-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-lg-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-lg-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-lg-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-lg-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-lg-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-lg-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-lg-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-lg-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-lg-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-lg-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-lg-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-lg-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-lg-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-lg-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 999.98px) {
  .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-lg-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-lg-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-lg-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-lg-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-lg-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-lg-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-lg-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-lg-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-lg-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-lg-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .p-md-0 {
    padding: 0px !important;
  }
  .p-md-5 {
    padding: 5px !important;
  }
  .p-md-10 {
    padding: 10px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .p-md-20 {
    padding: 20px !important;
  }
  .p-md-25 {
    padding: 25px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .p-md-35 {
    padding: 35px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .p-md-45 {
    padding: 45px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .p-md-55 {
    padding: 55px !important;
  }
  .p-md-60 {
    padding: 60px !important;
  }
  .p-md-65 {
    padding: 65px !important;
  }
  .p-md-70 {
    padding: 70px !important;
  }
  .p-md-75 {
    padding: 75px !important;
  }
  .p-md-80 {
    padding: 80px !important;
  }
  .p-md-85 {
    padding: 85px !important;
  }
  .p-md-90 {
    padding: 90px !important;
  }
  .p-md-95 {
    padding: 95px !important;
  }
  .p-md-100 {
    padding: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .pt-md-45 {
    padding-top: 45px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pt-md-55 {
    padding-top: 55px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .pt-md-65 {
    padding-top: 65px !important;
  }
  .pt-md-70 {
    padding-top: 70px !important;
  }
  .pt-md-75 {
    padding-top: 75px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pt-md-85 {
    padding-top: 85px !important;
  }
  .pt-md-90 {
    padding-top: 90px !important;
  }
  .pt-md-95 {
    padding-top: 95px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .pb-md-45 {
    padding-bottom: 45px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pb-md-55 {
    padding-bottom: 55px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .pb-md-65 {
    padding-bottom: 65px !important;
  }
  .pb-md-70 {
    padding-bottom: 70px !important;
  }
  .pb-md-75 {
    padding-bottom: 75px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .pb-md-85 {
    padding-bottom: 85px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .pb-md-95 {
    padding-bottom: 95px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pl-md-0 {
    padding-left: 0px !important;
  }
  .pl-md-5 {
    padding-left: 5px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .pl-md-15 {
    padding-left: 15px !important;
  }
  .pl-md-20 {
    padding-left: 20px !important;
  }
  .pl-md-25 {
    padding-left: 25px !important;
  }
  .pl-md-30 {
    padding-left: 30px !important;
  }
  .pl-md-35 {
    padding-left: 35px !important;
  }
  .pl-md-40 {
    padding-left: 40px !important;
  }
  .pl-md-45 {
    padding-left: 45px !important;
  }
  .pl-md-50 {
    padding-left: 50px !important;
  }
  .pl-md-55 {
    padding-left: 55px !important;
  }
  .pl-md-60 {
    padding-left: 60px !important;
  }
  .pl-md-65 {
    padding-left: 65px !important;
  }
  .pl-md-70 {
    padding-left: 70px !important;
  }
  .pl-md-75 {
    padding-left: 75px !important;
  }
  .pl-md-80 {
    padding-left: 80px !important;
  }
  .pl-md-85 {
    padding-left: 85px !important;
  }
  .pl-md-90 {
    padding-left: 90px !important;
  }
  .pl-md-95 {
    padding-left: 95px !important;
  }
  .pl-md-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .pr-md-0 {
    padding-right: 0px !important;
  }
  .pr-md-5 {
    padding-right: 5px !important;
  }
  .pr-md-10 {
    padding-right: 10px !important;
  }
  .pr-md-15 {
    padding-right: 15px !important;
  }
  .pr-md-20 {
    padding-right: 20px !important;
  }
  .pr-md-25 {
    padding-right: 25px !important;
  }
  .pr-md-30 {
    padding-right: 30px !important;
  }
  .pr-md-35 {
    padding-right: 35px !important;
  }
  .pr-md-40 {
    padding-right: 40px !important;
  }
  .pr-md-45 {
    padding-right: 45px !important;
  }
  .pr-md-50 {
    padding-right: 50px !important;
  }
  .pr-md-55 {
    padding-right: 55px !important;
  }
  .pr-md-60 {
    padding-right: 60px !important;
  }
  .pr-md-65 {
    padding-right: 65px !important;
  }
  .pr-md-70 {
    padding-right: 70px !important;
  }
  .pr-md-75 {
    padding-right: 75px !important;
  }
  .pr-md-80 {
    padding-right: 80px !important;
  }
  .pr-md-85 {
    padding-right: 85px !important;
  }
  .pr-md-90 {
    padding-right: 90px !important;
  }
  .pr-md-95 {
    padding-right: 95px !important;
  }
  .pr-md-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .px-md-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-md-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-md-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-md-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-md-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-md-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-md-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-md-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-md-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-md-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-md-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-md-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-md-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-md-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-md-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-md-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-md-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-md-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-md-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-md-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-md-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 719.98px) {
  .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-md-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-md-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-md-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-md-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-md-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-md-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-md-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-md-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-md-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-md-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .p-sm-0 {
    padding: 0px !important;
  }
  .p-sm-5 {
    padding: 5px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .p-sm-20 {
    padding: 20px !important;
  }
  .p-sm-25 {
    padding: 25px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .p-sm-35 {
    padding: 35px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .p-sm-45 {
    padding: 45px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .p-sm-55 {
    padding: 55px !important;
  }
  .p-sm-60 {
    padding: 60px !important;
  }
  .p-sm-65 {
    padding: 65px !important;
  }
  .p-sm-70 {
    padding: 70px !important;
  }
  .p-sm-75 {
    padding: 75px !important;
  }
  .p-sm-80 {
    padding: 80px !important;
  }
  .p-sm-85 {
    padding: 85px !important;
  }
  .p-sm-90 {
    padding: 90px !important;
  }
  .p-sm-95 {
    padding: 95px !important;
  }
  .p-sm-100 {
    padding: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pt-sm-35 {
    padding-top: 35px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .pt-sm-45 {
    padding-top: 45px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .pt-sm-55 {
    padding-top: 55px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .pt-sm-65 {
    padding-top: 65px !important;
  }
  .pt-sm-70 {
    padding-top: 70px !important;
  }
  .pt-sm-75 {
    padding-top: 75px !important;
  }
  .pt-sm-80 {
    padding-top: 80px !important;
  }
  .pt-sm-85 {
    padding-top: 85px !important;
  }
  .pt-sm-90 {
    padding-top: 90px !important;
  }
  .pt-sm-95 {
    padding-top: 95px !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .pb-sm-35 {
    padding-bottom: 35px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .pb-sm-45 {
    padding-bottom: 45px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .pb-sm-55 {
    padding-bottom: 55px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .pb-sm-65 {
    padding-bottom: 65px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .pb-sm-75 {
    padding-bottom: 75px !important;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .pb-sm-85 {
    padding-bottom: 85px !important;
  }
  .pb-sm-90 {
    padding-bottom: 90px !important;
  }
  .pb-sm-95 {
    padding-bottom: 95px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pl-sm-0 {
    padding-left: 0px !important;
  }
  .pl-sm-5 {
    padding-left: 5px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .pl-sm-15 {
    padding-left: 15px !important;
  }
  .pl-sm-20 {
    padding-left: 20px !important;
  }
  .pl-sm-25 {
    padding-left: 25px !important;
  }
  .pl-sm-30 {
    padding-left: 30px !important;
  }
  .pl-sm-35 {
    padding-left: 35px !important;
  }
  .pl-sm-40 {
    padding-left: 40px !important;
  }
  .pl-sm-45 {
    padding-left: 45px !important;
  }
  .pl-sm-50 {
    padding-left: 50px !important;
  }
  .pl-sm-55 {
    padding-left: 55px !important;
  }
  .pl-sm-60 {
    padding-left: 60px !important;
  }
  .pl-sm-65 {
    padding-left: 65px !important;
  }
  .pl-sm-70 {
    padding-left: 70px !important;
  }
  .pl-sm-75 {
    padding-left: 75px !important;
  }
  .pl-sm-80 {
    padding-left: 80px !important;
  }
  .pl-sm-85 {
    padding-left: 85px !important;
  }
  .pl-sm-90 {
    padding-left: 90px !important;
  }
  .pl-sm-95 {
    padding-left: 95px !important;
  }
  .pl-sm-100 {
    padding-left: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .pr-sm-0 {
    padding-right: 0px !important;
  }
  .pr-sm-5 {
    padding-right: 5px !important;
  }
  .pr-sm-10 {
    padding-right: 10px !important;
  }
  .pr-sm-15 {
    padding-right: 15px !important;
  }
  .pr-sm-20 {
    padding-right: 20px !important;
  }
  .pr-sm-25 {
    padding-right: 25px !important;
  }
  .pr-sm-30 {
    padding-right: 30px !important;
  }
  .pr-sm-35 {
    padding-right: 35px !important;
  }
  .pr-sm-40 {
    padding-right: 40px !important;
  }
  .pr-sm-45 {
    padding-right: 45px !important;
  }
  .pr-sm-50 {
    padding-right: 50px !important;
  }
  .pr-sm-55 {
    padding-right: 55px !important;
  }
  .pr-sm-60 {
    padding-right: 60px !important;
  }
  .pr-sm-65 {
    padding-right: 65px !important;
  }
  .pr-sm-70 {
    padding-right: 70px !important;
  }
  .pr-sm-75 {
    padding-right: 75px !important;
  }
  .pr-sm-80 {
    padding-right: 80px !important;
  }
  .pr-sm-85 {
    padding-right: 85px !important;
  }
  .pr-sm-90 {
    padding-right: 90px !important;
  }
  .pr-sm-95 {
    padding-right: 95px !important;
  }
  .pr-sm-100 {
    padding-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .px-sm-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .px-sm-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-sm-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-sm-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-sm-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-sm-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .px-sm-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-sm-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .px-sm-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-sm-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .px-sm-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-sm-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .px-sm-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .px-sm-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .px-sm-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .px-sm-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .px-sm-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .px-sm-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .px-sm-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .px-sm-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .px-sm-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 575.98px) {
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .py-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-sm-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .py-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-sm-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .py-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-sm-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .py-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-sm-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .py-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .py-sm-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .py-sm-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .py-sm-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .py-sm-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .py-sm-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .py-sm-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .py-sm-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .py-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

.radius-0 {
  border-radius: 0px !important;
}
.radius-10 {
  border-radius: 10px !important;
}
.radius-15 {
  border-radius: 15px !important;
}
.radius-pill {
  border-radius: 1000px !important;
}
@media (max-width: 1599.98px) {
  .radius-xxxl-0 {
    border-radius: 0px !important;
  }
  .radius-xxxl-10 {
    border-radius: 10px !important;
  }
  .radius-xxxl-15 {
    border-radius: 15px !important;
  }
  .radius-xxxl-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 1439.98px) {
  .radius-xxl-0 {
    border-radius: 0px !important;
  }
  .radius-xxl-10 {
    border-radius: 10px !important;
  }
  .radius-xxl-15 {
    border-radius: 15px !important;
  }
  .radius-xxl-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 1279.98px) {
  .radius-1280-0 {
    border-radius: 0px !important;
  }
  .radius-1280-10 {
    border-radius: 10px !important;
  }
  .radius-1280-15 {
    border-radius: 15px !important;
  }
  .radius-1280-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 1199.98px) {
  .radius-xl-0 {
    border-radius: 0px !important;
  }
  .radius-xl-10 {
    border-radius: 10px !important;
  }
  .radius-xl-15 {
    border-radius: 15px !important;
  }
  .radius-xl-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 999.98px) {
  .radius-lg-0 {
    border-radius: 0px !important;
  }
  .radius-lg-10 {
    border-radius: 10px !important;
  }
  .radius-lg-15 {
    border-radius: 15px !important;
  }
  .radius-lg-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 719.98px) {
  .radius-md-0 {
    border-radius: 0px !important;
  }
  .radius-md-10 {
    border-radius: 10px !important;
  }
  .radius-md-15 {
    border-radius: 15px !important;
  }
  .radius-md-pill {
    border-radius: 1000px !important;
  }
}
@media (max-width: 575.98px) {
  .radius-sm-0 {
    border-radius: 0px !important;
  }
  .radius-sm-10 {
    border-radius: 10px !important;
  }
  .radius-sm-15 {
    border-radius: 15px !important;
  }
  .radius-sm-pill {
    border-radius: 1000px !important;
  }
}

.w-auto {
  width: auto !important;
}
.w-0 {
  width: 0% !important;
}
.w-10 {
  width: 10% !important;
}
.w-20 {
  width: 20% !important;
}
.w-30 {
  width: 30% !important;
}
.w-40 {
  width: 40% !important;
}
.w-50 {
  width: 50% !important;
}
.w-60 {
  width: 60% !important;
}
.w-70 {
  width: 70% !important;
}
.w-80 {
  width: 80% !important;
}
.w-90 {
  width: 90% !important;
}
.w-100 {
  width: 100% !important;
}
.w-fit {
  width: fit-content !important;
}
.w-fill {
  width: fill-available !important;
}
@media (max-width: 1599.98px) {
  .w-xxxl-auto {
    width: auto !important;
  }
  .w-xxxl-0 {
    width: 0% !important;
  }
  .w-xxxl-10 {
    width: 10% !important;
  }
  .w-xxxl-20 {
    width: 20% !important;
  }
  .w-xxxl-30 {
    width: 30% !important;
  }
  .w-xxxl-40 {
    width: 40% !important;
  }
  .w-xxxl-50 {
    width: 50% !important;
  }
  .w-xxxl-60 {
    width: 60% !important;
  }
  .w-xxxl-70 {
    width: 70% !important;
  }
  .w-xxxl-80 {
    width: 80% !important;
  }
  .w-xxxl-90 {
    width: 90% !important;
  }
  .w-xxxl-100 {
    width: 100% !important;
  }
  .w-xxxl-fit {
    width: fit-content !important;
  }
  .w-xxxl-fill {
    width: fill-available !important;
  }
}
@media (max-width: 1439.98px) {
  .w-xxl-auto {
    width: auto !important;
  }
  .w-xxl-0 {
    width: 0% !important;
  }
  .w-xxl-10 {
    width: 10% !important;
  }
  .w-xxl-20 {
    width: 20% !important;
  }
  .w-xxl-30 {
    width: 30% !important;
  }
  .w-xxl-40 {
    width: 40% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-60 {
    width: 60% !important;
  }
  .w-xxl-70 {
    width: 70% !important;
  }
  .w-xxl-80 {
    width: 80% !important;
  }
  .w-xxl-90 {
    width: 90% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-fit {
    width: fit-content !important;
  }
  .w-xxl-fill {
    width: fill-available !important;
  }
}
@media (max-width: 1279.98px) {
  .w-1280-auto {
    width: auto !important;
  }
  .w-1280-0 {
    width: 0% !important;
  }
  .w-1280-10 {
    width: 10% !important;
  }
  .w-1280-20 {
    width: 20% !important;
  }
  .w-1280-30 {
    width: 30% !important;
  }
  .w-1280-40 {
    width: 40% !important;
  }
  .w-1280-50 {
    width: 50% !important;
  }
  .w-1280-60 {
    width: 60% !important;
  }
  .w-1280-70 {
    width: 70% !important;
  }
  .w-1280-80 {
    width: 80% !important;
  }
  .w-1280-90 {
    width: 90% !important;
  }
  .w-1280-100 {
    width: 100% !important;
  }
  .w-1280-fit {
    width: fit-content !important;
  }
  .w-1280-fill {
    width: fill-available !important;
  }
}
@media (max-width: 1199.98px) {
  .w-xl-auto {
    width: auto !important;
  }
  .w-xl-0 {
    width: 0% !important;
  }
  .w-xl-10 {
    width: 10% !important;
  }
  .w-xl-20 {
    width: 20% !important;
  }
  .w-xl-30 {
    width: 30% !important;
  }
  .w-xl-40 {
    width: 40% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-60 {
    width: 60% !important;
  }
  .w-xl-70 {
    width: 70% !important;
  }
  .w-xl-80 {
    width: 80% !important;
  }
  .w-xl-90 {
    width: 90% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-fit {
    width: fit-content !important;
  }
  .w-xl-fill {
    width: fill-available !important;
  }
}
@media (max-width: 999.98px) {
  .w-lg-auto {
    width: auto !important;
  }
  .w-lg-0 {
    width: 0% !important;
  }
  .w-lg-10 {
    width: 10% !important;
  }
  .w-lg-20 {
    width: 20% !important;
  }
  .w-lg-30 {
    width: 30% !important;
  }
  .w-lg-40 {
    width: 40% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-60 {
    width: 60% !important;
  }
  .w-lg-70 {
    width: 70% !important;
  }
  .w-lg-80 {
    width: 80% !important;
  }
  .w-lg-90 {
    width: 90% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-fit {
    width: fit-content !important;
  }
  .w-lg-fill {
    width: fill-available !important;
  }
}
@media (max-width: 719.98px) {
  .w-md-auto {
    width: auto !important;
  }
  .w-md-0 {
    width: 0% !important;
  }
  .w-md-10 {
    width: 10% !important;
  }
  .w-md-20 {
    width: 20% !important;
  }
  .w-md-30 {
    width: 30% !important;
  }
  .w-md-40 {
    width: 40% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-60 {
    width: 60% !important;
  }
  .w-md-70 {
    width: 70% !important;
  }
  .w-md-80 {
    width: 80% !important;
  }
  .w-md-90 {
    width: 90% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-fit {
    width: fit-content !important;
  }
  .w-md-fill {
    width: fill-available !important;
  }
}
@media (max-width: 575.98px) {
  .w-sm-auto {
    width: auto !important;
  }
  .w-sm-0 {
    width: 0% !important;
  }
  .w-sm-10 {
    width: 10% !important;
  }
  .w-sm-20 {
    width: 20% !important;
  }
  .w-sm-30 {
    width: 30% !important;
  }
  .w-sm-40 {
    width: 40% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-60 {
    width: 60% !important;
  }
  .w-sm-70 {
    width: 70% !important;
  }
  .w-sm-80 {
    width: 80% !important;
  }
  .w-sm-90 {
    width: 90% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-fit {
    width: fit-content !important;
  }
  .w-sm-fill {
    width: fill-available !important;
  }
}

.mw-auto {
  max-width: auto !important;
}
.mw-0 {
  max-width: 0% !important;
}
.mw-10 {
  max-width: 10% !important;
}
.mw-20 {
  max-width: 20% !important;
}
.mw-30 {
  max-width: 30% !important;
}
.mw-40 {
  max-width: 40% !important;
}
.mw-50 {
  max-width: 50% !important;
}
.mw-60 {
  max-width: 60% !important;
}
.mw-70 {
  max-width: 70% !important;
}
.mw-80 {
  max-width: 80% !important;
}
.mw-90 {
  max-width: 90% !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mw-fit {
  max-width: fit-content !important;
}
.mw-fill {
  max-width: fill-available !important;
}
@media (max-width: 1599.98px) {
  .mw-xxxl-auto {
    max-width: auto !important;
  }
  .mw-xxxl-0 {
    max-width: 0% !important;
  }
  .mw-xxxl-10 {
    max-width: 10% !important;
  }
  .mw-xxxl-20 {
    max-width: 20% !important;
  }
  .mw-xxxl-30 {
    max-width: 30% !important;
  }
  .mw-xxxl-40 {
    max-width: 40% !important;
  }
  .mw-xxxl-50 {
    max-width: 50% !important;
  }
  .mw-xxxl-60 {
    max-width: 60% !important;
  }
  .mw-xxxl-70 {
    max-width: 70% !important;
  }
  .mw-xxxl-80 {
    max-width: 80% !important;
  }
  .mw-xxxl-90 {
    max-width: 90% !important;
  }
  .mw-xxxl-100 {
    max-width: 100% !important;
  }
  .mw-xxxl-fit {
    max-width: fit-content !important;
  }
  .mw-xxxl-fill {
    max-width: fill-available !important;
  }
}
@media (max-width: 1439.98px) {
  .mw-xxl-auto {
    max-width: auto !important;
  }
  .mw-xxl-0 {
    max-width: 0% !important;
  }
  .mw-xxl-10 {
    max-width: 10% !important;
  }
  .mw-xxl-20 {
    max-width: 20% !important;
  }
  .mw-xxl-30 {
    max-width: 30% !important;
  }
  .mw-xxl-40 {
    max-width: 40% !important;
  }
  .mw-xxl-50 {
    max-width: 50% !important;
  }
  .mw-xxl-60 {
    max-width: 60% !important;
  }
  .mw-xxl-70 {
    max-width: 70% !important;
  }
  .mw-xxl-80 {
    max-width: 80% !important;
  }
  .mw-xxl-90 {
    max-width: 90% !important;
  }
  .mw-xxl-100 {
    max-width: 100% !important;
  }
  .mw-xxl-fit {
    max-width: fit-content !important;
  }
  .mw-xxl-fill {
    max-width: fill-available !important;
  }
}
@media (max-width: 1279.98px) {
  .mw-1280-auto {
    max-width: auto !important;
  }
  .mw-1280-0 {
    max-width: 0% !important;
  }
  .mw-1280-10 {
    max-width: 10% !important;
  }
  .mw-1280-20 {
    max-width: 20% !important;
  }
  .mw-1280-30 {
    max-width: 30% !important;
  }
  .mw-1280-40 {
    max-width: 40% !important;
  }
  .mw-1280-50 {
    max-width: 50% !important;
  }
  .mw-1280-60 {
    max-width: 60% !important;
  }
  .mw-1280-70 {
    max-width: 70% !important;
  }
  .mw-1280-80 {
    max-width: 80% !important;
  }
  .mw-1280-90 {
    max-width: 90% !important;
  }
  .mw-1280-100 {
    max-width: 100% !important;
  }
  .mw-1280-fit {
    max-width: fit-content !important;
  }
  .mw-1280-fill {
    max-width: fill-available !important;
  }
}
@media (max-width: 1199.98px) {
  .mw-xl-auto {
    max-width: auto !important;
  }
  .mw-xl-0 {
    max-width: 0% !important;
  }
  .mw-xl-10 {
    max-width: 10% !important;
  }
  .mw-xl-20 {
    max-width: 20% !important;
  }
  .mw-xl-30 {
    max-width: 30% !important;
  }
  .mw-xl-40 {
    max-width: 40% !important;
  }
  .mw-xl-50 {
    max-width: 50% !important;
  }
  .mw-xl-60 {
    max-width: 60% !important;
  }
  .mw-xl-70 {
    max-width: 70% !important;
  }
  .mw-xl-80 {
    max-width: 80% !important;
  }
  .mw-xl-90 {
    max-width: 90% !important;
  }
  .mw-xl-100 {
    max-width: 100% !important;
  }
  .mw-xl-fit {
    max-width: fit-content !important;
  }
  .mw-xl-fill {
    max-width: fill-available !important;
  }
}
@media (max-width: 999.98px) {
  .mw-lg-auto {
    max-width: auto !important;
  }
  .mw-lg-0 {
    max-width: 0% !important;
  }
  .mw-lg-10 {
    max-width: 10% !important;
  }
  .mw-lg-20 {
    max-width: 20% !important;
  }
  .mw-lg-30 {
    max-width: 30% !important;
  }
  .mw-lg-40 {
    max-width: 40% !important;
  }
  .mw-lg-50 {
    max-width: 50% !important;
  }
  .mw-lg-60 {
    max-width: 60% !important;
  }
  .mw-lg-70 {
    max-width: 70% !important;
  }
  .mw-lg-80 {
    max-width: 80% !important;
  }
  .mw-lg-90 {
    max-width: 90% !important;
  }
  .mw-lg-100 {
    max-width: 100% !important;
  }
  .mw-lg-fit {
    max-width: fit-content !important;
  }
  .mw-lg-fill {
    max-width: fill-available !important;
  }
}
@media (max-width: 719.98px) {
  .mw-md-auto {
    max-width: auto !important;
  }
  .mw-md-0 {
    max-width: 0% !important;
  }
  .mw-md-10 {
    max-width: 10% !important;
  }
  .mw-md-20 {
    max-width: 20% !important;
  }
  .mw-md-30 {
    max-width: 30% !important;
  }
  .mw-md-40 {
    max-width: 40% !important;
  }
  .mw-md-50 {
    max-width: 50% !important;
  }
  .mw-md-60 {
    max-width: 60% !important;
  }
  .mw-md-70 {
    max-width: 70% !important;
  }
  .mw-md-80 {
    max-width: 80% !important;
  }
  .mw-md-90 {
    max-width: 90% !important;
  }
  .mw-md-100 {
    max-width: 100% !important;
  }
  .mw-md-fit {
    max-width: fit-content !important;
  }
  .mw-md-fill {
    max-width: fill-available !important;
  }
}
@media (max-width: 575.98px) {
  .mw-sm-auto {
    max-width: auto !important;
  }
  .mw-sm-0 {
    max-width: 0% !important;
  }
  .mw-sm-10 {
    max-width: 10% !important;
  }
  .mw-sm-20 {
    max-width: 20% !important;
  }
  .mw-sm-30 {
    max-width: 30% !important;
  }
  .mw-sm-40 {
    max-width: 40% !important;
  }
  .mw-sm-50 {
    max-width: 50% !important;
  }
  .mw-sm-60 {
    max-width: 60% !important;
  }
  .mw-sm-70 {
    max-width: 70% !important;
  }
  .mw-sm-80 {
    max-width: 80% !important;
  }
  .mw-sm-90 {
    max-width: 90% !important;
  }
  .mw-sm-100 {
    max-width: 100% !important;
  }
  .mw-sm-fit {
    max-width: fit-content !important;
  }
  .mw-sm-fill {
    max-width: fill-available !important;
  }
}

.h-auto {
  height: auto !important;
}
.h-0 {
  height: 0% !important;
}
.h-10 {
  height: 10% !important;
}
.h-20 {
  height: 20% !important;
}
.h-30 {
  height: 30% !important;
}
.h-40 {
  height: 40% !important;
}
.h-50 {
  height: 50% !important;
}
.h-60 {
  height: 60% !important;
}
.h-70 {
  height: 70% !important;
}
.h-80 {
  height: 80% !important;
}
.h-90 {
  height: 90% !important;
}
.h-100 {
  height: 100% !important;
}
.h-fit {
  height: fit-content !important;
}
.h-fill {
  height: fill-available !important;
}
@media (max-width: 1599.98px) {
  .h-xxxl-auto {
    height: auto !important;
  }
  .h-xxxl-0 {
    height: 0% !important;
  }
  .h-xxxl-10 {
    height: 10% !important;
  }
  .h-xxxl-20 {
    height: 20% !important;
  }
  .h-xxxl-30 {
    height: 30% !important;
  }
  .h-xxxl-40 {
    height: 40% !important;
  }
  .h-xxxl-50 {
    height: 50% !important;
  }
  .h-xxxl-60 {
    height: 60% !important;
  }
  .h-xxxl-70 {
    height: 70% !important;
  }
  .h-xxxl-80 {
    height: 80% !important;
  }
  .h-xxxl-90 {
    height: 90% !important;
  }
  .h-xxxl-100 {
    height: 100% !important;
  }
  .h-xxxl-fit {
    height: fit-content !important;
  }
  .h-xxxl-fill {
    height: fill-available !important;
  }
}
@media (max-width: 1439.98px) {
  .h-xxl-auto {
    height: auto !important;
  }
  .h-xxl-0 {
    height: 0% !important;
  }
  .h-xxl-10 {
    height: 10% !important;
  }
  .h-xxl-20 {
    height: 20% !important;
  }
  .h-xxl-30 {
    height: 30% !important;
  }
  .h-xxl-40 {
    height: 40% !important;
  }
  .h-xxl-50 {
    height: 50% !important;
  }
  .h-xxl-60 {
    height: 60% !important;
  }
  .h-xxl-70 {
    height: 70% !important;
  }
  .h-xxl-80 {
    height: 80% !important;
  }
  .h-xxl-90 {
    height: 90% !important;
  }
  .h-xxl-100 {
    height: 100% !important;
  }
  .h-xxl-fit {
    height: fit-content !important;
  }
  .h-xxl-fill {
    height: fill-available !important;
  }
}
@media (max-width: 1279.98px) {
  .h-1280-auto {
    height: auto !important;
  }
  .h-1280-0 {
    height: 0% !important;
  }
  .h-1280-10 {
    height: 10% !important;
  }
  .h-1280-20 {
    height: 20% !important;
  }
  .h-1280-30 {
    height: 30% !important;
  }
  .h-1280-40 {
    height: 40% !important;
  }
  .h-1280-50 {
    height: 50% !important;
  }
  .h-1280-60 {
    height: 60% !important;
  }
  .h-1280-70 {
    height: 70% !important;
  }
  .h-1280-80 {
    height: 80% !important;
  }
  .h-1280-90 {
    height: 90% !important;
  }
  .h-1280-100 {
    height: 100% !important;
  }
  .h-1280-fit {
    height: fit-content !important;
  }
  .h-1280-fill {
    height: fill-available !important;
  }
}
@media (max-width: 1199.98px) {
  .h-xl-auto {
    height: auto !important;
  }
  .h-xl-0 {
    height: 0% !important;
  }
  .h-xl-10 {
    height: 10% !important;
  }
  .h-xl-20 {
    height: 20% !important;
  }
  .h-xl-30 {
    height: 30% !important;
  }
  .h-xl-40 {
    height: 40% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-60 {
    height: 60% !important;
  }
  .h-xl-70 {
    height: 70% !important;
  }
  .h-xl-80 {
    height: 80% !important;
  }
  .h-xl-90 {
    height: 90% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-fit {
    height: fit-content !important;
  }
  .h-xl-fill {
    height: fill-available !important;
  }
}
@media (max-width: 999.98px) {
  .h-lg-auto {
    height: auto !important;
  }
  .h-lg-0 {
    height: 0% !important;
  }
  .h-lg-10 {
    height: 10% !important;
  }
  .h-lg-20 {
    height: 20% !important;
  }
  .h-lg-30 {
    height: 30% !important;
  }
  .h-lg-40 {
    height: 40% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-60 {
    height: 60% !important;
  }
  .h-lg-70 {
    height: 70% !important;
  }
  .h-lg-80 {
    height: 80% !important;
  }
  .h-lg-90 {
    height: 90% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-fit {
    height: fit-content !important;
  }
  .h-lg-fill {
    height: fill-available !important;
  }
}
@media (max-width: 719.98px) {
  .h-md-auto {
    height: auto !important;
  }
  .h-md-0 {
    height: 0% !important;
  }
  .h-md-10 {
    height: 10% !important;
  }
  .h-md-20 {
    height: 20% !important;
  }
  .h-md-30 {
    height: 30% !important;
  }
  .h-md-40 {
    height: 40% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-60 {
    height: 60% !important;
  }
  .h-md-70 {
    height: 70% !important;
  }
  .h-md-80 {
    height: 80% !important;
  }
  .h-md-90 {
    height: 90% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-fit {
    height: fit-content !important;
  }
  .h-md-fill {
    height: fill-available !important;
  }
}
@media (max-width: 575.98px) {
  .h-sm-auto {
    height: auto !important;
  }
  .h-sm-0 {
    height: 0% !important;
  }
  .h-sm-10 {
    height: 10% !important;
  }
  .h-sm-20 {
    height: 20% !important;
  }
  .h-sm-30 {
    height: 30% !important;
  }
  .h-sm-40 {
    height: 40% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-60 {
    height: 60% !important;
  }
  .h-sm-70 {
    height: 70% !important;
  }
  .h-sm-80 {
    height: 80% !important;
  }
  .h-sm-90 {
    height: 90% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-fit {
    height: fit-content !important;
  }
  .h-sm-fill {
    height: fill-available !important;
  }
}

.mh-auto {
  max-height: auto !important;
}
.mh-0 {
  max-height: 0% !important;
}
.mh-10 {
  max-height: 10% !important;
}
.mh-20 {
  max-height: 20% !important;
}
.mh-30 {
  max-height: 30% !important;
}
.mh-40 {
  max-height: 40% !important;
}
.mh-50 {
  max-height: 50% !important;
}
.mh-60 {
  max-height: 60% !important;
}
.mh-70 {
  max-height: 70% !important;
}
.mh-80 {
  max-height: 80% !important;
}
.mh-90 {
  max-height: 90% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.mh-fit {
  max-height: fit-content !important;
}
.mh-fill {
  max-height: fill-available !important;
}
@media (max-width: 1599.98px) {
  .mh-xxxl-auto {
    max-height: auto !important;
  }
  .mh-xxxl-0 {
    max-height: 0% !important;
  }
  .mh-xxxl-10 {
    max-height: 10% !important;
  }
  .mh-xxxl-20 {
    max-height: 20% !important;
  }
  .mh-xxxl-30 {
    max-height: 30% !important;
  }
  .mh-xxxl-40 {
    max-height: 40% !important;
  }
  .mh-xxxl-50 {
    max-height: 50% !important;
  }
  .mh-xxxl-60 {
    max-height: 60% !important;
  }
  .mh-xxxl-70 {
    max-height: 70% !important;
  }
  .mh-xxxl-80 {
    max-height: 80% !important;
  }
  .mh-xxxl-90 {
    max-height: 90% !important;
  }
  .mh-xxxl-100 {
    max-height: 100% !important;
  }
  .mh-xxxl-fit {
    max-height: fit-content !important;
  }
  .mh-xxxl-fill {
    max-height: fill-available !important;
  }
}
@media (max-width: 1439.98px) {
  .mh-xxl-auto {
    max-height: auto !important;
  }
  .mh-xxl-0 {
    max-height: 0% !important;
  }
  .mh-xxl-10 {
    max-height: 10% !important;
  }
  .mh-xxl-20 {
    max-height: 20% !important;
  }
  .mh-xxl-30 {
    max-height: 30% !important;
  }
  .mh-xxl-40 {
    max-height: 40% !important;
  }
  .mh-xxl-50 {
    max-height: 50% !important;
  }
  .mh-xxl-60 {
    max-height: 60% !important;
  }
  .mh-xxl-70 {
    max-height: 70% !important;
  }
  .mh-xxl-80 {
    max-height: 80% !important;
  }
  .mh-xxl-90 {
    max-height: 90% !important;
  }
  .mh-xxl-100 {
    max-height: 100% !important;
  }
  .mh-xxl-fit {
    max-height: fit-content !important;
  }
  .mh-xxl-fill {
    max-height: fill-available !important;
  }
}
@media (max-width: 1279.98px) {
  .mh-1280-auto {
    max-height: auto !important;
  }
  .mh-1280-0 {
    max-height: 0% !important;
  }
  .mh-1280-10 {
    max-height: 10% !important;
  }
  .mh-1280-20 {
    max-height: 20% !important;
  }
  .mh-1280-30 {
    max-height: 30% !important;
  }
  .mh-1280-40 {
    max-height: 40% !important;
  }
  .mh-1280-50 {
    max-height: 50% !important;
  }
  .mh-1280-60 {
    max-height: 60% !important;
  }
  .mh-1280-70 {
    max-height: 70% !important;
  }
  .mh-1280-80 {
    max-height: 80% !important;
  }
  .mh-1280-90 {
    max-height: 90% !important;
  }
  .mh-1280-100 {
    max-height: 100% !important;
  }
  .mh-1280-fit {
    max-height: fit-content !important;
  }
  .mh-1280-fill {
    max-height: fill-available !important;
  }
}
@media (max-width: 1199.98px) {
  .mh-xl-auto {
    max-height: auto !important;
  }
  .mh-xl-0 {
    max-height: 0% !important;
  }
  .mh-xl-10 {
    max-height: 10% !important;
  }
  .mh-xl-20 {
    max-height: 20% !important;
  }
  .mh-xl-30 {
    max-height: 30% !important;
  }
  .mh-xl-40 {
    max-height: 40% !important;
  }
  .mh-xl-50 {
    max-height: 50% !important;
  }
  .mh-xl-60 {
    max-height: 60% !important;
  }
  .mh-xl-70 {
    max-height: 70% !important;
  }
  .mh-xl-80 {
    max-height: 80% !important;
  }
  .mh-xl-90 {
    max-height: 90% !important;
  }
  .mh-xl-100 {
    max-height: 100% !important;
  }
  .mh-xl-fit {
    max-height: fit-content !important;
  }
  .mh-xl-fill {
    max-height: fill-available !important;
  }
}
@media (max-width: 999.98px) {
  .mh-lg-auto {
    max-height: auto !important;
  }
  .mh-lg-0 {
    max-height: 0% !important;
  }
  .mh-lg-10 {
    max-height: 10% !important;
  }
  .mh-lg-20 {
    max-height: 20% !important;
  }
  .mh-lg-30 {
    max-height: 30% !important;
  }
  .mh-lg-40 {
    max-height: 40% !important;
  }
  .mh-lg-50 {
    max-height: 50% !important;
  }
  .mh-lg-60 {
    max-height: 60% !important;
  }
  .mh-lg-70 {
    max-height: 70% !important;
  }
  .mh-lg-80 {
    max-height: 80% !important;
  }
  .mh-lg-90 {
    max-height: 90% !important;
  }
  .mh-lg-100 {
    max-height: 100% !important;
  }
  .mh-lg-fit {
    max-height: fit-content !important;
  }
  .mh-lg-fill {
    max-height: fill-available !important;
  }
}
@media (max-width: 719.98px) {
  .mh-md-auto {
    max-height: auto !important;
  }
  .mh-md-0 {
    max-height: 0% !important;
  }
  .mh-md-10 {
    max-height: 10% !important;
  }
  .mh-md-20 {
    max-height: 20% !important;
  }
  .mh-md-30 {
    max-height: 30% !important;
  }
  .mh-md-40 {
    max-height: 40% !important;
  }
  .mh-md-50 {
    max-height: 50% !important;
  }
  .mh-md-60 {
    max-height: 60% !important;
  }
  .mh-md-70 {
    max-height: 70% !important;
  }
  .mh-md-80 {
    max-height: 80% !important;
  }
  .mh-md-90 {
    max-height: 90% !important;
  }
  .mh-md-100 {
    max-height: 100% !important;
  }
  .mh-md-fit {
    max-height: fit-content !important;
  }
  .mh-md-fill {
    max-height: fill-available !important;
  }
}
@media (max-width: 575.98px) {
  .mh-sm-auto {
    max-height: auto !important;
  }
  .mh-sm-0 {
    max-height: 0% !important;
  }
  .mh-sm-10 {
    max-height: 10% !important;
  }
  .mh-sm-20 {
    max-height: 20% !important;
  }
  .mh-sm-30 {
    max-height: 30% !important;
  }
  .mh-sm-40 {
    max-height: 40% !important;
  }
  .mh-sm-50 {
    max-height: 50% !important;
  }
  .mh-sm-60 {
    max-height: 60% !important;
  }
  .mh-sm-70 {
    max-height: 70% !important;
  }
  .mh-sm-80 {
    max-height: 80% !important;
  }
  .mh-sm-90 {
    max-height: 90% !important;
  }
  .mh-sm-100 {
    max-height: 100% !important;
  }
  .mh-sm-fit {
    max-height: fit-content !important;
  }
  .mh-sm-fill {
    max-height: fill-available !important;
  }
}

.badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 35px;
  padding: 5px 10px;
  border: none;
  border-radius: 1000px;
  font-size: 16px;
  line-height: 100%;
  color: var(--black);
  background-color: var(--white);
  vertical-align: middle;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .badge {
    font-size: 14px;
  }
}
.badge i {
  display: flex;
  font-size: small;
}
.badge > svg {
  display: flex;
  width: 16px;
  height: 16px;
}
@media (max-width: 999.98px) {
  .badge > svg {
    width: 14px;
    height: 14px;
  }
}
.badge-min {
  min-height: 25px;
  padding: 0 10px;
}
.badge-xs {
  min-height: 15px;
  padding: 5px 10px;
}

.banner {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  padding: 75px 120px;
  background-color: var(--light-grey);
  border: 1px solid;
  border-color: var(--light-grey);
  border-radius: 15px;
  color: var(--black);
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1439.98px) {
  .banner {
    padding: 60px 120px;
  }
}
@media (max-width: 999.98px) {
  .banner {
    padding: 45px 40px;
  }
}
.banner-main {
  background-color: var(--main);
  color: var(--white);
}
.banner-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("./../../assets/images/banner-main-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  mix-blend-mode: screen;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .banner-main::before {
    background-image: url("./../../assets/images/banner-main-bg-min.webp");
    background-position: top left;
  }
}

.btn,
button {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .btn,
  button {
    font-size: 14px;
  }
}
.btn,
button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--white);
  line-height: 1;
  font-weight: 700;
  font-family: "Commissioner";
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  text-transform: none;
  border-radius: 100px;
  border: 1px solid;
  border-color: var(--main);
  background-color: var(--main);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .btn,
  button {
    --btn-padding-y: 14.5px;
    --btn-padding-x: 24px;
  }
}
.btn:hover, .btn.hover,
button:hover,
button.hover {
  background-color: rgb(255, 135.5404255319, 45.5);
  border-color: rgb(255, 135.5404255319, 45.5);
  color: var(--white);
}
.btn:focus:active, .btn.focus, .btn.active,
button:focus:active,
button.focus,
button.active {
  background-color: rgb(249.5, 107.2319148936, 0);
  border-color: rgb(249.5, 107.2319148936, 0);
  color: var(--white);
}
.btn.disabled, .btn:disabled,
button.disabled,
button:disabled {
  background-color: var(--grey-blue);
  color: var(--white);
  border-color: var(--grey-blue);
  box-shadow: none;
  opacity: 0.35;
  cursor: not-allowed;
}
.btn.disabled:hover, .btn.disabled.hover, .btn.disabled:focus:active, .btn.disabled:focus, .btn.disabled.focus, .btn.disabled.active, .btn:disabled:hover, .btn:disabled.hover, .btn:disabled:focus:active, .btn:disabled:focus, .btn:disabled.focus, .btn:disabled.active,
button.disabled:hover,
button.disabled.hover,
button.disabled:focus:active,
button.disabled:focus,
button.disabled.focus,
button.disabled.active,
button:disabled:hover,
button:disabled.hover,
button:disabled:focus:active,
button:disabled:focus,
button:disabled.focus,
button:disabled.active {
  background-color: var(--grey-blue);
  color: var(--white);
  border-color: var(--grey-blue);
}
.btn.hidden, .btn:hidden,
button.hidden,
button:hidden {
  display: none;
}
.btn > i, .btn > svg,
button > i,
button > svg {
  vertical-align: text-bottom;
  transition: 0.25s ease-in-out;
}
.btn.aspected,
button.aspected {
  --btn-padding-x: 5px;
  --btn-padding-y: 5px;
  --btn-padding-x: var(--btn-padding-y);
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-xs,
button-xs {
  --btn-size: 20px;
  --btn-padding-y: 4px;
  --btn-padding-x: 8px;
  font-size: 14px;
  min-height: 20px;
}
@media (max-width: 999.98px) {
  .btn-xs,
  button-xs {
    font-size: 12px;
  }
}
.btn-xs i,
button-xs i {
  font-size: x-small;
}
.btn-xs.aspected,
button-xs.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-sm,
button-sm {
  --btn-padding-y: 8.5px;
  --btn-padding-x: 24px;
  --btn-size: 35px;
  min-height: 35px;
}
@media (max-width: 999.98px) {
  .btn-sm,
  button-sm {
    --btn-padding-y: 9.5px;
  }
}
.btn-sm.aspected,
button-sm.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-md,
button-md {
  --btn-padding-y: 10px;
  --btn-padding-x: 24px;
  min-height: 35px;
}
.btn-md.aspected,
button-md.aspected {
  width: var(--btn-size);
  height: var(--btn-size);
}
.btn-lg,
button-lg {
  --btn-padding-y: 16px;
}
.btn-lg.aspected,
button-lg.aspected {
  width: var(--btn-size, 40px);
  height: var(--btn-size, 40px);
  --btn-padding-x: 4px;
  --btn-padding-y: 4px;
}
.btn-outline,
button-outline {
  color: var(--main);
  border-color: var(--main);
  background-color: transparent;
}
.btn-outline.hover, .btn-outline:hover,
button-outline.hover,
button-outline:hover {
  color: var(--white);
  border-color: var(--main);
  background-color: var(--main);
}
.btn-outline:focus:active, .btn-outline.focus, .btn-outline.active,
button-outline:focus:active,
button-outline.focus,
button-outline.active {
  background-color: rgb(249.5, 107.2319148936, 0);
  border-color: rgb(249.5, 107.2319148936, 0);
  color: var(--white);
}
.btn-outline-grey-blue,
button-outline-grey-blue {
  color: rgba(29, 33, 35, 0.5019607843);
  border-color: #c9cfd4;
  background-color: transparent;
}
.btn-outline-grey-blue.hover, .btn-outline-grey-blue:hover,
button-outline-grey-blue.hover,
button-outline-grey-blue:hover {
  color: #1d2123;
  border-color: #c9cfd4;
  background-color: #c9cfd4;
}
.btn-outline-grey-blue:focus:active, .btn-outline-grey-blue.focus, .btn-outline-grey-blue.active,
button-outline-grey-blue:focus:active,
button-outline-grey-blue.focus,
button-outline-grey-blue.active {
  background-color: rgb(186.8041237113, 194.381443299, 200.6958762887);
  border-color: rgb(186.8041237113, 194.381443299, 200.6958762887);
  color: #1d2123;
}
.btn-outline-white,
button-outline-white {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
}
.btn-outline-white.hover, .btn-outline-white:hover,
button-outline-white.hover,
button-outline-white:hover {
  color: #1d2123;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-outline-white:focus:active, .btn-outline-white.focus, .btn-outline-white.active,
button-outline-white:focus:active,
button-outline-white.focus,
button-outline-white.active {
  background-color: rgb(242.25, 242.25, 242.25);
  border-color: rgb(242.25, 242.25, 242.25);
  color: #ff7914;
}
.btn-icon,
button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .btn-icon,
  button-icon {
    gap: 5px;
  }
}
.btn-icon > svg, .btn-icon > image, .btn-icon > img, .btn-icon > object, .btn-icon > i,
button-icon > svg,
button-icon > image,
button-icon > img,
button-icon > object,
button-icon > i {
  display: flex;
  align-self: center;
  justify-content: center;
  width: fit-content;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: middle;
}
.btn-icon > svg *,
button-icon > svg * {
  fill: currentColor;
}
.btn-grey-blue,
button-grey-blue {
  color: #1d2123;
  border-color: #c9cfd4;
  background-color: #c9cfd4;
}
.btn-grey-blue.hover, .btn-grey-blue:hover,
button-grey-blue.hover,
button-grey-blue:hover {
  color: #1d2123;
  border-color: rgb(215.1958762887, 219.618556701, 223.3041237113);
  background-color: rgb(215.1958762887, 219.618556701, 223.3041237113);
}
.btn-grey-blue:focus:active, .btn-grey-blue.focus, .btn-grey-blue.active,
button-grey-blue:focus:active,
button-grey-blue.focus,
button-grey-blue.active {
  background-color: rgb(186.8041237113, 194.381443299, 200.6958762887);
  border-color: rgb(186.8041237113, 194.381443299, 200.6958762887);
  color: #1d2123;
}
.btn-black,
button-black {
  color: #ffffff;
  border-color: #1d2123;
  background-color: #1d2123;
}
.btn-black.hover, .btn-black:hover,
button-black.hover,
button-black:hover {
  color: #ffffff;
  border-color: rgb(40.5546875, 46.1484375, 48.9453125);
  background-color: rgb(40.5546875, 46.1484375, 48.9453125);
}
.btn-black:focus:active, .btn-black.focus, .btn-black.active,
button-black:focus:active,
button-black.focus,
button-black.active {
  background-color: rgb(17.4453125, 19.8515625, 21.0546875);
  border-color: rgb(17.4453125, 19.8515625, 21.0546875);
  color: #ffffff;
}
.btn-black-50,
button-black-50 {
  color: #ffffff;
  border-color: rgba(29, 33, 35, 0.5019607843);
  background-color: rgba(29, 33, 35, 0.5019607843);
}
.btn-black-50.hover, .btn-black-50:hover,
button-black-50.hover,
button-black-50:hover {
  color: #ffffff;
  border-color: rgba(40.5546875, 46.1484375, 48.9453125, 0.5019607843);
  background-color: rgba(40.5546875, 46.1484375, 48.9453125, 0.5019607843);
}
.btn-black-50:focus:active, .btn-black-50.focus, .btn-black-50.active,
button-black-50:focus:active,
button-black-50.focus,
button-black-50.active {
  background-color: rgba(17.4453125, 19.8515625, 21.0546875, 0.5019607843);
  border-color: rgba(17.4453125, 19.8515625, 21.0546875, 0.5019607843);
  color: #ffffff;
}
.btn-light-grey,
button-light-grey {
  color: rgba(29, 33, 35, 0.8);
  border-color: #f2f3f6;
  background-color: #f2f3f6;
}
.btn-light-grey.hover, .btn-light-grey:hover,
button-light-grey.hover,
button-light-grey:hover {
  color: #ffffff;
  border-color: #ff7914;
  background-color: #ff7914;
}
.btn-light-grey:focus:active, .btn-light-grey.focus, .btn-light-grey.active,
button-light-grey:focus:active,
button-light-grey.focus,
button-light-grey.active {
  color: #ffffff;
  border-color: #1d2123;
  background-color: #1d2123;
}
.btn-green,
button-green {
  color: #ffffff;
  border-color: #4fac7f;
  background-color: #4fac7f;
}
.btn-green.hover, .btn-green:hover,
button-green.hover,
button-green:hover {
  color: #ffffff;
  border-color: rgb(94.9920318725, 181.5079681275, 139.6454183267);
  background-color: rgb(94.9920318725, 181.5079681275, 139.6454183267);
}
.btn-green:focus:active, .btn-green.focus, .btn-green.active,
button-green:focus:active,
button-green.focus,
button-green.active {
  background-color: rgb(70.9741035857, 154.5258964143, 114.0976095618);
  border-color: rgb(70.9741035857, 154.5258964143, 114.0976095618);
  color: #ffffff;
}
.btn-white,
button-white {
  color: #ff7914;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-white.hover, .btn-white:hover,
button-white.hover,
button-white:hover {
  color: #ffffff;
  border-color: #ff7914;
  background-color: #ff7914;
}
.btn-white:focus:active, .btn-white.focus, .btn-white.active,
button-white:focus:active,
button-white.focus,
button-white.active {
  color: #ffffff;
  border-color: #1d2123;
  background-color: #1d2123;
}
.btn-ripple,
button-ripple {
  position: relative;
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  overflow: hidden;
}
.btn-ripple > *,
button-ripple > * {
  position: relative;
  z-index: 2;
}
.btn-ripple::before,
button-ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 0;
  height: 0;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background-color: var(--green);
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: 0.25s ease-in-out;
  will-change: transform;
}
.btn-ripple:hover, .btn-ripple.hover,
button-ripple:hover,
button-ripple.hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--main);
}
.btn-ripple:hover::before, .btn-ripple.hover::before,
button-ripple:hover::before,
button-ripple.hover::before {
  width: 100%;
  height: 140px;
  background-color: var(--main);
  transform: translate(-50%, -50%);
}
.btn-ripple:focus:active, .btn-ripple.focus, .btn-ripple.active,
button-ripple:focus:active,
button-ripple.focus,
button-ripple.active {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.btn-ripple:focus:active::before, .btn-ripple.focus::before, .btn-ripple.active::before,
button-ripple:focus:active::before,
button-ripple.focus::before,
button-ripple.active::before {
  background-color: rgb(249.5, 107.2319148936, 0);
  transform: translate(-50%, -50%);
}
.btn-close,
button-close {
  --btn-size: 35px;
  font-weight: 100;
  font-size: 14px;
  flex: 0 0 var(--btn-size);
}
.btn-close > i,
button-close > i {
  transform: rotate(0deg);
}
.btn-close:hover > i,
button-close:hover > i {
  transform: rotate(180deg);
}
.btn-burger i,
button-burger i {
  display: flex;
}

.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: 15px;
  background-color: var(--white);
  border: none;
  border-radius: 15px;
  color: var(--black);
  transition: 0.25s ease-in-out;
}
.card .card-header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}
.card-advantage {
  gap: 50px;
  background-color: var(--white);
  border: none;
  text-decoration: none !important;
}
@media (max-width: 1439.98px) {
  .card-advantage {
    gap: 5px;
  }
}
.card-advantage .card-title {
  transition: 0.25s ease-in-out;
}
.card-advantage .card-body {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 30px;
  flex: 1;
}
@media (max-width: 1439.98px) {
  .card-advantage .card-body {
    gap: 0;
  }
}
.card-advantage .card-body i {
  font-size: 64px;
  color: var(--main);
}
@media (max-width: 999.98px) {
  .card-advantage .card-body i {
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  .card-advantage:hover:not(.slim) {
    transform: translateY(-5px);
  }
  .card-advantage:hover:not(.slim) .card-title {
    color: var(--main);
  }
}
.card-advantage.slim {
  gap: 15px;
}
.card-advantage.slim > .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: auto;
}
.card-advantage.slim > .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.card-product {
  padding: 0;
  background-color: var(--white);
  border: none;
  text-decoration: none !important;
  overflow: hidden;
}
.card-product > .card-image {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px;
  backface-visibility: hidden;
  text-decoration: none !important;
  overflow: hidden;
}
.card-product > .card-image > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: 0.25s ease-in-out;
}
.card-product .card-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 15px;
}
.card-product > .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 20px 30px;
}
@media (max-width: 575.98px) {
  .card-product > .card-body {
    padding: 10px 15px 20px;
  }
}
.card-product > .card-body ul {
  margin-bottom: unset;
}
@media (min-width: 1000px) {
  .card-product > .card-body ul li::marker {
    color: var(--black);
  }
}
.card-product > .card-body ul li::marker {
  transition: 0.25s ease-in-out;
}
.card-product > .card-body ul li b {
  font-weight: 500;
  color: var(--main);
}
.card-product > .card-body ul li a {
  font-weight: 500;
}
.card-product > .card-body .badge {
  font-weight: 500;
  background-color: var(--white);
  color: var(--main);
}
.card-product .card-suptitle {
  margin-bottom: 5px;
}
.card-product .card-title {
  flex: 1;
  margin-bottom: 15px;
}
.card-product.dark {
  background-color: var(--black);
  color: var(--white);
}
@media (min-width: 1000px) {
  .card-product.dark > .card-body ul li::marker {
    color: var(--white);
  }
}
.card-product.dark > .card-body ul li::marker {
  transition: 0.25s ease-in-out;
}
.card-product.dark > .card-body .badge {
  background-color: var(--main);
  color: var(--white);
}
.card-product:hover:not(.effects-off) > .card-image > img {
  transform: scale(1.0625);
}
@media (min-width: 1000px) {
  .card-product:hover:not(.effects-off) > .card-body ul li::marker {
    color: var(--main);
  }
}
.card-loop {
  position: relative;
  z-index: unset;
  display: flex;
  flex: 1;
  min-height: 80px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 15px;
  overflow: unset;
}
@media (min-width: 576px) {
  .card-loop {
    overflow: hidden;
  }
}
@media (min-width: 720px) {
  .card-loop {
    padding: 30px;
  }
}
@media (min-width: 1000px) {
  .card-loop {
    min-height: 180px;
  }
}
@media (min-width: 720px) {
  .card-loop {
    min-height: 210px;
  }
}
.card-loop::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 176px;
  height: 176px;
  background-image: var(--bg-image);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform: translate(0, 10%);
}
@media (max-width: 719.98px) {
  .card-loop::before {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 575.98px) {
  .card-loop:not(:last-child)::after {
    content: "G";
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--light-grey);
    border-radius: 1000px;
    font-family: "mig";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(-50%, 75%);
  }
}
.card-loop .card-title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}
.card-loop .card-title > span {
  max-width: 70%;
}
@media (max-width: 1439.98px) {
  .card-loop .card-title > span {
    max-width: 60%;
  }
}
@media (max-width: 575.98px) {
  .card-loop .card-title > span {
    max-width: 190px;
  }
}
.card-loop .card-body {
  z-index: 1;
  flex: 1 0 auto;
  width: 100%;
  order: 99999;
}
.card-loop .card-body ul {
  padding-right: 10%;
}
.card-loop .card-body ul li {
  color: var(--black-80);
}
.card-loop .card-body ul li::marker {
  color: currentColor;
}
.card-loop img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 176px;
  height: 176px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform: translate(0, 10%);
}
@media (max-width: 719.98px) {
  .card-loop img {
    width: 110px;
    height: 110px;
  }
}
.card-loop.counted {
  counter-increment: item;
  overflow: hidden;
}
.card-loop.counted::after {
  display: none;
}
.card-loop.counted .card-title {
  position: relative;
  z-index: 1;
}
.card-loop.counted .card-title::after {
  content: counter(item, decimal-leading-zero);
  font-weight: 600;
  font-size: 48px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .card-loop.counted .card-title::after {
    font-size: 32px;
  }
}
.card-loop.counted .card-title::after {
  color: var(--main);
}
.card-partner {
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  background-color: var(--white);
  border: none;
  overflow: hidden;
}
.card-partner img {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 124px;
  object-fit: contain;
  object-position: center;
}
.card-about {
  flex-direction: row;
  gap: 10px;
}
.card-about i, .card-about svg, .card-about img {
  align-self: flex-end;
  user-select: none;
  pointer-events: none;
}
.card-about svg, .card-about img {
  width: 64px;
  height: 64px;
}
@media (max-width: 999.98px) {
  .card-about svg, .card-about img {
    width: 40px;
    height: 40px;
  }
}
.card-about i {
  font-size: 64px;
  color: var(--main);
}
@media (max-width: 999.98px) {
  .card-about i {
    font-size: 40px;
  }
}
.card-production {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575.98px) {
  .card-production {
    grid-template-columns: 40px 1fr;
  }
}
.card-production > img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 575.98px) {
  .card-production > img {
    width: 40px;
    height: 40px;
  }
}
.card-production > h3 {
  width: fit-content;
  margin-block-end: 0;
}
.card-production.orange {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}

input[type=checkbox]:checked, input[type=checkbox]:not(:checked),
input[type=radio]:checked,
input[type=radio]:not(:checked) {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
input[type=checkbox]:checked + label, input[type=checkbox]:not(:checked) + label,
input[type=radio]:checked + label,
input[type=radio]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  color: var(--black);
  cursor: pointer;
}
@media (max-width: 999.98px) {
  input[type=checkbox]:checked + label, input[type=checkbox]:not(:checked) + label,
  input[type=radio]:checked + label,
  input[type=radio]:not(:checked) + label {
    padding-left: 20px;
  }
}
input[type=checkbox]:checked + label::before, input[type=checkbox]:not(:checked) + label::before,
input[type=radio]:checked + label::before,
input[type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--main);
  border-radius: 2px;
  background-color: var(--white);
}
@media (max-width: 999.98px) {
  input[type=checkbox]:checked + label::before, input[type=checkbox]:not(:checked) + label::before,
  input[type=radio]:checked + label::before,
  input[type=radio]:not(:checked) + label::before {
    width: 14px;
    height: 14px;
  }
}
input[type=checkbox]:checked + label::after, input[type=checkbox]:not(:checked) + label::after,
input[type=radio]:checked + label::after,
input[type=radio]:not(:checked) + label::after {
  content: "";
  position: absolute;
  top: 2px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
input[type=checkbox]:user-valid + label,
input[type=radio]:user-valid + label {
  color: var(--black);
}
input[type=checkbox]:user-valid + label::before,
input[type=radio]:user-valid + label::before {
  border-color: var(--main);
}
input[type=checkbox].error + label, input[type=checkbox]:user-invalid + label,
input[type=radio].error + label,
input[type=radio]:user-invalid + label {
  color: var(--error);
}
input[type=checkbox].error + label::before, input[type=checkbox]:user-invalid + label::before,
input[type=radio].error + label::before,
input[type=radio]:user-invalid + label::before {
  border-color: var(--error);
}

input[type=checkbox]:checked + label::before, input[type=checkbox]:not(:checked) + label::before {
  border-radius: 2px;
}
input[type=checkbox]:checked + label::after, input[type=checkbox]:not(:checked) + label::after {
  left: 0;
  width: 18px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 0.5H1.75C1.05964 0.5 0.5 1.05964 0.5 1.75V10.5C0.5 11.1904 1.05964 11.75 1.75 11.75H10.5C11.1904 11.75 11.75 11.1904 11.75 10.5V1.75C11.75 1.05964 11.1904 0.5 10.5 0.5Z' fill='%23FF7914' stroke='%23FF7914' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.25 5.5L6.125 7.375L12.375 1.125' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 999.98px) {
  input[type=checkbox]:checked + label::after, input[type=checkbox]:not(:checked) + label::after {
    width: 16px;
    height: 14px;
  }
}
input[type=checkbox]:checked + label::before {
  background-color: var(--main);
}

input[type=radio]:checked + label::before, input[type=radio]:not(:checked) + label::before {
  border-radius: 100%;
}
input[type=radio]:checked + label::after, input[type=radio]:not(:checked) + label::after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--main);
}

input[type=checkbox]:not(:checked) + label::after,
input[type=radio]:not(:checked) + label::after {
  opacity: 0;
}
input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: var(--main);
}
input[type=checkbox]:checked + label::before,
input[type=radio]:checked + label::before {
  border-color: var(--main);
}
input[type=checkbox]:checked + label::after,
input[type=radio]:checked + label::after {
  opacity: 1;
}

.collapse {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  padding: 15px;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.collapse [data-collapse-toggle] {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  user-select: none;
  cursor: pointer;
}
.collapse [data-collapse-toggle]::after {
  content: "G";
  font-family: "mig" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 6px;
  font-size: 14px;
  speak: none;
  line-height: 1;
  color: var(--main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0deg);
  transform-origin: center;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .collapse [data-collapse-toggle]::after {
    font-size: 10px;
  }
}
.collapse [data-collapse-toggle].active::after {
  transform: rotate(180deg);
}
.collapse-header i {
  display: flex;
}
.collapse-header > * {
  margin: 0;
}
.collapse-content {
  width: 100%;
  max-height: 100%;
  padding: 10px 0 0;
  opacity: 1;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.collapse-content.collapsed {
  max-height: 0px;
  opacity: 0;
  padding: 0;
}

.divider {
  display: flex;
  background-color: var(--main);
}
.divider-vertical {
  width: 5px;
  height: 100%;
}
@media (max-width: 999.98px) {
  .divider-vertical {
    width: 2px;
  }
}
.divider-horizontal {
  width: 100%;
  height: 5px;
}
@media (max-width: 999.98px) {
  .divider-horizontal {
    height: 2px;
  }
}

.dropdown {
  position: absolute;
  z-index: 1020;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .dropdown {
    font-size: 14px;
  }
}
@supports (-moz-appearance: none) {
  .dropdown {
    scrollbar-color: var(--black) var(--light-grey);
    scrollbar-width: thin;
  }
}
.dropdown::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.dropdown::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.dropdown::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 8px;
}
.dropdown {
  display: none;
  padding: 5px 15px;
  font-family: "Commissioner";
  color: currentColor;
  border-radius: 15px;
  border: 1px solid;
  border-color: var(--white);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transform: translate(0, 0);
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .dropdown {
    font-size: 14px;
  }
}
.dropdown.open {
  display: block;
}
.dropdown-wrapper {
  position: relative;
}

.masked {
  mask-image: none;
  transition: 0.25s ease;
}
.masked-right {
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, rgba(0, 0, 0, 0) 100%);
}
.masked-left {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, rgb(0, 0, 0) 100%);
}
.masked-x {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 98%, rgba(0, 0, 0, 0) 100%);
}
.masked-simple {
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-footer {
  align-items: center;
  gap: 20px;
  padding: 40px 95px;
  background-color: rgba(29, 33, 35, 0.8);
  border: none;
  color: var(--white);
}
@media (max-width: 1439.98px) {
  .form-footer {
    padding: 40px 70px;
  }
}
@media (max-width: 1199.98px) {
  .form-footer {
    padding: 40px 50px;
  }
}
@media (max-width: 999.98px) {
  .form-footer {
    padding: 20px;
  }
}
.form-footer .form--content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  width: 100%;
}
.form-footer .form--content button[type=submit] {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.form-footer .form--inputs {
  gap: 10px;
}
.form-footer .form--inputs > * {
  height: unset;
}
.form--inputs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input,
input:not([type=checkbox]),
input:not([type=radio]),
input[type=text].input,
textarea.input,
input[type=text],
input[type=number],
textarea {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .input,
  input:not([type=checkbox]),
  input:not([type=radio]),
  input[type=text].input,
  textarea.input,
  input[type=text],
  input[type=number],
  textarea {
    font-size: 14px;
  }
}
.input,
input:not([type=checkbox]),
input:not([type=radio]),
input[type=text].input,
textarea.input,
input[type=text],
input[type=number],
textarea {
  display: inline;
  width: 100%;
  min-height: 50px;
  height: 100%;
  padding: 5.5px 20px;
  font-family: "Commissioner";
  color: currentColor;
  border-radius: 35px;
  border: none;
  border: 1px solid;
  border-color: var(--grey-blue);
  background-color: var(--white);
  outline: none;
  resize: vertical;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .input,
  input:not([type=checkbox]),
  input:not([type=radio]),
  input[type=text].input,
  textarea.input,
  input[type=text],
  input[type=number],
  textarea {
    min-height: 40px;
    padding: 5.5px 15px;
    font-size: 14px;
  }
}
.input:is(textarea),
input:not([type=checkbox]):is(textarea),
input:not([type=radio]):is(textarea),
input[type=text].input:is(textarea),
textarea.input:is(textarea),
input[type=text]:is(textarea),
input[type=number]:is(textarea),
textarea:is(textarea) {
  border-radius: 20px;
}
.input::placeholder,
input:not([type=checkbox])::placeholder,
input:not([type=radio])::placeholder,
input[type=text].input::placeholder,
textarea.input::placeholder,
input[type=text]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: var(--black-50);
  transition: 0.25s ease-in-out;
}
.input:focus,
input:not([type=checkbox]):focus,
input:not([type=radio]):focus,
input[type=text].input:focus,
textarea.input:focus,
input[type=text]:focus,
input[type=number]:focus,
textarea:focus {
  color: var(--black);
  border-color: var(--main);
}
.input:focus::placeholder,
input:not([type=checkbox]):focus::placeholder,
input:not([type=radio]):focus::placeholder,
input[type=text].input:focus::placeholder,
textarea.input:focus::placeholder,
input[type=text]:focus::placeholder,
input[type=number]:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
  transition: 0.25s ease-in-out;
}
.input:not(:placeholder-shown),
input:not([type=checkbox]):not(:placeholder-shown),
input:not([type=radio]):not(:placeholder-shown),
input[type=text].input:not(:placeholder-shown),
textarea.input:not(:placeholder-shown),
input[type=text]:not(:placeholder-shown),
input[type=number]:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
  color: var(--black);
  border-color: var(--main);
}
.input:user-invalid,
input:not([type=checkbox]):user-invalid,
input:not([type=radio]):user-invalid,
input[type=text].input:user-invalid,
textarea.input:user-invalid,
input[type=text]:user-invalid,
input[type=number]:user-invalid,
textarea:user-invalid {
  border-color: var(--error);
}
.input:user-valid,
input:not([type=checkbox]):user-valid,
input:not([type=radio]):user-valid,
input[type=text].input:user-valid,
textarea.input:user-valid,
input[type=text]:user-valid,
input[type=number]:user-valid,
textarea:user-valid {
  border-color: var(--grey-blue);
}
.input.error, .input::spelling-error,
input:not([type=checkbox]).error,
input:not([type=checkbox])::spelling-error,
input:not([type=radio]).error,
input:not([type=radio])::spelling-error,
input[type=text].input.error,
input[type=text].input::spelling-error,
textarea.input.error,
textarea.input::spelling-error,
input[type=text].error,
input[type=text]::spelling-error,
input[type=number].error,
input[type=number]::spelling-error,
textarea.error,
textarea::spelling-error {
  color: var(--error);
  border-color: var(--error);
}

.input-file {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}
.input-file:is(.light) .file-drop-area {
  color: var(--white);
  border-color: var(--white);
}
.input-file:is(.light) .drag-drop-hint {
  color: var(--black-50);
}
.input-file:not(.light) .file-drop-area {
  color: var(--black-50);
  border-color: var(--black-50);
}
.input-file:not(.light) .drag-drop-hint {
  color: var(--black-50);
}
.input-file:not(.light) .file-item {
  color: var(--black-80);
}
.input-file .file-drop-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  min-height: 5em;
  padding: 5px 20px;
  background-color: transparent;
  border-width: 2px;
  border-style: dashed;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}
.input-file .file-drop-area.drag-over {
  background-color: rgba(255, 121, 20, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-color: var(--main);
}
.input-file .file-drop-area label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: visible;
}
.input-file .file-drop-area label > input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
}
.input-file .file-drop-area label > span {
  font-size: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: dashed;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
}
.input-file .drag-drop-hint {
  font-size: 14px;
}
@media (max-width: 999.98px) {
  .input-file .drag-drop-hint {
    font-size: 12px;
  }
}
@supports (-moz-appearance: none) {
  .input-file .file-list {
    scrollbar-color: var(--black) var(--light-grey);
    scrollbar-width: thin;
  }
}
.input-file .file-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.input-file .file-list::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.input-file .file-list::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 8px;
}
.input-file .file-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 200px;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.input-file .file-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.input-file .file-item > span:not(.remove-file) {
  display: block;
  width: 100%;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.input-file .remove-file {
  position: relative;
  z-index: 3;
  display: flex;
  font-size: 18px;
  line-height: 1.25;
  padding: 6px;
  user-select: none;
  cursor: pointer;
}

.layouts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}
.layouts-2x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-2x > * {
  flex: 1 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: 100%;
}
@media (max-width: 575.98px) {
  .layouts-2x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-2x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.layouts-3x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-3x > * {
  flex: 1 0 calc(33.3333% - 6.6666666667px);
  max-width: calc(33.3333% - 6.6666666667px);
  width: 100%;
}
@media (max-width: 999.98px) {
  .layouts-3x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-3x > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .layouts-3x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-3x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.layouts-4x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-4x > * {
  flex: 1 0 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
  width: 100%;
}
@media (max-width: 1199.98px) {
  .layouts-4x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-4x > * {
    flex: 1 0 calc(33.3333% - 6.6666666667px);
    max-width: calc(33.3333% - 6.6666666667px);
    width: 100%;
  }
}
@media (max-width: 999.98px) {
  .layouts-4x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-4x > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .layouts-4x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-4x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.layouts-5x {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.layouts-5x > * {
  flex: 1 0 calc(20% - 8px);
  max-width: calc(20% - 8px);
  width: 100%;
}
@media (max-width: 1439.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(25% - 7.5px);
    max-width: calc(25% - 7.5px);
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(33.3333% - 6.6666666667px);
    max-width: calc(33.3333% - 6.6666666667px);
    width: 100%;
  }
}
@media (max-width: 999.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .layouts-5x {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .layouts-5x > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}

.link-icon {
  display: inline;
}
.link-icon i {
  display: inline-flex;
  vertical-align: middle;
}

.intrid {
  position: relative;
  width: fit-content;
}
.intrid::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main);
  user-select: none;
  pointer-events: none;
  transition: 0.25s ease-in-out;
  transform: translateY(-50%);
}
.intrid a {
  display: inline-block;
  padding: 6px 14px 6px 32px;
  border-radius: 20px;
  font-family: "Commissioner";
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  background: var(--main);
  color: var(--white) !important;
  text-decoration: none !important;
  -webkit-mask: radial-gradient(circle 10px at 13px 50%, transparent 90%, var(--main) 100%);
  mask: radial-gradient(circle 10px at 13px 50%, transparent 90%, var(--main) 100%);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
.intrid:hover a, .intrid:hover::before {
  background: var(--white);
  color: var(--main) !important;
}

ul,
ol {
  margin-bottom: 1em;
  padding-left: 20px;
}
ul li,
ol li {
  margin-bottom: 0.5em;
}
ul li:last-of-type, ul li:last-child,
ol li:last-of-type,
ol li:last-child {
  margin-bottom: 0;
}
ul > li::marker,
ol > li::marker {
  color: #ff7914;
}

.specs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.specs-char {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}

.list-none {
  padding-left: 0;
  list-style: none;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.pagination-dot {
  background-color: var(--grey-blue);
  border: 1px solid;
  border-color: var(--grey-blue);
}
.pagination-dot:hover:not(:active, .active) {
  background-color: var(--black-50);
  border-color: var(--black-50);
}
.pagination-dot.active, .pagination-dot:active {
  background-color: var(--main);
  border-color: var(--main);
}
.pagination-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.pagination .prev, .pagination .next {
  padding: 0 8px;
  background-color: var(--white);
  color: var(--main);
  border: 1px solid;
  border-color: var(--white);
}
.pagination .prev:hover:not(:active, .active), .pagination .next:hover:not(:active, .active) {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.pagination .prev.active, .pagination .prev:active, .pagination .next.active, .pagination .next:active {
  background-color: rgb(249.5, 107.2319148936, 0);
  color: var(--white);
  border-color: rgb(249.5, 107.2319148936, 0);
}
.pagination .prev, .pagination .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  text-align: center;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.pagination .prev > i, .pagination .next > i {
  display: flex;
}
.pagination-select {
  cursor: pointer;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 719.98px) {
  .breadcrumbs {
    margin-top: 0;
    margin-bottom: 16px;
  }
}
.breadcrumbs > a {
  color: var(--white) !important;
  white-space: nowrap;
}
.breadcrumbs > a:hover {
  text-decoration: none !important;
}
.breadcrumbs > span {
  white-space: nowrap;
}
.breadcrumbs > * {
  pointer-events: all;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .breadcrumbs > * {
    font-size: 14px;
  }
}
.breadcrumbs > * {
  color: var(--white);
}
.breadcrumbs > *:nth-child(even) {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 8px;
  font-size: 12px;
}
@media (max-width: 719.98px) {
  .breadcrumbs > *:nth-child(even) {
    font-size: 10px;
  }
}
.breadcrumbs > *:nth-child(even)::before {
  content: "/";
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --btn-size: 40px;
  --btn-padding-y: 16px;
  --btn-padding-x: 25px;
  --slides-gap: 10px;
}

h1,
.h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}
h2,
.h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h2,
  .h2 {
    font-size: 20px;
  }
}
h2-light,
.h2-light {
  font-weight: 500;
  font-size: 32px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h2-light,
  .h2-light {
    font-size: 20px;
  }
}
h2-light,
.h2-light {
  font-weight: 300;
}
h3,
.h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}
h4,
.h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  h4,
  .h4 {
    font-size: 16px;
  }
}

p,
.p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  p,
  .p {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block-start: 0;
  margin-block-end: 1em;
}

a {
  color: inherit;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
a:hover {
  text-decoration: underline;
}
a:not([class]) {
  color: var(--main);
  text-decoration: underline;
}
a:not([class]):hover {
  text-decoration: none;
}
a:not([class]) > i {
  margin-right: 4px;
  vertical-align: middle;
}

.small,
small {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .small,
  small {
    font-size: 12px;
  }
}

.strong,
strong,
.b,
b {
  font-weight: 700;
}

.t1 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t1 {
    font-size: 14px;
  }
}
.t1-bold {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t1-bold {
    font-size: 14px;
  }
}
.t1-bold {
  font-weight: 700;
}
.t2 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  .t2 {
    font-size: 12px;
  }
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}
.fw-light {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}

.text-white {
  color: #ffffff;
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-light-grey {
  color: #f2f3f6;
}
.text-grey-blue {
  color: #c9cfd4;
}
.text-main {
  color: #ff7914;
}
.text-black {
  color: #1d2123;
}
.text-black-80 {
  color: rgba(29, 33, 35, 0.8);
}
.text-black-50 {
  color: rgba(29, 33, 35, 0.5019607843);
}
.text-green {
  color: #4fac7f;
}
.text-error {
  color: #b94141;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-underline {
  text-decoration: underline;
}
.text-underline:is(a):hover {
  text-decoration: none;
}
.text-nowrap {
  white-space: nowrap;
}
.text-decoration-none {
  text-decoration: none !important;
}
@media (max-width: 1599.98px) {
  .text-xxxl-left {
    text-align: left;
  }
  .text-xxxl-right {
    text-align: right;
  }
  .text-xxxl-center {
    text-align: center;
  }
  .text-xxxl-uppercase {
    text-transform: uppercase;
  }
  .text-xxxl-lowercase {
    text-transform: lowercase;
  }
  .text-xxxl-underline {
    text-decoration: underline;
  }
  .text-xxxl-underline:is(a):hover {
    text-decoration: none;
  }
  .text-xxxl-nowrap {
    white-space: nowrap;
  }
  .text-xxxl-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 1439.98px) {
  .text-xxl-left {
    text-align: left;
  }
  .text-xxl-right {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-uppercase {
    text-transform: uppercase;
  }
  .text-xxl-lowercase {
    text-transform: lowercase;
  }
  .text-xxl-underline {
    text-decoration: underline;
  }
  .text-xxl-underline:is(a):hover {
    text-decoration: none;
  }
  .text-xxl-nowrap {
    white-space: nowrap;
  }
  .text-xxl-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 1279.98px) {
  .text-1280-left {
    text-align: left;
  }
  .text-1280-right {
    text-align: right;
  }
  .text-1280-center {
    text-align: center;
  }
  .text-1280-uppercase {
    text-transform: uppercase;
  }
  .text-1280-lowercase {
    text-transform: lowercase;
  }
  .text-1280-underline {
    text-decoration: underline;
  }
  .text-1280-underline:is(a):hover {
    text-decoration: none;
  }
  .text-1280-nowrap {
    white-space: nowrap;
  }
  .text-1280-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 1199.98px) {
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-uppercase {
    text-transform: uppercase;
  }
  .text-xl-lowercase {
    text-transform: lowercase;
  }
  .text-xl-underline {
    text-decoration: underline;
  }
  .text-xl-underline:is(a):hover {
    text-decoration: none;
  }
  .text-xl-nowrap {
    white-space: nowrap;
  }
  .text-xl-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 999.98px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-uppercase {
    text-transform: uppercase;
  }
  .text-lg-lowercase {
    text-transform: lowercase;
  }
  .text-lg-underline {
    text-decoration: underline;
  }
  .text-lg-underline:is(a):hover {
    text-decoration: none;
  }
  .text-lg-nowrap {
    white-space: nowrap;
  }
  .text-lg-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 719.98px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-uppercase {
    text-transform: uppercase;
  }
  .text-md-lowercase {
    text-transform: lowercase;
  }
  .text-md-underline {
    text-decoration: underline;
  }
  .text-md-underline:is(a):hover {
    text-decoration: none;
  }
  .text-md-nowrap {
    white-space: nowrap;
  }
  .text-md-decoration-none {
    text-decoration: none !important;
  }
}
@media (max-width: 575.98px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-uppercase {
    text-transform: uppercase;
  }
  .text-sm-lowercase {
    text-transform: lowercase;
  }
  .text-sm-underline {
    text-decoration: underline;
  }
  .text-sm-underline:is(a):hover {
    text-decoration: none;
  }
  .text-sm-nowrap {
    white-space: nowrap;
  }
  .text-sm-decoration-none {
    text-decoration: none !important;
  }
}

.wrapper-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.wrapper-image picture img, .wrapper-image picture source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrapper-image .badge {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 320px;
  border-radius: 15px;
  white-space: normal;
}
@media (max-width: 999.98px) {
  .wrapper-image .badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.wrapper-image .badge > img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}
.wrapper-image .badge i {
  color: var(--main);
  font-size: 56px;
}
@media (max-width: 999.98px) {
  .wrapper-image .badge i {
    font-size: 40px;
  }
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 50px 0 30px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
@media (max-width: 1439.98px) {
  .footer-top {
    padding: 30px 0;
  }
}
@media (max-width: 999.98px) {
  .footer-top {
    padding: 20px 0;
  }
}
.footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 33, 35, 0.5);
}
.footer-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-color: #faf8f6;
  background-image: url("./../../assets/images/map.webp");
  background-size: 2000px;
  background-position: center 60%;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 1439.98px) {
  .footer-top::after {
    background-size: 1300px;
    background-position: center 0%;
  }
}
@media (max-width: 1199.98px) {
  .footer-top::after {
    background-size: 1500px;
    background-position: 70% 75%;
  }
}
@media (max-width: 999.98px) {
  .footer-top::after {
    background-image: url("./../../assets/images/map-min.webp");
    background-size: cover;
    background-position: bottom center;
  }
}
.footer-callback {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 999.98px) {
  .footer-callback {
    flex-direction: column;
    align-items: stretch;
  }
}
.footer-callback > .form-footer {
  max-width: 795px;
  flex: 1 0 calc(50% - 10px);
}
@media (max-width: 1439.98px) {
  .footer-callback > .form-footer {
    max-width: 620px;
  }
}
@media (max-width: 1199.98px) {
  .footer-callback > .form-footer {
    max-width: 510px;
  }
}
@media (max-width: 999.98px) {
  .footer-callback > .form-footer {
    align-self: center;
  }
}
.footer-pinned {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin: auto;
}
@media (max-width: 999.98px) {
  .footer-pinned {
    margin: 100px auto;
  }
}
@media (min-width: 1000px) and (max-width: 1199.98px) {
  .footer-pinned {
    top: 30px;
  }
}
.footer-pinned > svg {
  width: 44px;
  height: 54px;
  object-fit: contain;
}
.footer-pinned > .contacts {
  color: var(--white);
}
.footer-pinned > .contacts .contacts-block {
  font-weight: 500;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .footer-pinned > .contacts .contacts-block {
    font-size: 18px;
  }
}
.footer-pinned > .contacts .contacts-block {
  gap: 20px;
}
@media (max-width: 999.98px) {
  .footer-pinned > .contacts .contacts-block {
    gap: 10px;
  }
}
.footer-pinned > .contacts .contacts-block > a:first-child {
  max-width: 265px;
}
@media (max-width: 999.98px) {
  .footer-pinned > .contacts .contacts-block > a:first-child {
    max-width: 200px;
  }
}
.footer-pinned > .contacts .divider {
  height: 1px;
}
.footer-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  touch-action: none;
}
.footer-bottom {
  padding: 58px 0;
  background-color: var(--black);
  color: var(--white);
}
.footer-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 999.98px) {
  .footer-inner {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px 10px;
  }
}
@media (max-width: 575.98px) {
  .footer-inner {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
}
@media (max-width: 999.98px) {
  .footer-logo {
    justify-content: flex-start;
    width: 100%;
  }
}
.footer-logo > a {
  text-decoration: none !important;
}
@media (max-width: 1199.98px) {
  .footer-logo > span {
    display: none;
  }
}
@media (max-width: 999.98px) {
  .footer-logo > span {
    display: block;
  }
}
.footer-menu, .footer-categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin: 0 auto;
}
@media (max-width: 999.98px) {
  .footer-menu, .footer-categories {
    margin: 0;
  }
}
.footer-menu > a, .footer-categories > a {
  color: var(--white);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
  flex: 1;
}
@media (max-width: 575.98px) {
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin: 0 auto;
}
@media (max-width: 999.98px) {
  .footer-contacts {
    flex: 1 0 auto;
    width: 100%;
    margin: 0;
  }
}
.footer-contacts .contacts-block {
  gap: 15px;
}
@media (max-width: 719.98px) {
  .footer-contacts .contacts-block {
    gap: 10px;
  }
}
@media (max-width: 719.98px) {
  .footer-contacts .contacts-block > a > i {
    color: var(--main);
  }
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media (max-width: 719.98px) {
  .footer-social {
    flex: 0 0 calc(50% - 10px);
    gap: 20px;
    margin: 0;
  }
}
.footer-social > * {
  font-weight: 500;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .footer-social > * {
    font-size: 18px;
  }
}
.footer-social > * {
  transition: 0.25s ease-in-out;
}
.footer-social > *:hover {
  color: var(--main);
}
@media (max-width: 575.98px) {
  .footer .intrid {
    margin-left: auto;
    margin-right: auto;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 10px;
  padding: 10px 0;
  color: var(--white);
  background-color: transparent;
  transition: 0.25s ease-in-out;
}
@media (max-width: 999.98px) {
  .header {
    margin-top: unset;
    padding: 10px 0;
  }
}
.header.scrolled {
  padding: 10px 0;
  background-color: var(--black-80);
  backdrop-filter: blur(2px);
}
.header-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  height: 50px;
}
@media (max-width: 1599.98px) {
  .header-inner {
    gap: 30px;
  }
}
@media (max-width: 1439.98px) {
  .header-inner {
    gap: 20px;
  }
}
@media (max-width: 1199.98px) {
  .header-inner {
    gap: 10px;
  }
}
.header-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}
.header-logo > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.header-contacts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  margin: 0 50px 0 auto;
}
@media (max-width: 1599.98px) {
  .header-contacts {
    gap: 20px;
  }
}
@media (max-width: 1439.98px) {
  .header-contacts {
    gap: 10px;
  }
}
@media (max-width: 1199.98px) {
  .header-contacts {
    gap: 5px;
    margin: 0 auto;
  }
}
@media (max-width: 999.98px) {
  .header-contacts {
    flex-direction: column;
    gap: 15px;
    margin: 0;
  }
}
.header-contacts .contacts-block {
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1439.98px) {
  .header-contacts .contacts-block {
    gap: 10px;
  }
}
@media (max-width: 1199.98px) {
  .header-contacts .contacts-block {
    gap: 5px;
  }
}
@media (max-width: 999.98px) {
  .header-contacts .contacts-block {
    gap: 15px;
  }
}
@media (min-width: 1000px) {
  .header-contacts .contacts-block > a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    color: var(--white);
    line-height: 1;
    font-weight: 700;
    font-family: "Commissioner";
    text-align: center;
    text-decoration: none !important;
    vertical-align: middle;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    text-transform: none;
    border-radius: 100px;
    border: 1px solid;
    border-color: var(--main);
    background-color: var(--main);
    white-space: nowrap;
    transition: 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1d2123;
    border-color: #ffffff;
    background-color: #ffffff;
    --btn-padding-y: 0;
    --btn-padding-x: 0;
    width: var(--btn-size);
    height: var(--btn-size);
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .header-contacts .contacts-block > a {
    font-size: 14px;
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .header-contacts .contacts-block > a {
    --btn-padding-y: 14.5px;
    --btn-padding-x: 24px;
  }
}
@media (min-width: 1000px) {
  .header-contacts .contacts-block > a:hover, .header-contacts .contacts-block > a.hover {
    background-color: rgb(255, 135.5404255319, 45.5);
    border-color: rgb(255, 135.5404255319, 45.5);
    color: var(--white);
  }
  .header-contacts .contacts-block > a:focus:active, .header-contacts .contacts-block > a.focus, .header-contacts .contacts-block > a.active {
    background-color: rgb(249.5, 107.2319148936, 0);
    border-color: rgb(249.5, 107.2319148936, 0);
    color: var(--white);
  }
  .header-contacts .contacts-block > a.disabled, .header-contacts .contacts-block > a:disabled {
    background-color: var(--grey-blue);
    color: var(--white);
    border-color: var(--grey-blue);
    box-shadow: none;
    opacity: 0.35;
    cursor: not-allowed;
  }
  .header-contacts .contacts-block > a.disabled:hover, .header-contacts .contacts-block > a.disabled.hover, .header-contacts .contacts-block > a.disabled:focus:active, .header-contacts .contacts-block > a.disabled:focus, .header-contacts .contacts-block > a.disabled.focus, .header-contacts .contacts-block > a.disabled.active, .header-contacts .contacts-block > a:disabled:hover, .header-contacts .contacts-block > a:disabled.hover, .header-contacts .contacts-block > a:disabled:focus:active, .header-contacts .contacts-block > a:disabled:focus, .header-contacts .contacts-block > a:disabled.focus, .header-contacts .contacts-block > a:disabled.active {
    background-color: var(--grey-blue);
    color: var(--white);
    border-color: var(--grey-blue);
  }
  .header-contacts .contacts-block > a.hidden, .header-contacts .contacts-block > a:hidden {
    display: none;
  }
  .header-contacts .contacts-block > a > i, .header-contacts .contacts-block > a > svg {
    vertical-align: text-bottom;
    transition: 0.25s ease-in-out;
  }
  .header-contacts .contacts-block > a.aspected {
    --btn-padding-x: 5px;
    --btn-padding-y: 5px;
    --btn-padding-x: var(--btn-padding-y);
    width: var(--btn-size);
    height: var(--btn-size);
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .header-contacts .contacts-block > a {
    gap: 5px;
  }
}
@media (min-width: 1000px) {
  .header-contacts .contacts-block > a > svg, .header-contacts .contacts-block > a > image, .header-contacts .contacts-block > a > img, .header-contacts .contacts-block > a > object, .header-contacts .contacts-block > a > i {
    display: flex;
    align-self: center;
    justify-content: center;
    width: fit-content;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    vertical-align: middle;
  }
  .header-contacts .contacts-block > a > svg * {
    fill: currentColor;
  }
  .header-contacts .contacts-block > a.hover, .header-contacts .contacts-block > a:hover {
    color: #ffffff;
    border-color: #ff7914;
    background-color: #ff7914;
  }
  .header-contacts .contacts-block > a:focus:active, .header-contacts .contacts-block > a.focus, .header-contacts .contacts-block > a.active {
    color: #ffffff;
    border-color: #1d2123;
    background-color: #1d2123;
  }
  .header-contacts .contacts-block > a i {
    margin-top: unset;
  }
}
@media (min-width: 1000px) and (max-width: 1099.98px) {
  .header-contacts .contacts-block > a {
    --btn-size: 30px;
    font-size: small;
  }
}
.header-contacts .contacts-block > a:not(.btn) i, .header-contacts .contacts-block > a:not(button) i {
  margin-top: unset !important;
}
@media (min-width: 1000px) {
  .header-contacts .contacts-block > a > span {
    display: none;
  }
}
@media (min-width: 1280px) {
  .header-contacts .contacts-block--phones {
    flex-direction: column;
    gap: 5px;
    margin-right: 10px;
  }
}
@media (min-width: 1440px) {
  .header-contacts .contacts-block--phones {
    margin-right: 20px;
  }
}
@media (min-width: 1280px) {
  .header-contacts .contacts-block--phones > a {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    font-weight: 400;
    color: var(--white);
  }
  .header-contacts .contacts-block--phones > a i {
    display: none;
  }
  .header-contacts .contacts-block--phones > a > span {
    display: inline;
  }
  .header-contacts .contacts-block--phones > a:hover, .header-contacts .contacts-block--phones > a:focus, .header-contacts .contacts-block--phones > a:active {
    color: var(--main);
    background: transparent;
    border: none;
  }
}
@media (min-width: 1000px) and (max-width: 1279.98px) {
  .header-contacts .contacts-block--phones > a:nth-child(2) {
    display: none;
  }
}
@media (max-width: 1599.98px) {
  .header-actions {
    margin-left: 0;
  }
}
@media (max-width: 999.98px) {
  .header-actions {
    width: 100%;
  }
}
.header .btn-burger {
  flex: 0 0 var(--btn-size);
}
@media (min-width: 1000px) {
  .header .btn-burger {
    display: none;
  }
}
@media (max-width: 999.98px) {
  .header .btn-burger {
    margin-left: auto;
  }
}

.menu {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media (max-width: 1599.98px) {
  .menu {
    gap: 20px;
  }
}
@media (max-width: 1439.98px) {
  .menu {
    gap: 10px;
  }
}
@media (max-width: 1099.98px) {
  .menu {
    gap: 0;
  }
}
@media (max-width: 999.98px) {
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 90px 30px 30px;
    border-radius: 15px 0 0 15px;
    background-color: var(--black);
    box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.1);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translate3d(100%, 0, 1px);
    transition: 0.4s ease;
    will-change: transform;
  }
}
@media (max-width: 575.98px) {
  .menu {
    max-width: 100%;
    padding: 90px 10px 30px;
    border-radius: 0;
  }
}
@media (max-width: 999.98px) {
  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 1px);
  }
}
@media (max-width: 999.98px) {
  .menu-is-open {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .menu-is-open::before {
    opacity: 1;
    visibility: visible;
  }
  .menu-is-open .header {
    backdrop-filter: unset;
  }
  .menu-is-open .header-logo {
    z-index: 1001;
  }
}
.menu-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.menu-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 999.98px) {
  .menu-list {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 10px;
  }
}
.menu-list li {
  color: var(--white);
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
.menu-list li > a {
  color: currentColor;
  text-decoration: none;
}
.menu-list li:hover {
  color: var(--main);
}
.menu-list li:hover > a {
  color: var(--main);
  text-decoration: underline;
}
.menu-list > li {
  margin: 0;
}
@media (min-width: 1000px) {
  .menu-list > li {
    padding: 10px 20px;
  }
}
@media (max-width: 1439.98px) {
  .menu-list > li {
    padding: 10px;
  }
}
@media (max-width: 999.98px) {
  .menu-list > li {
    padding: 0;
  }
}
.menu-list > li > a {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .menu-list > li > a {
    padding: 10px 0;
  }
}
.menu-dropdown {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
}
@media (min-width: 1000px) {
  .menu-dropdown {
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width: 999.98px) {
  .menu-dropdown {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 10px;
  }
}
.menu-dropdown > ul {
  position: absolute;
  top: 40px;
  left: 0;
  max-width: 360px;
  min-width: 300px;
  width: fit-content;
  min-height: 0px;
  max-height: 0px;
  padding: 20px;
  border-radius: 0 10px 10px 10px;
  background-color: var(--black);
  list-style: none;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1439.98px) {
  .menu-dropdown > ul {
    padding: 10px;
  }
}
@media (max-width: 999.98px) {
  .menu-dropdown > ul {
    position: relative;
    top: unset;
    left: unset;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    flex: 1;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 999.98px) {
  .menu-dropdown > ul > li {
    margin: 0;
    padding: 10px 0;
  }
}
.menu-dropdown input[type=checkbox] {
  display: none;
}
.menu-dropdown input[type=checkbox] + label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  padding: 5px;
  color: currentColor;
}
@media (min-width: 1000px) {
  .menu-dropdown input[type=checkbox] + label {
    margin-top: 0;
    font-size: small;
    pointer-events: none;
    user-select: none;
  }
}
.menu-dropdown input[type=checkbox] + label i {
  display: flex;
  transform-origin: center;
  transform: rotate(0deg);
  transition: 0.4s ease;
}
.menu-dropdown input[type=checkbox] + label::before, .menu-dropdown input[type=checkbox] + label::after {
  display: none;
}
.menu-dropdown input[type=checkbox]:checked + label i {
  transform: rotate(180deg);
}
.menu-dropdown input[type=checkbox]:checked ~ ul {
  max-height: 1000px;
  padding: 10px 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
@media (min-width: 1000px) {
  .menu-dropdown:hover {
    background-color: var(--black);
    color: var(--main);
  }
  .menu-dropdown:hover input[type=checkbox] + label i {
    transform: rotate(180deg);
  }
}
.menu-dropdown:hover > a {
  text-decoration: underline;
}
@media (min-width: 1000px) {
  .menu-dropdown:hover > ul {
    min-height: 100%;
    max-height: 1000px;
    visibility: visible;
    opacity: 1;
  }
}

@supports (-moz-appearance: none) {
  .modal {
    scrollbar-color: var(--black) var(--light-grey);
    scrollbar-width: thin;
  }
}
.modal::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.modal::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
.modal::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 8px;
}
.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, background-color 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, filter 0.4s ease-in-out;
  will-change: transform, opacity;
}
@media (max-width: 999.98px) {
  .modal {
    padding: 10px;
  }
}
.modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal.show .modal-dialog {
  transform: scale(1) translateY(0%);
}
.modal-open {
  position: static;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  touch-action: none;
  overflow: hidden;
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 738px;
  height: auto;
  margin: auto;
  padding: 35px;
  border-radius: 30px;
  color: var(--black);
  background-color: var(--light-grey);
  transform: scale(0.75) translateY(25%);
  transition: 0.4s ease;
  will-change: transform;
}
@media (max-width: 719.98px) {
  .modal-dialog {
    padding: 15px;
    border-radius: 15px;
  }
}
.modal-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 15px;
}
@media (max-width: 999.98px) {
  .modal-content {
    gap: 10px;
  }
}
.modal .btn-close {
  align-self: flex-start;
  z-index: 10;
  margin-left: auto;
  transform: translate(0, 0);
  color: #ff7914;
  border-color: #ff7914;
  background-color: transparent;
}
.modal .btn-close.hover, .modal .btn-close:hover {
  color: #ffffff;
  border-color: #ff7914;
  background-color: #ff7914;
}
.modal .btn-close:focus:active, .modal .btn-close.focus, .modal .btn-close.active {
  background-color: rgb(249.5, 107.2319148936, 0);
  border-color: rgb(249.5, 107.2319148936, 0);
  color: #ffffff;
}
@media (max-width: 999.98px) {
  .modal .btn-close {
    --btn-size: 35px;
  }
}
.modal .btn-close i {
  display: flex;
}
.modal-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 115%;
}
@media (max-width: 999.98px) {
  .modal-title {
    font-size: 18px;
  }
}
.modal-title {
  margin: 0;
  text-align: left;
}
.modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}
.modal-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.modal-footer > * {
  flex: 1;
}
.modal-wider .modal-dialog {
  max-width: 900px;
}
.modal-notify .modal-dialog {
  max-width: 320px;
  padding: 15px;
}
.modal-min .modal-dialog {
  max-width: 500px;
}

.slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  height: 100%;
  margin: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.slider[data-orientation=vertical] .slides {
  flex-direction: column;
}
.slider[data-orientation=vertical] .slide {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: var(--slides-gap);
}
.slider[data-orientation=vertical] .slide:last-of-type {
  margin-bottom: 0;
}
.slider .slides {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  touch-action: pan-y;
  transition-property: transform;
  transition: transform 0.3s ease;
  will-change: transform;
  overflow: visible;
}
.slider .slides[data-orientation=horizontal] {
  touch-action: pan-y;
}
.slider .slides[data-orientation=vertical] {
  touch-action: pan-x;
}
.slider .slides .glightbox {
  pointer-events: all;
}
.slider .slides.isDragging {
  cursor: grabbing;
  touch-action: none;
  transition: none;
}
.slider .slides.isDragging * {
  cursor: grabbing;
}
.slider .slides.isDragging .glightbox {
  pointer-events: none;
}
.slider .slide {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
  margin-right: var(--slides-gap);
  display: flex;
  border-radius: 4px;
  user-select: none;
}
.slider .slide > .card {
  height: 100%;
}
.slider .slide:last-of-type {
  margin-right: 0;
}
.slider .slide.active {
  position: relative;
}
.slider .slide > picture {
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.slider .slide > picture > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-button {
  padding: 0 8px;
  background-color: var(--white);
  color: var(--main);
  border: 1px solid;
  border-color: var(--white);
}
.slider-button:hover:not(:active, .active) {
  background-color: var(--main);
  color: var(--white);
  border-color: var(--main);
}
.slider-button.active, .slider-button:active {
  background-color: rgb(249.5, 107.2319148936, 0);
  color: var(--white);
  border-color: rgb(249.5, 107.2319148936, 0);
}
.slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  text-align: center;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.slider-button > i {
  display: flex;
}
.slider .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.slider .navigation.isMain .slider-button, .slider .navigation.isPartners .slider-button {
  color: #ffffff;
  border-color: #ff7914;
  background-color: #ff7914;
}
.slider .navigation.isMain .slider-button.hover, .slider .navigation.isMain .slider-button:hover, .slider .navigation.isPartners .slider-button.hover, .slider .navigation.isPartners .slider-button:hover {
  color: #ffffff;
  border-color: rgb(255, 135.5404255319, 45.5);
  background-color: rgb(255, 135.5404255319, 45.5);
}
.slider .navigation.isMain .slider-button:focus:active, .slider .navigation.isMain .slider-button.focus, .slider .navigation.isMain .slider-button.active, .slider .navigation.isPartners .slider-button:focus:active, .slider .navigation.isPartners .slider-button.focus, .slider .navigation.isPartners .slider-button.active {
  background-color: rgb(249.5, 107.2319148936, 0);
  border-color: rgb(249.5, 107.2319148936, 0);
  color: #ffffff;
}
@media (max-width: 575.98px) {
  .slider .navigation.isMain .slider-button, .slider .navigation.isPartners .slider-button {
    color: #ff7914;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  .slider .navigation.isMain .slider-button.hover, .slider .navigation.isMain .slider-button:hover, .slider .navigation.isPartners .slider-button.hover, .slider .navigation.isPartners .slider-button:hover {
    color: #ffffff;
    border-color: #ff7914;
    background-color: #ff7914;
  }
  .slider .navigation.isMain .slider-button:focus:active, .slider .navigation.isMain .slider-button.focus, .slider .navigation.isMain .slider-button.active, .slider .navigation.isPartners .slider-button:focus:active, .slider .navigation.isPartners .slider-button.focus, .slider .navigation.isPartners .slider-button.active {
    color: #ffffff;
    border-color: #1d2123;
    background-color: #1d2123;
  }
}
.slider .scrollbar {
  position: relative;
  height: 3px;
  background: var(--light-grey);
  border-radius: 8px;
  pointer-events: none;
  overflow: hidden;
}
.slider .scrollbar-thumb {
  position: absolute;
  min-width: 180px;
  height: 100%;
  background: var(--main);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.slider-block {
  position: relative;
  overflow: hidden;
}
.slider-block-centered .slider-button.prev, .slider-block-centered .slider-button.next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translate(0, -50%);
}
.slider-block-centered .slider-button.prev {
  left: 20px;
}
@media (max-width: 999.98px) {
  .slider-block-centered .slider-button.prev {
    left: 10px;
  }
}
.slider-block-centered .slider-button.next {
  right: 20px;
}
@media (max-width: 999.98px) {
  .slider-block-centered .slider-button.next {
    right: 10px;
  }
}
@media (min-width: 1000px) {
  .slider-block-centered.nav-centered {
    overflow: visible;
  }
  .slider-block-centered.nav-centered .masked {
    max-width: calc(100% - 40px);
    margin-left: 20px;
  }
  .slider-block-centered.nav-centered .navigation {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: 0;
    margin-top: -21.5px;
    transform: unset;
  }
  .slider-block-centered.nav-centered .slider-button {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translate(0, calc(-50% + 21.5px));
  }
  .slider-block-centered.nav-centered .slider-button.prev {
    left: -20px;
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .slider-block-centered.nav-centered .slider-button.prev {
    left: 0;
  }
}
@media (min-width: 1000px) {
  .slider-block-centered.nav-centered .slider-button.next {
    right: -20px;
  }
}
@media (min-width: 1000px) and (max-width: 999.98px) {
  .slider-block-centered.nav-centered .slider-button.next {
    right: 0;
  }
}
@media (min-width: 1000px) {
  .slider-block-centered.nav-centered .masked {
    max-width: unset;
    margin-left: unset;
  }
}
.slider-block-top .navigation {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(2.5%);
}
@media (max-width: 999.98px) {
  .slider-block-top .navigation {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    justify-content: center;
    transform: none;
  }
}
@media (min-width: 1440px) {
  .slider-block-top.nav-centered {
    overflow: visible;
  }
  .slider-block-top.nav-centered .masked {
    max-width: calc(100% - 40px);
    margin-left: 20px;
  }
  .slider-block-top.nav-centered .navigation {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: 0;
    margin-top: 20px;
    transform: unset;
  }
  .slider-block-top.nav-centered .slider-button {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translate(0, calc(-50% + 21.5px));
  }
  .slider-block-top.nav-centered .slider-button.prev {
    left: -20px;
  }
}
@media (min-width: 1440px) and (max-width: 999.98px) {
  .slider-block-top.nav-centered .slider-button.prev {
    left: 0;
  }
}
@media (min-width: 1440px) {
  .slider-block-top.nav-centered .slider-button.next {
    right: -20px;
  }
}
@media (min-width: 1440px) and (max-width: 999.98px) {
  .slider-block-top.nav-centered .slider-button.next {
    right: 0;
  }
}
@media (min-width: 1000px) {
  .slider-block-top.nav-centered .masked {
    max-width: unset;
    margin-left: unset;
  }
}
.slider-block-cover .slider {
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .slider-block-cover .slider {
    min-height: 375px;
  }
}
.slider-block-cover .slider:is([data-thumbnail-slider-id])::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(43, 47, 53, 0) 0%, #2b2f35 100%);
  pointer-events: none;
  user-select: none;
}
.slider-block-cover .slider .slides {
  z-index: 1;
}
@media (max-width: 575.98px) {
  .slider-block-cover .slider .slides {
    flex: 1;
  }
}
.slider-block-cover .slider .slides .slide > a {
  width: 100%;
  height: 100%;
}
.slider-block-cover .slider .slides .slide > a img, .slider-block-cover .slider .slides .slide > a picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-block-thumbnail .slide {
  box-shadow: 0 0 0 1px var(--white);
  border-radius: 5px;
  aspect-ratio: 16/9;
  transition: 0.25s ease-in-out;
}
.slider-block-thumbnail .slide:hover {
  box-shadow: 0 0 0 3px var(--white);
}
.slider-block-thumbnail .slide.active {
  box-shadow: 0 0 0 3px var(--main);
}
.slider-block-thumbnail .slide > a {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.slider-block-thumbnail .slide > a img, .slider-block-thumbnail .slide > a picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-block-mini .slider .slides .slide > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.slider-block-mini .slider-button {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 999.98px) {
  .slider-block-mini .slider-button {
    --btn-size: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(0);
  }
}
.slider-block-mini .slider-button.prev {
  left: 5px;
}
@media (max-width: 999.98px) {
  .slider-block-mini .slider-button.prev {
    left: auto;
    right: 40px;
  }
}
.slider-block-mini .slider-button.next {
  right: 10px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
}
@supports (-moz-appearance: none) {
  html {
    scrollbar-color: var(--black) var(--light-grey);
    scrollbar-width: thin;
  }
}
html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
html::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 8px;
}
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Commissioner";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
@media (max-width: 999.98px) {
  body {
    font-size: 14px;
  }
}
body {
  background-color: var(--light-grey);
  color: var(--black);
  overflow-x: clip;
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@supports (-moz-appearance: none) {
  body {
    scrollbar-color: var(--black) var(--light-grey);
    scrollbar-width: thin;
  }
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--light-grey);
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 8px;
}

main {
  min-height: 40vh;
  min-height: 40svh;
  flex: 1;
}
main > section:first-of-type {
  padding-top: 0;
}
main > section:is(.hero) {
  margin-top: -140px;
  padding-top: 140px;
  margin-bottom: 50px;
  padding-bottom: 40px;
}
@media (max-width: 1199.98px) {
  main > section:is(.hero) {
    margin-bottom: 40px;
  }
}
@media (max-width: 999.98px) {
  main > section:is(.hero) {
    margin-bottom: 30px;
  }
}
main > section:is(.hero):not(.slim, .expanded) {
  margin-bottom: 100px;
}
@media (max-width: 1199.98px) {
  main > section:is(.hero):not(.slim, .expanded) {
    margin-bottom: 80px;
  }
}
@media (max-width: 999.98px) {
  main > section:is(.hero):not(.slim, .expanded) {
    margin-bottom: 60px;
  }
}
main > section:not(:first-of-type) {
  padding-top: 0;
}

section {
  position: relative;
  z-index: 1;
  display: block;
  padding: 100px 0;
}
@media (max-width: 1199.98px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 719.98px) {
  section {
    padding: 60px 0;
  }
}

.hero {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
@media (min-width: 1000px) {
  .hero {
    min-height: 750px;
  }
}
@media (min-width: 1440px) {
  .hero {
    min-height: 800px;
  }
}
.hero.slim {
  min-height: 100% !important;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .hero.slim {
    border-radius: 0 0 15px 15px;
  }
}
.hero.expanded {
  min-height: 100% !important;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .hero.expanded {
    border-radius: 0 0 15px 15px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0 0 30px 30px;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
@media (max-width: 999.98px) {
  .hero::after {
    border-radius: 0 0 15px 15px;
  }
}
.hero-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.hero-header > .dropdown-wrapper {
  margin-left: auto;
}
.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 70px;
}
@media (max-width: 1439.98px) {
  .hero-inner {
    gap: 50px;
  }
}
@media (max-width: 1199.98px) {
  .hero-inner {
    gap: 50px;
  }
}
@media (max-width: 999.98px) {
  .hero-inner {
    flex-direction: column;
    gap: 25px;
  }
}
.hero-inner .about-slider .slider-block-cover .slider .slides .slide > a img {
  object-position: bottom center;
}
.hero-main {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  flex: 1;
}
.hero-main h1 {
  margin-block-end: 0.5em;
}
.hero-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  width: 650px;
}
@media (max-width: 1439.98px) {
  .hero-primary {
    width: 360px;
  }
}
@media (max-width: 999.98px) {
  .hero-primary {
    width: 100%;
  }
}
.hero-primary .about-slider {
  width: 100%;
}
@media (min-width: 1000px) {
  .hero-primary .about-slider {
    max-height: 450px;
    flex: 1;
  }
}
.hero-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 90px;
  max-width: 1150px;
}
@media (max-width: 1439.98px) {
  .hero-block {
    gap: 55px;
  }
}
@media (max-width: 999.98px) {
  .hero-block {
    gap: 45px;
  }
}
@media (max-width: 575.98px) {
  .hero-block {
    gap: 60px;
  }
}
@media (max-width: 575.98px) {
  .hero-block .hero-title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-block .hero-title h1 {
  margin: 0;
}
@media (min-width: 576px) {
  .hero-block .hero-title h1 {
    align-self: center;
  }
}
.hero-title {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .hero-title {
    gap: 20px;
  }
}
@media (max-width: 999.98px) {
  .hero-title {
    gap: 10px;
  }
}
.hero-title > span {
  font-weight: 700;
  font-size: 128px;
  line-height: 100%;
}
@media (min-width: 576px) {
  .hero-title > span {
    align-self: center;
  }
}
@media (max-width: 999.98px) {
  .hero-title > span {
    font-size: 64px;
  }
}
.hero-title > .divider {
  width: 5px;
  height: 100%;
}
@media (max-width: 999.98px) {
  .hero-title > .divider {
    width: 2px;
  }
}
@media (min-width: 576px) {
  .hero-title > .divider {
    flex: 0 0 5px;
    height: unset;
  }
}
@media (max-width: 575.98px) {
  .hero-title > .divider {
    width: 100%;
    height: 5px;
    max-width: 60%;
  }
}
@media (max-width: 575.98px) and (max-width: 999.98px) {
  .hero-title > .divider {
    height: 2px;
  }
}
.hero-description {
  position: relative;
  max-height: none;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hero-description.truncated {
  max-height: var(--max-height);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.hero .more-text {
  display: block;
  width: fit-content;
  color: var(--main);
  text-decoration: underline;
}
.hero .more-text:hover {
  text-decoration: none;
}
.hero .more-text.hidden {
  display: none;
}
.hero-location {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}
.hero-slider {
  max-width: 900px;
  width: 100%;
}
@media (max-width: 1439.98px) {
  .hero-slider {
    max-width: 670px;
  }
}
@media (max-width: 999.98px) {
  .hero-slider {
    max-width: 500px;
  }
}
.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 999.98px) {
  .hero-actions {
    gap: 10px;
  }
}
@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }
}
.hero-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, 10%);
}
@media (max-width: 999.98px) {
  .hero-wrapper {
    display: none;
  }
}
.hero-animation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 35px;
  width: 450px;
  height: 450px;
  aspect-ratio: 1/1;
  animation: spin 1.65s 0.25s ease forwards;
  transform: rotate(0deg);
}
@media (max-width: 1439.98px) {
  .hero-animation {
    width: 250px;
    height: 260px;
    gap: 25px 20px;
  }
}
.hero-animation > * {
  position: relative;
  aspect-ratio: 1/1;
  transform: translateZ(0);
}
.hero-animation > *:nth-child(1) {
  --pos-x: 127%;
  --pos-y: 127%;
  grid-area: 1/1/2/2;
}
.hero-animation > *:nth-child(2) {
  --pos-x: 127%;
  --pos-y: 0%;
  grid-area: 2/1/3/2;
}
.hero-animation > *:nth-child(3) {
  --pos-x: 127%;
  --pos-y: -127%;
  grid-area: 3/1/4/2;
}
.hero-animation > *:nth-child(4) {
  grid-area: 2/2/3/3;
}
.hero-animation > *:nth-child(5) {
  --pos-x: -127%;
  --pos-y: 127%;
  grid-area: 1/3/2/4;
}
.hero-animation > *:nth-child(6) {
  --pos-x: -127%;
  --pos-y: 0;
  grid-area: 2/3/3/4;
}
.hero-animation > *:nth-child(7) {
  --pos-x: -127%;
  --pos-y: -127%;
  grid-area: 3/3/4/4;
}
.hero-animation > *:not(.center) {
  animation: spinTrans 1s 1s ease forwards;
  transform: translate(var(--pos-x), var(--pos-y)) skewX(3deg) scale(0.5);
}
.hero-animation > *:is(.center) {
  animation: pulse 1s 0.25s ease forwards;
  transform: scale(120%);
}
.hero-object {
  z-index: 1;
  border-radius: 1000px;
  background-color: var(--main);
}
.hero-object.center {
  z-index: 2;
  background-color: var(--white);
}
.hero #background > * {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  filter: blur(10px);
  border-radius: 0 0 30px 30px;
}
@media (max-width: 999.98px) {
  .hero #background > * {
    border-radius: 0 0 15px 15px;
  }
}
.hero #demo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 999.98px) {
  .hero #demo {
    border-radius: 0 0 15px 15px;
  }
}

.advantages::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 470px;
  height: 638px;
  background-image: url("./../../assets/images/advantage-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(0, 0);
}
@media (max-width: 1439.98px) {
  .advantages::before {
    width: 350px;
    height: 472px;
    transform: translate(-43px, 0);
  }
}
@media (max-width: 999.98px) {
  .advantages::before {
    width: 350px;
    height: 472px;
  }
}
@media (max-width: 575.98px) {
  .advantages::before {
    width: 230px;
    height: 314px;
  }
}
.advantages::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 474px;
  height: 346px;
  background-image: url("./../../assets/images/advantage-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(75px, 0);
}
@media (max-width: 1439.98px) {
  .advantages::after {
    width: 370px;
    height: 270px;
    transform: translate(140px, 0);
  }
}
@media (max-width: 999.98px) {
  .advantages::after {
    width: 270px;
    height: 198px;
    transform: translate(180px, 0);
  }
}
@media (max-width: 575.98px) {
  .advantages::after {
    transform: translate(140px, 0);
  }
}
.advantages-items {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.advantages-items > * {
  flex: 1 0 calc(33.333333% - 6.6666666667px);
  max-width: calc(33.333333% - 6.6666666667px);
  width: 100%;
}
@media (max-width: 1199.98px) {
  .advantages-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .advantages-items > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .advantages-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .advantages-items > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .advantages-items > * {
    min-height: 270px;
  }
}

.why::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 470px;
  height: 638px;
  background-image: url("./../../assets/images/advantage-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(0, 0);
}
@media (max-width: 1439.98px) {
  .why::before {
    width: 350px;
    height: 472px;
    transform: translate(-43px, 0);
  }
}
@media (max-width: 999.98px) {
  .why::before {
    width: 350px;
    height: 472px;
  }
}
@media (max-width: 575.98px) {
  .why::before {
    width: 230px;
    height: 314px;
  }
}
.why::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 474px;
  height: 346px;
  background-image: url("./../../assets/images/advantage-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(75px, 0);
}
@media (max-width: 1439.98px) {
  .why::after {
    width: 370px;
    height: 270px;
    transform: translate(140px, 0);
  }
}
@media (max-width: 999.98px) {
  .why::after {
    width: 270px;
    height: 198px;
    transform: translate(180px, 0);
  }
}
@media (max-width: 575.98px) {
  .why::after {
    transform: translate(140px, 0);
  }
}
.why-items {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.why-items > * {
  flex: 1 0 calc(33.333333% - 6.6666666667px);
  max-width: calc(33.333333% - 6.6666666667px);
  width: 100%;
}
@media (max-width: 1199.98px) {
  .why-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .why-items > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .why-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .why-items > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}

.about-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.about-block > * {
  flex: 1 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: 100%;
}
@media (max-width: 1199.98px) {
  .about-block {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .about-block > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}
.about-slider {
  position: relative;
}
.about-slider > .slider-block-cover {
  height: 100%;
}
.about-slider > .slider-block-thumbnail {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 30px;
}
@media (max-width: 575.98px) {
  .about-slider > .slider-block-thumbnail {
    padding: 10px;
  }
}

.service-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
}
@media (max-width: 1439.98px) {
  .service-block {
    gap: 50px;
  }
}
@media (max-width: 1199.98px) {
  .service-block {
    gap: 50px;
  }
}
@media (max-width: 999.98px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.service-block .wrapper-image {
  max-width: 360px;
  aspect-ratio: 16/12;
}
@media (max-width: 999.98px) {
  .service-block .wrapper-image {
    max-width: 400px;
    margin: auto;
    aspect-ratio: 16/12;
  }
}

.loop-items {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.loop-items > * {
  flex: 1 0 calc(33.333333% - 6.6666666667px);
  max-width: calc(33.333333% - 6.6666666667px);
  width: 100%;
}
@media (max-width: 999.98px) {
  .loop-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .loop-items > * {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .loop-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .loop-items > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}

.production::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  z-index: -1;
  width: 470px;
  height: 638px;
  background-image: url("./../../assets/images/advantage-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(0, 0);
}
@media (max-width: 1439.98px) {
  .production::before {
    bottom: -60px;
    width: 350px;
    height: 472px;
    transform: translate(-43px, 0);
  }
}
@media (max-width: 999.98px) {
  .production::before {
    width: 350px;
    height: 472px;
  }
}
@media (max-width: 575.98px) {
  .production::before {
    width: 230px;
    height: 314px;
  }
}
.production::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 474px;
  height: 346px;
  background-image: url("./../../assets/images/advantage-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(75px, 0);
}
@media (max-width: 1439.98px) {
  .production::after {
    width: 370px;
    height: 270px;
    transform: translate(140px, 0);
  }
}
@media (max-width: 999.98px) {
  .production::after {
    width: 270px;
    height: 198px;
    transform: translate(180px, 0);
  }
}
@media (max-width: 575.98px) {
  .production::after {
    transform: translate(140px, 0);
  }
}

.contacts-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.contacts-block > a {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  text-decoration: none !important;
}
.contacts-block > a i {
  display: flex;
  margin-top: 2px;
}
.contacts-block > a:hover span {
  text-decoration: underline;
}

.faq-background::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  z-index: -1;
  width: 470px;
  height: 638px;
  background-image: url("./../../assets/images/advantage-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(0, 0);
}
@media (max-width: 1439.98px) {
  .faq-background::before {
    bottom: -60px;
    width: 350px;
    height: 472px;
    transform: translate(-43px, 0);
  }
}
@media (max-width: 999.98px) {
  .faq-background::before {
    width: 350px;
    height: 472px;
  }
}
@media (max-width: 575.98px) {
  .faq-background::before {
    width: 230px;
    height: 314px;
  }
}
.faq-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 474px;
  height: 346px;
  background-image: url("./../../assets/images/advantage-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  user-select: none;
  pointer-events: none;
  transform: translate(75px, 0);
}
@media (max-width: 1439.98px) {
  .faq-background::after {
    width: 370px;
    height: 270px;
    transform: translate(140px, 0);
  }
}
@media (max-width: 999.98px) {
  .faq-background::after {
    width: 270px;
    height: 198px;
    transform: translate(180px, 0);
  }
}
@media (max-width: 575.98px) {
  .faq-background::after {
    transform: translate(140px, 0);
  }
}
.faq-items {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.faq-items > * {
  flex: 1 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  width: 100%;
}
@media (max-width: 719.98px) {
  .faq-items {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .faq-items > * {
    flex: 1 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: 100%;
  }
}

.map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  aspect-ratio: 21/9;
  overflow: hidden;
}
@media (max-width: 576px) {
  .map {
    aspect-ratio: 16/10;
  }
}
.map.dashed {
  border: 2px dashed var(--main);
}
.map > * {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.cookies {
  position: fixed;
  box-sizing: border-box;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 1020;
  margin: 0 auto;
  width: 96%;
  max-width: 360px;
  padding: 12px 16px 8px 16px;
  background: #f7f5f1;
  color: #443322;
  box-shadow: 0 0 8px 4px rgba(44, 33, 22, 0.2);
  border-radius: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cookies {
    font-size: 13px;
  }
}
.cookies span {
  display: block;
  padding-right: 16px;
}
.cookies .close_cookies {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #223344;
  border: 1px solid transparent;
  border-radius: 4px;
}
.cookies .close_cookies:hover {
  border-color: rgba(22, 33, 44, 0.2);
}
.cookies .cookies_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #223344;
  color: #f7f5f1;
  border: none;
  border-radius: 24px;
  box-shadow: none;
  padding: 8px 16px;
  margin-top: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.cookies .cookies_button:hover {
  background: #112233;
}