@import url(https://fonts.bunny.net/css?family=Nunito);
:root {
  --white: #ffffff;
  --white-alpha: rgba(255, 255, 255, 0.5);
  --black: #181818;
  --black-alpha: rgb(24, 24, 24, 0.3);
  --grey-30: #F6F6F6;
  --grey-50: #969696;
  --primary: #ee7219;
  --secondary: #00719F;
  --error: #fa4415;
  --success: #42d888;
  --warning: #ffbd02;
  --info: #0187d7;
  --accent-color: var(--primary);
  --background-color: var(--white);
  --text-color: var(--black);
}

:root {
  --font-open: "Open Sans", sans-serif;
  --font-adamina: "Adamina", serif;
  /* Font size  */
  --font-size-300: 18.75rem;
  --font-size-200: 12.5rem;
  --font-size-150: 9.375rem;
  --font-size-120: 7.5rem;
  --font-size-100: 6.25rem;
  --font-size-90: 5.625rem;
  --font-size-85: 5.313rem;
  --font-size-80: 5rem;
  --font-size-70: 4.375rem;
  --font-size-64: 4rem;
  --font-size-60: 3.75rem;
  --font-size-50: 3.125rem;
  --font-size-48: 3rem;
  --font-size-46: 2.875rem;
  --font-size-45: 2.813rem;
  --font-size-42: 2.625rem;
  --font-size-40: 2.5rem;
  --font-size-36: 2.25rem;
  --font-size-35: 2.188rem;
  --font-size-34: 2.125rem;
  --font-size-32: 2rem;
  --font-size-30: 1.875rem;
  --font-size-29: 1.8125rem;
  --font-size-28: 1.75rem;
  --font-size-27: 1.6875rem;
  --font-size-26: 1.625rem;
  --font-size-25: 1.6rem;
  --font-size-24: 1.5rem;
  --font-size-23: 1.4375rem;
  --font-size-22: 1.375rem;
  --font-size-21: 1.313rem;
  --font-size-20: 1.25rem;
  --font-size-18: 1.125rem;
  --font-size-16: 1rem;
  --font-size-15: 0.9375rem;
  --font-size-14: 0.875rem;
  --font-size-13: 0.8125rem;
  --font-size-12: 0.75rem;
  --font-size-11: 0.6875rem;
  --font-size-10: 0.625rem;
  --font-size-8: 0.5rem;
}

:root {
  /* Responsive breakpoints */
  --xs: 576px;
  --sm: 768px;
  --md: 992px;
  --lg: 1200px;
  --xl: 1440px;
  --xxl: 1920px;
  /* Container widths */
  --container-xxl-max-width: 1400px;
  --container-xl-max-width: 1200px;
  --container-lg-max-width: 1145px;
  --container-md-max-width: 962px;
  --container-sm-max-width: 768px;
  /* Rounded */
  --rounded-sm: 8px;
  --rounded-md: 20px;
  --rounded-lg: 40px;
  --rounded-xl: 80px;
  --rounded-card: var(--rounded-lg);
  --transition: all 900ms cubic-bezier(0.19, 1, 0.155, 1.01) 0s;
  --shadow: 0 2px 20px 0px rgba(0, 0, 0, 0.05);
}

/* Responsive breakpoints */
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
  margin: 0;
}

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%;
  vertical-align: baseline;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

blockquote, q {
  quotes: none;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

ul {
  margin: 0px;
  padding: 0px;
}
ul li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-adamina);
}

h1 {
  font-size: var(--font-size-28);
}
@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-30);
  }
}
@media (min-width: 1175px) {
  h1 {
    font-size: var(--font-size-32);
  }
}

h2 {
  font-size: var(--font-size-20);
}
@media (min-width: 768px) {
  h2 {
    font-size: var(--font-size-24);
  }
}
@media (min-width: 1175px) {
  h2 {
    font-size: var(--font-size-24);
  }
}

h3 {
  font-size: var(--font-size-18);
}

h4 {
  font-size: var(--font-size-16);
}

h5 {
  font-size: var(--font-size-14);
}

h6 {
  font-size: var(--font-size-10);
}

.container {
  width: 100%;
  max-width: var(--container-xl-max-width);
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  box-sizing: border-box;
}
.container--medium {
  max-width: var(--container-md-max-width);
}
.container--big {
  max-width: var(--container-xxl-max-width);
}
.container--full {
  max-width: 100% !important;
}
.container::before, .container::after {
  display: none;
}

.float-content {
  padding: 0 1rem;
  max-width: var(--container-xl-max-width);
}

@media (min-width: 1441px) {
  .container {
    max-width: var(--container-xxl-max-width);
  }
  .float-content {
    max-width: inherit;
  }
  .float-content.fc-left {
    margin-left: calc((100vw - var(--container-xxl-max-width)) / 2);
  }
  .float-content.fc-right {
    margin-right: calc((100vw - var(--container-xxl-max-width)) / 2);
  }
}
@media (min-width: 1175px) {
  .container {
    max-width: var(--container-xl-max-width);
  }
  .container--medium {
    max-width: var(--container-md-max-width);
  }
  .container--big {
    max-width: var(--container-xxl-max-width);
  }
  .container--full {
    max-width: 100% !important;
  }
  .float-content {
    max-width: inherit;
  }
  .float-content.fc-left {
    margin-left: calc((100vw - var(--container-xl-max-width)) / 2);
  }
  .float-content.fc-right {
    margin-right: calc((100vw - var(--container-xl-max-width)) / 2);
  }
}
.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-none {
  display: none !important;
}

.hide-responsive {
  display: none !important;
}

.only-responsive {
  display: block !important;
}

.onlyf-responsive {
  display: flex !important;
}

@media (min-width: 992px) {
  .hide-responsive {
    display: block !important;
  }
  .only-responsive {
    display: none !important;
  }
  .onlyf-responsive {
    display: none !important;
  }
}
*,
*::before,
*::after {
  accent-color: var(--primary);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 24px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.6;
  font-size: 1rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0px;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-selection {
  background: var(--primary);
  color: var(--white);
}

.bold,
strong {
  font-weight: 800;
}

.medium {
  font-family: var(--font-medium);
}

.underline {
  text-decoration: underline;
}

.font-weight-unset {
  font-weight: unset;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-ul {
  text-decoration: underline !important;
}

.text-break {
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.text-center {
  text-align: center;
}
.text-center span {
  display: block !important;
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

a {
  transition: var(--transition);
  text-decoration: none;
}

hr {
  border-top: 1px solid var(--grey);
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
}

.hide {
  opacity: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.fill-white {
  fill: var(--white);
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

.overflow-hidden {
  overflow: hidden;
}

.regular-link {
  cursor: pointer;
}
.regular-link:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

.hidden-content {
  width: 100%;
  overflow: hidden;
}

.font-light {
  font-weight: 100;
}

.font-italic {
  font-style: italic;
}

a {
  color: var(--text-color);
  transition: all 900ms cubic-bezier(0.19, 1, 0.155, 1.01) 0s;
}

.rounded {
  border-radius: var(--rounded-lg);
}

.hr-title {
  display: flex;
  justify-content: center;
  position: relative;
}
.hr-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
}
.hr-title h2 {
  background: var(--white);
  padding: 0 1rem;
  position: relative;
}

.slick-next {
  overflow: visible;
}

.divider-0 {
  padding-top: 0px !important;
  width: 100%;
}

.divider-1 {
  padding-top: 1px !important;
  width: 100%;
}

.divider-2 {
  padding-top: 2px !important;
  width: 100%;
}

.divider-3 {
  padding-top: 3px !important;
  width: 100%;
}

.divider-4 {
  padding-top: 4px !important;
  width: 100%;
}

.divider-5 {
  padding-top: 5px !important;
  width: 100%;
}

.divider-6 {
  padding-top: 6px !important;
  width: 100%;
}

.divider-7 {
  padding-top: 7px !important;
  width: 100%;
}

.divider-8 {
  padding-top: 8px !important;
  width: 100%;
}

.divider-9 {
  padding-top: 9px !important;
  width: 100%;
}

.divider-10 {
  padding-top: 10px !important;
  width: 100%;
}

.divider-11 {
  padding-top: 11px !important;
  width: 100%;
}

.divider-12 {
  padding-top: 12px !important;
  width: 100%;
}

.divider-13 {
  padding-top: 13px !important;
  width: 100%;
}

.divider-14 {
  padding-top: 14px !important;
  width: 100%;
}

.divider-15 {
  padding-top: 15px !important;
  width: 100%;
}

.divider-16 {
  padding-top: 16px !important;
  width: 100%;
}

.divider-17 {
  padding-top: 17px !important;
  width: 100%;
}

.divider-18 {
  padding-top: 18px !important;
  width: 100%;
}

.divider-19 {
  padding-top: 19px !important;
  width: 100%;
}

.divider-20 {
  padding-top: 20px !important;
  width: 100%;
}

.divider-21 {
  padding-top: 21px !important;
  width: 100%;
}

.divider-22 {
  padding-top: 22px !important;
  width: 100%;
}

.divider-23 {
  padding-top: 23px !important;
  width: 100%;
}

.divider-24 {
  padding-top: 24px !important;
  width: 100%;
}

.divider-25 {
  padding-top: 25px !important;
  width: 100%;
}

.divider-26 {
  padding-top: 26px !important;
  width: 100%;
}

.divider-27 {
  padding-top: 27px !important;
  width: 100%;
}

.divider-28 {
  padding-top: 28px !important;
  width: 100%;
}

.divider-29 {
  padding-top: 29px !important;
  width: 100%;
}

.divider-30 {
  padding-top: 30px !important;
  width: 100%;
}

.divider-31 {
  padding-top: 31px !important;
  width: 100%;
}

.divider-32 {
  padding-top: 32px !important;
  width: 100%;
}

.divider-33 {
  padding-top: 33px !important;
  width: 100%;
}

.divider-34 {
  padding-top: 34px !important;
  width: 100%;
}

.divider-35 {
  padding-top: 35px !important;
  width: 100%;
}

.divider-36 {
  padding-top: 36px !important;
  width: 100%;
}

.divider-37 {
  padding-top: 37px !important;
  width: 100%;
}

.divider-38 {
  padding-top: 38px !important;
  width: 100%;
}

.divider-39 {
  padding-top: 39px !important;
  width: 100%;
}

.divider-40 {
  padding-top: 40px !important;
  width: 100%;
}

.divider-41 {
  padding-top: 41px !important;
  width: 100%;
}

.divider-42 {
  padding-top: 42px !important;
  width: 100%;
}

.divider-43 {
  padding-top: 43px !important;
  width: 100%;
}

.divider-44 {
  padding-top: 44px !important;
  width: 100%;
}

.divider-45 {
  padding-top: 45px !important;
  width: 100%;
}

.divider-46 {
  padding-top: 46px !important;
  width: 100%;
}

.divider-47 {
  padding-top: 47px !important;
  width: 100%;
}

.divider-48 {
  padding-top: 48px !important;
  width: 100%;
}

.divider-49 {
  padding-top: 49px !important;
  width: 100%;
}

.divider-50 {
  padding-top: 50px !important;
  width: 100%;
}

.divider-51 {
  padding-top: 51px !important;
  width: 100%;
}

.divider-52 {
  padding-top: 52px !important;
  width: 100%;
}

.divider-53 {
  padding-top: 53px !important;
  width: 100%;
}

.divider-54 {
  padding-top: 54px !important;
  width: 100%;
}

.divider-55 {
  padding-top: 55px !important;
  width: 100%;
}

.divider-56 {
  padding-top: 56px !important;
  width: 100%;
}

.divider-57 {
  padding-top: 57px !important;
  width: 100%;
}

.divider-58 {
  padding-top: 58px !important;
  width: 100%;
}

.divider-59 {
  padding-top: 59px !important;
  width: 100%;
}

.divider-60 {
  padding-top: 60px !important;
  width: 100%;
}

.divider-61 {
  padding-top: 61px !important;
  width: 100%;
}

.divider-62 {
  padding-top: 62px !important;
  width: 100%;
}

.divider-63 {
  padding-top: 63px !important;
  width: 100%;
}

.divider-64 {
  padding-top: 64px !important;
  width: 100%;
}

.divider-65 {
  padding-top: 65px !important;
  width: 100%;
}

.divider-66 {
  padding-top: 66px !important;
  width: 100%;
}

.divider-67 {
  padding-top: 67px !important;
  width: 100%;
}

.divider-68 {
  padding-top: 68px !important;
  width: 100%;
}

.divider-69 {
  padding-top: 69px !important;
  width: 100%;
}

.divider-70 {
  padding-top: 70px !important;
  width: 100%;
}

.divider-71 {
  padding-top: 71px !important;
  width: 100%;
}

.divider-72 {
  padding-top: 72px !important;
  width: 100%;
}

.divider-73 {
  padding-top: 73px !important;
  width: 100%;
}

.divider-74 {
  padding-top: 74px !important;
  width: 100%;
}

.divider-75 {
  padding-top: 75px !important;
  width: 100%;
}

.divider-76 {
  padding-top: 76px !important;
  width: 100%;
}

.divider-77 {
  padding-top: 77px !important;
  width: 100%;
}

.divider-78 {
  padding-top: 78px !important;
  width: 100%;
}

.divider-79 {
  padding-top: 79px !important;
  width: 100%;
}

.divider-80 {
  padding-top: 80px !important;
  width: 100%;
}

.divider-81 {
  padding-top: 81px !important;
  width: 100%;
}

.divider-82 {
  padding-top: 82px !important;
  width: 100%;
}

.divider-83 {
  padding-top: 83px !important;
  width: 100%;
}

.divider-84 {
  padding-top: 84px !important;
  width: 100%;
}

.divider-85 {
  padding-top: 85px !important;
  width: 100%;
}

.divider-86 {
  padding-top: 86px !important;
  width: 100%;
}

.divider-87 {
  padding-top: 87px !important;
  width: 100%;
}

.divider-88 {
  padding-top: 88px !important;
  width: 100%;
}

.divider-89 {
  padding-top: 89px !important;
  width: 100%;
}

.divider-90 {
  padding-top: 90px !important;
  width: 100%;
}

.divider-91 {
  padding-top: 91px !important;
  width: 100%;
}

.divider-92 {
  padding-top: 92px !important;
  width: 100%;
}

.divider-93 {
  padding-top: 93px !important;
  width: 100%;
}

.divider-94 {
  padding-top: 94px !important;
  width: 100%;
}

.divider-95 {
  padding-top: 95px !important;
  width: 100%;
}

.divider-96 {
  padding-top: 96px !important;
  width: 100%;
}

.divider-97 {
  padding-top: 97px !important;
  width: 100%;
}

.divider-98 {
  padding-top: 98px !important;
  width: 100%;
}

.divider-99 {
  padding-top: 99px !important;
  width: 100%;
}

.divider-100 {
  padding-top: 100px !important;
  width: 100%;
}

.divider-101 {
  padding-top: 101px !important;
  width: 100%;
}

.divider-102 {
  padding-top: 102px !important;
  width: 100%;
}

.divider-103 {
  padding-top: 103px !important;
  width: 100%;
}

.divider-104 {
  padding-top: 104px !important;
  width: 100%;
}

.divider-105 {
  padding-top: 105px !important;
  width: 100%;
}

.divider-106 {
  padding-top: 106px !important;
  width: 100%;
}

.divider-107 {
  padding-top: 107px !important;
  width: 100%;
}

.divider-108 {
  padding-top: 108px !important;
  width: 100%;
}

.divider-109 {
  padding-top: 109px !important;
  width: 100%;
}

.divider-110 {
  padding-top: 110px !important;
  width: 100%;
}

.divider-111 {
  padding-top: 111px !important;
  width: 100%;
}

.divider-112 {
  padding-top: 112px !important;
  width: 100%;
}

.divider-113 {
  padding-top: 113px !important;
  width: 100%;
}

.divider-114 {
  padding-top: 114px !important;
  width: 100%;
}

.divider-115 {
  padding-top: 115px !important;
  width: 100%;
}

.divider-116 {
  padding-top: 116px !important;
  width: 100%;
}

.divider-117 {
  padding-top: 117px !important;
  width: 100%;
}

.divider-118 {
  padding-top: 118px !important;
  width: 100%;
}

.divider-119 {
  padding-top: 119px !important;
  width: 100%;
}

.divider-120 {
  padding-top: 120px !important;
  width: 100%;
}

.divider-121 {
  padding-top: 121px !important;
  width: 100%;
}

.divider-122 {
  padding-top: 122px !important;
  width: 100%;
}

.divider-123 {
  padding-top: 123px !important;
  width: 100%;
}

.divider-124 {
  padding-top: 124px !important;
  width: 100%;
}

.divider-125 {
  padding-top: 125px !important;
  width: 100%;
}

.divider-126 {
  padding-top: 126px !important;
  width: 100%;
}

.divider-127 {
  padding-top: 127px !important;
  width: 100%;
}

.divider-128 {
  padding-top: 128px !important;
  width: 100%;
}

.divider-129 {
  padding-top: 129px !important;
  width: 100%;
}

.divider-130 {
  padding-top: 130px !important;
  width: 100%;
}

.divider-131 {
  padding-top: 131px !important;
  width: 100%;
}

.divider-132 {
  padding-top: 132px !important;
  width: 100%;
}

.divider-133 {
  padding-top: 133px !important;
  width: 100%;
}

.divider-134 {
  padding-top: 134px !important;
  width: 100%;
}

.divider-135 {
  padding-top: 135px !important;
  width: 100%;
}

.divider-136 {
  padding-top: 136px !important;
  width: 100%;
}

.divider-137 {
  padding-top: 137px !important;
  width: 100%;
}

.divider-138 {
  padding-top: 138px !important;
  width: 100%;
}

.divider-139 {
  padding-top: 139px !important;
  width: 100%;
}

.divider-140 {
  padding-top: 140px !important;
  width: 100%;
}

.divider-141 {
  padding-top: 141px !important;
  width: 100%;
}

.divider-142 {
  padding-top: 142px !important;
  width: 100%;
}

.divider-143 {
  padding-top: 143px !important;
  width: 100%;
}

.divider-144 {
  padding-top: 144px !important;
  width: 100%;
}

.divider-145 {
  padding-top: 145px !important;
  width: 100%;
}

.divider-146 {
  padding-top: 146px !important;
  width: 100%;
}

.divider-147 {
  padding-top: 147px !important;
  width: 100%;
}

.divider-148 {
  padding-top: 148px !important;
  width: 100%;
}

.divider-149 {
  padding-top: 149px !important;
  width: 100%;
}

.divider-150 {
  padding-top: 150px !important;
  width: 100%;
}

.divider-151 {
  padding-top: 151px !important;
  width: 100%;
}

.divider-152 {
  padding-top: 152px !important;
  width: 100%;
}

.divider-153 {
  padding-top: 153px !important;
  width: 100%;
}

.divider-154 {
  padding-top: 154px !important;
  width: 100%;
}

.divider-155 {
  padding-top: 155px !important;
  width: 100%;
}

.divider-156 {
  padding-top: 156px !important;
  width: 100%;
}

.divider-157 {
  padding-top: 157px !important;
  width: 100%;
}

.divider-158 {
  padding-top: 158px !important;
  width: 100%;
}

.divider-159 {
  padding-top: 159px !important;
  width: 100%;
}

.divider-160 {
  padding-top: 160px !important;
  width: 100%;
}

.divider-161 {
  padding-top: 161px !important;
  width: 100%;
}

.divider-162 {
  padding-top: 162px !important;
  width: 100%;
}

.divider-163 {
  padding-top: 163px !important;
  width: 100%;
}

.divider-164 {
  padding-top: 164px !important;
  width: 100%;
}

.divider-165 {
  padding-top: 165px !important;
  width: 100%;
}

.divider-166 {
  padding-top: 166px !important;
  width: 100%;
}

.divider-167 {
  padding-top: 167px !important;
  width: 100%;
}

.divider-168 {
  padding-top: 168px !important;
  width: 100%;
}

.divider-169 {
  padding-top: 169px !important;
  width: 100%;
}

.divider-170 {
  padding-top: 170px !important;
  width: 100%;
}

.divider-171 {
  padding-top: 171px !important;
  width: 100%;
}

.divider-172 {
  padding-top: 172px !important;
  width: 100%;
}

.divider-173 {
  padding-top: 173px !important;
  width: 100%;
}

.divider-174 {
  padding-top: 174px !important;
  width: 100%;
}

.divider-175 {
  padding-top: 175px !important;
  width: 100%;
}

.divider-176 {
  padding-top: 176px !important;
  width: 100%;
}

.divider-177 {
  padding-top: 177px !important;
  width: 100%;
}

.divider-178 {
  padding-top: 178px !important;
  width: 100%;
}

.divider-179 {
  padding-top: 179px !important;
  width: 100%;
}

.divider-180 {
  padding-top: 180px !important;
  width: 100%;
}

.divider-181 {
  padding-top: 181px !important;
  width: 100%;
}

.divider-182 {
  padding-top: 182px !important;
  width: 100%;
}

.divider-183 {
  padding-top: 183px !important;
  width: 100%;
}

.divider-184 {
  padding-top: 184px !important;
  width: 100%;
}

.divider-185 {
  padding-top: 185px !important;
  width: 100%;
}

.divider-186 {
  padding-top: 186px !important;
  width: 100%;
}

.divider-187 {
  padding-top: 187px !important;
  width: 100%;
}

.divider-188 {
  padding-top: 188px !important;
  width: 100%;
}

.divider-189 {
  padding-top: 189px !important;
  width: 100%;
}

.divider-190 {
  padding-top: 190px !important;
  width: 100%;
}

.divider-191 {
  padding-top: 191px !important;
  width: 100%;
}

.divider-192 {
  padding-top: 192px !important;
  width: 100%;
}

.divider-193 {
  padding-top: 193px !important;
  width: 100%;
}

.divider-194 {
  padding-top: 194px !important;
  width: 100%;
}

.divider-195 {
  padding-top: 195px !important;
  width: 100%;
}

.divider-196 {
  padding-top: 196px !important;
  width: 100%;
}

.divider-197 {
  padding-top: 197px !important;
  width: 100%;
}

.divider-198 {
  padding-top: 198px !important;
  width: 100%;
}

.divider-199 {
  padding-top: 199px !important;
  width: 100%;
}

.divider-200 {
  padding-top: 200px !important;
  width: 100%;
}

.divider-common {
  padding-top: 40px;
}

@media (min-width: 992px) {
  .divider-common {
    padding-top: 80px;
  }
}
input,
select,
textarea {
  transition: all 900ms cubic-bezier(0.19, 1, 0.155, 1.01) 0s;
  font-family: var(--font-regular);
  font-size: var(--font-size-16);
}

.form-group {
  display: flex;
  flex-flow: column;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
}

input[type=text],
input[type=tel],
input[type=password],
input[type=number],
input[type=email],
input[type=date],
input[type=time],
input[type=url],
input[type=search] {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid var(--black);
  min-height: 45px;
  background: transparent;
  padding: 0px 14px;
  font-size: var(--font-size-14);
}

select {
  width: 100%;
  border: 0px;
  min-height: 45px;
  background: transparent;
  padding: 0px 14px;
  font-size: var(--font-size-14);
}

input[type=text],
input[type=tel],
input[type=password],
input[type=number],
input[type=email],
input[type=date],
input[type=time],
input[type=url],
input[type=search] {
  height: 45px;
  line-height: 45px;
}

input[type=date]::-webkit-calendar-picker-indicator {
  padding: 0.5rem;
  cursor: pointer;
  filter: invert(1);
  opacity: 0;
}

input[type=text]:focus ~ label,
input[type=tel]:focus ~ label,
input[type=password]:focus ~ label,
input[type=number]:focus ~ label,
input[type=email]:focus ~ label,
input[type=date]:focus ~ label,
input[type=time]:focus ~ label,
input[type=url]:focus ~ label,
input[type=search]:focus ~ label,
select:focus ~ label,
textarea:focus ~ label {
  transform: translateY(-32px);
  font-size: var(--font-size-14);
  color: var(--blue-500);
}

input[type=text].is-invalid,
input[type=tel].is-invalid,
input[type=password].is-invalid,
input[type=number].is-invalid,
input[type=email].is-invalid,
input[type=date].is-invalid,
input[type=time].is-invalid,
input[type=url].is-invalid,
input[type=search].is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-bottom: solid 1px var(--error);
}

input[type=text].is-disabled,
input[type=tel].is-disabled,
input[type=password].is-disabled,
input[type=number].is-disabled,
input[type=email].is-disabled,
input[type=date].is-disabled,
input[type=time].is-disabled,
input[type=url].is-disabled,
input[type=search].is-disabled,
select.is-disabled {
  color: var(--black);
  pointer-events: none;
}
input[type=text].is-disabled + .filter-group,
input[type=tel].is-disabled + .filter-group,
input[type=password].is-disabled + .filter-group,
input[type=number].is-disabled + .filter-group,
input[type=email].is-disabled + .filter-group,
input[type=date].is-disabled + .filter-group,
input[type=time].is-disabled + .filter-group,
input[type=url].is-disabled + .filter-group,
input[type=search].is-disabled + .filter-group,
select.is-disabled + .filter-group {
  color: var(--black);
  pointer-events: none;
  opacity: 0.5;
  cursor: auto;
}

input[type=color] {
  display: block;
  width: 40px;
  height: 40px;
  border: 0px;
  padding: 0px;
  overflow: hidden;
  background: transparent;
}

input[type=time] {
  position: relative;
  font-size: var(--font-size-16) !important;
}

input[type=time]::-ms-clear {
  display: none;
  -webkit-appearance: none;
}

input[type=time]::-webkit-calendar-picker-indicator {
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

:focus {
  outline: none;
}

textarea {
  display: block;
  line-height: 1.5;
  min-height: 60px;
  border: 0px;
  margin: 3px 0 0;
  padding: 10px 14px;
  font-size: var(--font-size-14);
  resize: none;
  width: 100%;
  max-height: 80px;
  background: transparent;
}

.invalid-feedback {
  display: block;
  color: var(--error);
  font-size: var(--font-size-14);
  text-align: right;
  margin-top: 0.3rem;
  position: relative;
}

.valid-feedback {
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-sm);
  font-size: var(--font-size-14);
  background: var(--success);
}
.valid-feedback i {
  margin-right: 0.5rem;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row.align-items-start {
  align-items: flex-start;
}
.row.align-items-center {
  align-items: center;
}
.row.align-items-end {
  align-items: flex-end;
}
.row:after {
  display: block;
  clear: both;
  content: "";
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row .col {
  -ms-flex-preferred-size: 0;
  flex-grow: 1;
  min-height: 1px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 15px;
  padding-left: 15px;
}
.row .col.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.row .col.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.row .col.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.row .col.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.row .col.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.row .col.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.row .col.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.row .col.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.row .col.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.row .col.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.row .col.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.row .col.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.row .col.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

@media (max-width: 1440px) {
  .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  .row .col.col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .col.col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .row .col.col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .row .col.col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .row .col.col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row .col.col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row .col.col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .row .col.col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .col.col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .row .col.col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .row .col.col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .row .col.col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .row .col.col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .row .col.col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  .row .col.col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .col.col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .row .col.col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .row .col.col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .row .col.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row .col.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row .col.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .row .col.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .col.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .row .col.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .row .col.col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .row .col.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .row .col.col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .row .col.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  .row .col.col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .col.col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .row .col.col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .row .col.col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .row .col.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row .col.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row .col.col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .row .col.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .col.col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .row .col.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .row .col.col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .row .col.col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .row .col.col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .row .col.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  .row .col.col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .col.col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .row .col.col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .row .col.col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .row .col.col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row .col.col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row .col.col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .row .col.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .col.col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .row .col.col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .row .col.col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .row .col.col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .row .col.col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .row .col.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* FLEX
============================================= */
.d-flex {
  display: flex;
}
.d-flex.flex-row {
  flex-direction: row;
}
.d-flex.flex-row-reverse {
  flex-direction: row-reverse;
}
.d-flex.flex-column {
  flex-direction: column;
}
.d-flex.flex-column-reverse {
  flex-direction: column-reverse;
}

.d-flex {
  display: flex;
}
.d-flex.flex-rowrap {
  flex-flow: row wrap;
}
.d-flex.flex-rowrap.right {
  justify-content: flex-end;
}
.d-flex.flex-rowrap.right button {
  margin: 0 0 0 1rem;
}
.d-flex.flex-rowrap.center {
  justify-content: center;
}
.d-flex.flex-rowrap.center button {
  margin: 0 0.5rem 0 0.5rem;
}

.flex-column {
  flex-direction: column;
}

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

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.align-items-start {
  align-items: flex-start !important;
}

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

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

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

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

.justify-content-center {
  justify-content: center;
}

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

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

.align-self-auto {
  align-self: auto;
}

.align-self-start {
  align-self: flex-start;
}

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

.align-self-center {
  align-self: center;
}

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

.align-content-auto {
  align-self: auto;
}

.align-content-start {
  align-self: flex-start;
}

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

.align-content-center {
  align-self: center;
}

.align-content-baseline {
  align-self: baseline;
}

.align-content-stretch {
  align-self: stretch;
}

.flex-float {
  display: flex;
  flex-flow: row wrap;
  margin-left: -8px;
}
.flex-float__item {
  margin: 8px;
}

.gap-0 {
  gap: 0px !important;
}

.gap-1 {
  gap: 1px !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-3 {
  gap: 3px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-7 {
  gap: 7px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-9 {
  gap: 9px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-11 {
  gap: 11px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-13 {
  gap: 13px !important;
}

.gap-14 {
  gap: 14px !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-17 {
  gap: 17px !important;
}

.gap-18 {
  gap: 18px !important;
}

.gap-19 {
  gap: 19px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-21 {
  gap: 21px !important;
}

.gap-22 {
  gap: 22px !important;
}

.gap-23 {
  gap: 23px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-25 {
  gap: 25px !important;
}

.gap-26 {
  gap: 26px !important;
}

.gap-27 {
  gap: 27px !important;
}

.gap-28 {
  gap: 28px !important;
}

.gap-29 {
  gap: 29px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-31 {
  gap: 31px !important;
}

.gap-32 {
  gap: 32px !important;
}

.gap-33 {
  gap: 33px !important;
}

.gap-34 {
  gap: 34px !important;
}

.gap-35 {
  gap: 35px !important;
}

.gap-36 {
  gap: 36px !important;
}

.gap-37 {
  gap: 37px !important;
}

.gap-38 {
  gap: 38px !important;
}

.gap-39 {
  gap: 39px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-41 {
  gap: 41px !important;
}

.gap-42 {
  gap: 42px !important;
}

.gap-43 {
  gap: 43px !important;
}

.gap-44 {
  gap: 44px !important;
}

.gap-45 {
  gap: 45px !important;
}

.gap-46 {
  gap: 46px !important;
}

.gap-47 {
  gap: 47px !important;
}

.gap-48 {
  gap: 48px !important;
}

.gap-49 {
  gap: 49px !important;
}

.gap-50 {
  gap: 50px !important;
}

.gap-51 {
  gap: 51px !important;
}

.gap-52 {
  gap: 52px !important;
}

.gap-53 {
  gap: 53px !important;
}

.gap-54 {
  gap: 54px !important;
}

.gap-55 {
  gap: 55px !important;
}

.gap-56 {
  gap: 56px !important;
}

.gap-57 {
  gap: 57px !important;
}

.gap-58 {
  gap: 58px !important;
}

.gap-59 {
  gap: 59px !important;
}

.gap-60 {
  gap: 60px !important;
}

.gap-61 {
  gap: 61px !important;
}

.gap-62 {
  gap: 62px !important;
}

.gap-63 {
  gap: 63px !important;
}

.gap-64 {
  gap: 64px !important;
}

.gap-65 {
  gap: 65px !important;
}

.gap-66 {
  gap: 66px !important;
}

.gap-67 {
  gap: 67px !important;
}

.gap-68 {
  gap: 68px !important;
}

.gap-69 {
  gap: 69px !important;
}

.gap-70 {
  gap: 70px !important;
}

.gap-71 {
  gap: 71px !important;
}

.gap-72 {
  gap: 72px !important;
}

.gap-73 {
  gap: 73px !important;
}

.gap-74 {
  gap: 74px !important;
}

.gap-75 {
  gap: 75px !important;
}

.gap-76 {
  gap: 76px !important;
}

.gap-77 {
  gap: 77px !important;
}

.gap-78 {
  gap: 78px !important;
}

.gap-79 {
  gap: 79px !important;
}

.gap-80 {
  gap: 80px !important;
}

.gap-81 {
  gap: 81px !important;
}

.gap-82 {
  gap: 82px !important;
}

.gap-83 {
  gap: 83px !important;
}

.gap-84 {
  gap: 84px !important;
}

.gap-85 {
  gap: 85px !important;
}

.gap-86 {
  gap: 86px !important;
}

.gap-87 {
  gap: 87px !important;
}

.gap-88 {
  gap: 88px !important;
}

.gap-89 {
  gap: 89px !important;
}

.gap-90 {
  gap: 90px !important;
}

.gap-91 {
  gap: 91px !important;
}

.gap-92 {
  gap: 92px !important;
}

.gap-93 {
  gap: 93px !important;
}

.gap-94 {
  gap: 94px !important;
}

.gap-95 {
  gap: 95px !important;
}

.gap-96 {
  gap: 96px !important;
}

.gap-97 {
  gap: 97px !important;
}

.gap-98 {
  gap: 98px !important;
}

.gap-99 {
  gap: 99px !important;
}

.gap-100 {
  gap: 100px !important;
}

.gap-101 {
  gap: 101px !important;
}

.gap-102 {
  gap: 102px !important;
}

.gap-103 {
  gap: 103px !important;
}

.gap-104 {
  gap: 104px !important;
}

.gap-105 {
  gap: 105px !important;
}

.gap-106 {
  gap: 106px !important;
}

.gap-107 {
  gap: 107px !important;
}

.gap-108 {
  gap: 108px !important;
}

.gap-109 {
  gap: 109px !important;
}

.gap-110 {
  gap: 110px !important;
}

.gap-111 {
  gap: 111px !important;
}

.gap-112 {
  gap: 112px !important;
}

.gap-113 {
  gap: 113px !important;
}

.gap-114 {
  gap: 114px !important;
}

.gap-115 {
  gap: 115px !important;
}

.gap-116 {
  gap: 116px !important;
}

.gap-117 {
  gap: 117px !important;
}

.gap-118 {
  gap: 118px !important;
}

.gap-119 {
  gap: 119px !important;
}

.gap-120 {
  gap: 120px !important;
}

.gap-121 {
  gap: 121px !important;
}

.gap-122 {
  gap: 122px !important;
}

.gap-123 {
  gap: 123px !important;
}

.gap-124 {
  gap: 124px !important;
}

.gap-125 {
  gap: 125px !important;
}

.gap-126 {
  gap: 126px !important;
}

.gap-127 {
  gap: 127px !important;
}

.gap-128 {
  gap: 128px !important;
}

.gap-129 {
  gap: 129px !important;
}

.gap-130 {
  gap: 130px !important;
}

.gap-131 {
  gap: 131px !important;
}

.gap-132 {
  gap: 132px !important;
}

.gap-133 {
  gap: 133px !important;
}

.gap-134 {
  gap: 134px !important;
}

.gap-135 {
  gap: 135px !important;
}

.gap-136 {
  gap: 136px !important;
}

.gap-137 {
  gap: 137px !important;
}

.gap-138 {
  gap: 138px !important;
}

.gap-139 {
  gap: 139px !important;
}

.gap-140 {
  gap: 140px !important;
}

.gap-141 {
  gap: 141px !important;
}

.gap-142 {
  gap: 142px !important;
}

.gap-143 {
  gap: 143px !important;
}

.gap-144 {
  gap: 144px !important;
}

.gap-145 {
  gap: 145px !important;
}

.gap-146 {
  gap: 146px !important;
}

.gap-147 {
  gap: 147px !important;
}

.gap-148 {
  gap: 148px !important;
}

.gap-149 {
  gap: 149px !important;
}

.gap-150 {
  gap: 150px !important;
}

.gap-151 {
  gap: 151px !important;
}

.gap-152 {
  gap: 152px !important;
}

.gap-153 {
  gap: 153px !important;
}

.gap-154 {
  gap: 154px !important;
}

.gap-155 {
  gap: 155px !important;
}

.gap-156 {
  gap: 156px !important;
}

.gap-157 {
  gap: 157px !important;
}

.gap-158 {
  gap: 158px !important;
}

.gap-159 {
  gap: 159px !important;
}

.gap-160 {
  gap: 160px !important;
}

.gap-161 {
  gap: 161px !important;
}

.gap-162 {
  gap: 162px !important;
}

.gap-163 {
  gap: 163px !important;
}

.gap-164 {
  gap: 164px !important;
}

.gap-165 {
  gap: 165px !important;
}

.gap-166 {
  gap: 166px !important;
}

.gap-167 {
  gap: 167px !important;
}

.gap-168 {
  gap: 168px !important;
}

.gap-169 {
  gap: 169px !important;
}

.gap-170 {
  gap: 170px !important;
}

.gap-171 {
  gap: 171px !important;
}

.gap-172 {
  gap: 172px !important;
}

.gap-173 {
  gap: 173px !important;
}

.gap-174 {
  gap: 174px !important;
}

.gap-175 {
  gap: 175px !important;
}

.gap-176 {
  gap: 176px !important;
}

.gap-177 {
  gap: 177px !important;
}

.gap-178 {
  gap: 178px !important;
}

.gap-179 {
  gap: 179px !important;
}

.gap-180 {
  gap: 180px !important;
}

.gap-181 {
  gap: 181px !important;
}

.gap-182 {
  gap: 182px !important;
}

.gap-183 {
  gap: 183px !important;
}

.gap-184 {
  gap: 184px !important;
}

.gap-185 {
  gap: 185px !important;
}

.gap-186 {
  gap: 186px !important;
}

.gap-187 {
  gap: 187px !important;
}

.gap-188 {
  gap: 188px !important;
}

.gap-189 {
  gap: 189px !important;
}

.gap-190 {
  gap: 190px !important;
}

.gap-191 {
  gap: 191px !important;
}

.gap-192 {
  gap: 192px !important;
}

.gap-193 {
  gap: 193px !important;
}

.gap-194 {
  gap: 194px !important;
}

.gap-195 {
  gap: 195px !important;
}

.gap-196 {
  gap: 196px !important;
}

.gap-197 {
  gap: 197px !important;
}

.gap-198 {
  gap: 198px !important;
}

.gap-199 {
  gap: 199px !important;
}

.gap-200 {
  gap: 200px !important;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

@media (min-width: 576px) {
  .order-xs-0 {
    order: 0;
  }
}
@media (min-width: 992px) {
  .order-md-0 {
    order: 0;
  }
}
@media (min-width: 1175px) {
  .order-lg-0 {
    order: 0;
  }
}
@media (min-width: 1441px) {
  .order-xl-0 {
    order: 0;
  }
}
.order-1 {
  order: 1;
}

@media (min-width: 576px) {
  .order-xs-1 {
    order: 1;
  }
}
@media (min-width: 992px) {
  .order-md-1 {
    order: 1;
  }
}
@media (min-width: 1175px) {
  .order-lg-1 {
    order: 1;
  }
}
@media (min-width: 1441px) {
  .order-xl-1 {
    order: 1;
  }
}
.order-2 {
  order: 2;
}

@media (min-width: 576px) {
  .order-xs-2 {
    order: 2;
  }
}
@media (min-width: 992px) {
  .order-md-2 {
    order: 2;
  }
}
@media (min-width: 1175px) {
  .order-lg-2 {
    order: 2;
  }
}
@media (min-width: 1441px) {
  .order-xl-2 {
    order: 2;
  }
}
.order-3 {
  order: 3;
}

@media (min-width: 576px) {
  .order-xs-3 {
    order: 3;
  }
}
@media (min-width: 992px) {
  .order-md-3 {
    order: 3;
  }
}
@media (min-width: 1175px) {
  .order-lg-3 {
    order: 3;
  }
}
@media (min-width: 1441px) {
  .order-xl-3 {
    order: 3;
  }
}
.order-4 {
  order: 4;
}

@media (min-width: 576px) {
  .order-xs-4 {
    order: 4;
  }
}
@media (min-width: 992px) {
  .order-md-4 {
    order: 4;
  }
}
@media (min-width: 1175px) {
  .order-lg-4 {
    order: 4;
  }
}
@media (min-width: 1441px) {
  .order-xl-4 {
    order: 4;
  }
}
.order-5 {
  order: 5;
}

@media (min-width: 576px) {
  .order-xs-5 {
    order: 5;
  }
}
@media (min-width: 992px) {
  .order-md-5 {
    order: 5;
  }
}
@media (min-width: 1175px) {
  .order-lg-5 {
    order: 5;
  }
}
@media (min-width: 1441px) {
  .order-xl-5 {
    order: 5;
  }
}
.order-6 {
  order: 6;
}

@media (min-width: 576px) {
  .order-xs-6 {
    order: 6;
  }
}
@media (min-width: 992px) {
  .order-md-6 {
    order: 6;
  }
}
@media (min-width: 1175px) {
  .order-lg-6 {
    order: 6;
  }
}
@media (min-width: 1441px) {
  .order-xl-6 {
    order: 6;
  }
}
.order-7 {
  order: 7;
}

@media (min-width: 576px) {
  .order-xs-7 {
    order: 7;
  }
}
@media (min-width: 992px) {
  .order-md-7 {
    order: 7;
  }
}
@media (min-width: 1175px) {
  .order-lg-7 {
    order: 7;
  }
}
@media (min-width: 1441px) {
  .order-xl-7 {
    order: 7;
  }
}
.order-8 {
  order: 8;
}

@media (min-width: 576px) {
  .order-xs-8 {
    order: 8;
  }
}
@media (min-width: 992px) {
  .order-md-8 {
    order: 8;
  }
}
@media (min-width: 1175px) {
  .order-lg-8 {
    order: 8;
  }
}
@media (min-width: 1441px) {
  .order-xl-8 {
    order: 8;
  }
}
.order-9 {
  order: 9;
}

@media (min-width: 576px) {
  .order-xs-9 {
    order: 9;
  }
}
@media (min-width: 992px) {
  .order-md-9 {
    order: 9;
  }
}
@media (min-width: 1175px) {
  .order-lg-9 {
    order: 9;
  }
}
@media (min-width: 1441px) {
  .order-xl-9 {
    order: 9;
  }
}
.order-10 {
  order: 10;
}

@media (min-width: 576px) {
  .order-xs-10 {
    order: 10;
  }
}
@media (min-width: 992px) {
  .order-md-10 {
    order: 10;
  }
}
@media (min-width: 1175px) {
  .order-lg-10 {
    order: 10;
  }
}
@media (min-width: 1441px) {
  .order-xl-10 {
    order: 10;
  }
}
.order-11 {
  order: 11;
}

@media (min-width: 576px) {
  .order-xs-11 {
    order: 11;
  }
}
@media (min-width: 992px) {
  .order-md-11 {
    order: 11;
  }
}
@media (min-width: 1175px) {
  .order-lg-11 {
    order: 11;
  }
}
@media (min-width: 1441px) {
  .order-xl-11 {
    order: 11;
  }
}
.order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .order-xs-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .order-md-12 {
    order: 12;
  }
}
@media (min-width: 1175px) {
  .order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1441px) {
  .order-xl-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
}
@media (min-width: 992px) {
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
}
@media (min-width: 1175px) {
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
}
@media (min-width: 1441px) {
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
}
.reveal {
  opacity: 0;
  transition: all 0.8s;
}
.reveal.reveal--up {
  transform: translateY(2rem);
}
.reveal.reveal--down {
  transform: translateY(-2rem);
}
.reveal.reveal--left {
  transform: translateX(-2rem);
}
.reveal.reveal--right {
  transform: translateX(2rem);
}
.reveal.reveal--visible {
  opacity: 1;
}
.reveal.reveal--visible.reveal--up {
  transform: translateY(0);
}
.reveal.reveal--visible.reveal--down {
  transform: translateY(0);
}
.reveal.reveal--visible.reveal--left {
  transform: translateX(0);
}
.reveal.reveal--visible.reveal--right {
  transform: translateX(0);
}

@media (max-width: 576px) {
  .w-sm-0 {
    width: 0% !important;
  }
  .h-sm-0 {
    height: 0% !important;
  }
  .max-w-sm-0 {
    max-width: 0% !important;
  }
  .min-w-sm-0 {
    min-width: 0% !important;
  }
  .max-h-sm-0 {
    max-height: 0% !important;
  }
  .min-h-sm-0 {
    min-height: 0% !important;
  }
  .min-sm-vw-0 {
    min-width: 0vw !important;
  }
  .min-sm-vh-0 {
    min-height: 0vh !important;
  }
  .vw-sm-0 {
    width: 0vw !important;
  }
  .vh-sm-0 {
    height: 0vh !important;
  }
  .width-sm-0 {
    width: 0px !important;
  }
  .height-sm-0 {
    height: 0px !important;
  }
  .max-width-sm-0 {
    max-width: 0 px !important;
  }
  .min-width-sm-0 {
    min-width: 0px !important;
  }
  .max-height-sm-0 {
    max-height: 0px !important;
  }
  .min-height-sm-0 {
    min-height: 0px !important;
  }
}
@media (max-width: 768px) {
  .w-md-0 {
    width: 0% !important;
  }
  .h-md-0 {
    height: 0% !important;
  }
  .max-w-md-0 {
    max-width: 0% !important;
  }
  .min-w-md-0 {
    min-width: 0% !important;
  }
  .max-h-md-0 {
    max-height: 0% !important;
  }
  .min-h-md-0 {
    min-height: 0% !important;
  }
  .min-md-vw-0 {
    min-width: 0vw !important;
  }
  .min-md-vh-0 {
    min-height: 0vh !important;
  }
  .vw-md-0 {
    width: 0vw !important;
  }
  .vh-md-0 {
    height: 0vh !important;
  }
  .width-md-0 {
    width: 0px !important;
  }
  .height-md-0 {
    height: 0px !important;
  }
  .max-width-md-0 {
    max-width: 0px !important;
  }
  .min-width-md-0 {
    min-width: 0px !important;
  }
  .max-height-md-0 {
    max-height: 0px !important;
  }
  .min-height-md-0 {
    min-height: 0px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-0 {
    width: 0% !important;
  }
  .h-lg-0 {
    height: 0% !important;
  }
  .max-w-lg-0 {
    max-width: 0% !important;
  }
  .min-w-lg-0 {
    min-width: 0% !important;
  }
  .max-h-lg-0 {
    max-height: 0% !important;
  }
  .min-h-lg-0 {
    min-height: 0% !important;
  }
  .min-lg-vw-0 {
    min-width: 0vw !important;
  }
  .min-lg-vh-0 {
    min-height: 0vh !important;
  }
  .vw-lg-0 {
    width: 0vw !important;
  }
  .vh-lg-0 {
    height: 0vh !important;
  }
  .width-lg-0 {
    width: 0px !important;
  }
  .height-lg-0 {
    height: 0px !important;
  }
  .max-width-lg-0 {
    max-width: 0px !important;
  }
  .min-width-lg-0 {
    min-width: 0px !important;
  }
  .max-height-lg-0 {
    max-height: 0px !important;
  }
  .min-height-lg-0 {
    min-height: 0px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-0 {
    width: 0% !important;
  }
  .h-xl-0 {
    height: 0% !important;
  }
  .max-w-xl-0 {
    max-width: 0% !important;
  }
  .min-w-xl-0 {
    min-width: 0% !important;
  }
  .max-h-xl-0 {
    max-height: 0% !important;
  }
  .min-h-xl-0 {
    min-height: 0% !important;
  }
  .min-xl-vw-0 {
    min-width: 0vw !important;
  }
  .min-xl-vh-0 {
    min-height: 0vh !important;
  }
  .vw-xl-0 {
    width: 0vw !important;
  }
  .vh-xl-0 {
    height: 0vh !important;
  }
  .width-xl-0 {
    width: 0px !important;
  }
  .height-xl-0 {
    height: 0px !important;
  }
  .max-width-xl-0 {
    max-width: 0px !important;
  }
  .min-width-xl-0 {
    min-width: 0px !important;
  }
  .max-height-xl-0 {
    max-height: 0px !important;
  }
  .min-height-xl-0 {
    min-height: 0px !important;
  }
}
.w-0 {
  width: 0% !important;
}

.h-0 {
  height: 0% !important;
}

.max-w-0 {
  max-width: 0% !important;
}

.min-w-0 {
  min-width: 0% !important;
}

.max-h-0 {
  max-height: 0% !important;
}

.min-h-0 {
  min-height: 0% !important;
}

.min-vw-0 {
  min-width: 0vw !important;
}

.min-vh-0 {
  min-height: 0vh !important;
}

.vw-0 {
  width: 0vw !important;
}

.vh-0 {
  height: 0vh !important;
}

.width-0 {
  width: 0px !important;
}

.height-0 {
  height: 0px !important;
}

.max-width-0 {
  max-width: 0px !important;
}

.min-width-0 {
  min-width: 0px !important;
}

.max-height-0 {
  max-height: 0px !important;
}

.min-height-0 {
  min-height: 0px !important;
}

@media (max-width: 576px) {
  .w-sm-10 {
    width: 10% !important;
  }
  .h-sm-10 {
    height: 10% !important;
  }
  .max-w-sm-10 {
    max-width: 10% !important;
  }
  .min-w-sm-10 {
    min-width: 10% !important;
  }
  .max-h-sm-10 {
    max-height: 10% !important;
  }
  .min-h-sm-10 {
    min-height: 10% !important;
  }
  .min-sm-vw-10 {
    min-width: 10vw !important;
  }
  .min-sm-vh-10 {
    min-height: 10vh !important;
  }
  .vw-sm-10 {
    width: 10vw !important;
  }
  .vh-sm-10 {
    height: 10vh !important;
  }
  .width-sm-10 {
    width: 10px !important;
  }
  .height-sm-10 {
    height: 10px !important;
  }
  .max-width-sm-10 {
    max-width: 10 px !important;
  }
  .min-width-sm-10 {
    min-width: 10px !important;
  }
  .max-height-sm-10 {
    max-height: 10px !important;
  }
  .min-height-sm-10 {
    min-height: 10px !important;
  }
}
@media (max-width: 768px) {
  .w-md-10 {
    width: 10% !important;
  }
  .h-md-10 {
    height: 10% !important;
  }
  .max-w-md-10 {
    max-width: 10% !important;
  }
  .min-w-md-10 {
    min-width: 10% !important;
  }
  .max-h-md-10 {
    max-height: 10% !important;
  }
  .min-h-md-10 {
    min-height: 10% !important;
  }
  .min-md-vw-10 {
    min-width: 10vw !important;
  }
  .min-md-vh-10 {
    min-height: 10vh !important;
  }
  .vw-md-10 {
    width: 10vw !important;
  }
  .vh-md-10 {
    height: 10vh !important;
  }
  .width-md-10 {
    width: 10px !important;
  }
  .height-md-10 {
    height: 10px !important;
  }
  .max-width-md-10 {
    max-width: 10px !important;
  }
  .min-width-md-10 {
    min-width: 10px !important;
  }
  .max-height-md-10 {
    max-height: 10px !important;
  }
  .min-height-md-10 {
    min-height: 10px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-10 {
    width: 10% !important;
  }
  .h-lg-10 {
    height: 10% !important;
  }
  .max-w-lg-10 {
    max-width: 10% !important;
  }
  .min-w-lg-10 {
    min-width: 10% !important;
  }
  .max-h-lg-10 {
    max-height: 10% !important;
  }
  .min-h-lg-10 {
    min-height: 10% !important;
  }
  .min-lg-vw-10 {
    min-width: 10vw !important;
  }
  .min-lg-vh-10 {
    min-height: 10vh !important;
  }
  .vw-lg-10 {
    width: 10vw !important;
  }
  .vh-lg-10 {
    height: 10vh !important;
  }
  .width-lg-10 {
    width: 10px !important;
  }
  .height-lg-10 {
    height: 10px !important;
  }
  .max-width-lg-10 {
    max-width: 10px !important;
  }
  .min-width-lg-10 {
    min-width: 10px !important;
  }
  .max-height-lg-10 {
    max-height: 10px !important;
  }
  .min-height-lg-10 {
    min-height: 10px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-10 {
    width: 10% !important;
  }
  .h-xl-10 {
    height: 10% !important;
  }
  .max-w-xl-10 {
    max-width: 10% !important;
  }
  .min-w-xl-10 {
    min-width: 10% !important;
  }
  .max-h-xl-10 {
    max-height: 10% !important;
  }
  .min-h-xl-10 {
    min-height: 10% !important;
  }
  .min-xl-vw-10 {
    min-width: 10vw !important;
  }
  .min-xl-vh-10 {
    min-height: 10vh !important;
  }
  .vw-xl-10 {
    width: 10vw !important;
  }
  .vh-xl-10 {
    height: 10vh !important;
  }
  .width-xl-10 {
    width: 10px !important;
  }
  .height-xl-10 {
    height: 10px !important;
  }
  .max-width-xl-10 {
    max-width: 10px !important;
  }
  .min-width-xl-10 {
    min-width: 10px !important;
  }
  .max-height-xl-10 {
    max-height: 10px !important;
  }
  .min-height-xl-10 {
    min-height: 10px !important;
  }
}
.w-10 {
  width: 10% !important;
}

.h-10 {
  height: 10% !important;
}

.max-w-10 {
  max-width: 10% !important;
}

.min-w-10 {
  min-width: 10% !important;
}

.max-h-10 {
  max-height: 10% !important;
}

.min-h-10 {
  min-height: 10% !important;
}

.min-vw-10 {
  min-width: 10vw !important;
}

.min-vh-10 {
  min-height: 10vh !important;
}

.vw-10 {
  width: 10vw !important;
}

.vh-10 {
  height: 10vh !important;
}

.width-10 {
  width: 10px !important;
}

.height-10 {
  height: 10px !important;
}

.max-width-10 {
  max-width: 10px !important;
}

.min-width-10 {
  min-width: 10px !important;
}

.max-height-10 {
  max-height: 10px !important;
}

.min-height-10 {
  min-height: 10px !important;
}

@media (max-width: 576px) {
  .w-sm-20 {
    width: 20% !important;
  }
  .h-sm-20 {
    height: 20% !important;
  }
  .max-w-sm-20 {
    max-width: 20% !important;
  }
  .min-w-sm-20 {
    min-width: 20% !important;
  }
  .max-h-sm-20 {
    max-height: 20% !important;
  }
  .min-h-sm-20 {
    min-height: 20% !important;
  }
  .min-sm-vw-20 {
    min-width: 20vw !important;
  }
  .min-sm-vh-20 {
    min-height: 20vh !important;
  }
  .vw-sm-20 {
    width: 20vw !important;
  }
  .vh-sm-20 {
    height: 20vh !important;
  }
  .width-sm-20 {
    width: 20px !important;
  }
  .height-sm-20 {
    height: 20px !important;
  }
  .max-width-sm-20 {
    max-width: 20 px !important;
  }
  .min-width-sm-20 {
    min-width: 20px !important;
  }
  .max-height-sm-20 {
    max-height: 20px !important;
  }
  .min-height-sm-20 {
    min-height: 20px !important;
  }
}
@media (max-width: 768px) {
  .w-md-20 {
    width: 20% !important;
  }
  .h-md-20 {
    height: 20% !important;
  }
  .max-w-md-20 {
    max-width: 20% !important;
  }
  .min-w-md-20 {
    min-width: 20% !important;
  }
  .max-h-md-20 {
    max-height: 20% !important;
  }
  .min-h-md-20 {
    min-height: 20% !important;
  }
  .min-md-vw-20 {
    min-width: 20vw !important;
  }
  .min-md-vh-20 {
    min-height: 20vh !important;
  }
  .vw-md-20 {
    width: 20vw !important;
  }
  .vh-md-20 {
    height: 20vh !important;
  }
  .width-md-20 {
    width: 20px !important;
  }
  .height-md-20 {
    height: 20px !important;
  }
  .max-width-md-20 {
    max-width: 20px !important;
  }
  .min-width-md-20 {
    min-width: 20px !important;
  }
  .max-height-md-20 {
    max-height: 20px !important;
  }
  .min-height-md-20 {
    min-height: 20px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-20 {
    width: 20% !important;
  }
  .h-lg-20 {
    height: 20% !important;
  }
  .max-w-lg-20 {
    max-width: 20% !important;
  }
  .min-w-lg-20 {
    min-width: 20% !important;
  }
  .max-h-lg-20 {
    max-height: 20% !important;
  }
  .min-h-lg-20 {
    min-height: 20% !important;
  }
  .min-lg-vw-20 {
    min-width: 20vw !important;
  }
  .min-lg-vh-20 {
    min-height: 20vh !important;
  }
  .vw-lg-20 {
    width: 20vw !important;
  }
  .vh-lg-20 {
    height: 20vh !important;
  }
  .width-lg-20 {
    width: 20px !important;
  }
  .height-lg-20 {
    height: 20px !important;
  }
  .max-width-lg-20 {
    max-width: 20px !important;
  }
  .min-width-lg-20 {
    min-width: 20px !important;
  }
  .max-height-lg-20 {
    max-height: 20px !important;
  }
  .min-height-lg-20 {
    min-height: 20px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-20 {
    width: 20% !important;
  }
  .h-xl-20 {
    height: 20% !important;
  }
  .max-w-xl-20 {
    max-width: 20% !important;
  }
  .min-w-xl-20 {
    min-width: 20% !important;
  }
  .max-h-xl-20 {
    max-height: 20% !important;
  }
  .min-h-xl-20 {
    min-height: 20% !important;
  }
  .min-xl-vw-20 {
    min-width: 20vw !important;
  }
  .min-xl-vh-20 {
    min-height: 20vh !important;
  }
  .vw-xl-20 {
    width: 20vw !important;
  }
  .vh-xl-20 {
    height: 20vh !important;
  }
  .width-xl-20 {
    width: 20px !important;
  }
  .height-xl-20 {
    height: 20px !important;
  }
  .max-width-xl-20 {
    max-width: 20px !important;
  }
  .min-width-xl-20 {
    min-width: 20px !important;
  }
  .max-height-xl-20 {
    max-height: 20px !important;
  }
  .min-height-xl-20 {
    min-height: 20px !important;
  }
}
.w-20 {
  width: 20% !important;
}

.h-20 {
  height: 20% !important;
}

.max-w-20 {
  max-width: 20% !important;
}

.min-w-20 {
  min-width: 20% !important;
}

.max-h-20 {
  max-height: 20% !important;
}

.min-h-20 {
  min-height: 20% !important;
}

.min-vw-20 {
  min-width: 20vw !important;
}

.min-vh-20 {
  min-height: 20vh !important;
}

.vw-20 {
  width: 20vw !important;
}

.vh-20 {
  height: 20vh !important;
}

.width-20 {
  width: 20px !important;
}

.height-20 {
  height: 20px !important;
}

.max-width-20 {
  max-width: 20px !important;
}

.min-width-20 {
  min-width: 20px !important;
}

.max-height-20 {
  max-height: 20px !important;
}

.min-height-20 {
  min-height: 20px !important;
}

@media (max-width: 576px) {
  .w-sm-30 {
    width: 30% !important;
  }
  .h-sm-30 {
    height: 30% !important;
  }
  .max-w-sm-30 {
    max-width: 30% !important;
  }
  .min-w-sm-30 {
    min-width: 30% !important;
  }
  .max-h-sm-30 {
    max-height: 30% !important;
  }
  .min-h-sm-30 {
    min-height: 30% !important;
  }
  .min-sm-vw-30 {
    min-width: 30vw !important;
  }
  .min-sm-vh-30 {
    min-height: 30vh !important;
  }
  .vw-sm-30 {
    width: 30vw !important;
  }
  .vh-sm-30 {
    height: 30vh !important;
  }
  .width-sm-30 {
    width: 30px !important;
  }
  .height-sm-30 {
    height: 30px !important;
  }
  .max-width-sm-30 {
    max-width: 30 px !important;
  }
  .min-width-sm-30 {
    min-width: 30px !important;
  }
  .max-height-sm-30 {
    max-height: 30px !important;
  }
  .min-height-sm-30 {
    min-height: 30px !important;
  }
}
@media (max-width: 768px) {
  .w-md-30 {
    width: 30% !important;
  }
  .h-md-30 {
    height: 30% !important;
  }
  .max-w-md-30 {
    max-width: 30% !important;
  }
  .min-w-md-30 {
    min-width: 30% !important;
  }
  .max-h-md-30 {
    max-height: 30% !important;
  }
  .min-h-md-30 {
    min-height: 30% !important;
  }
  .min-md-vw-30 {
    min-width: 30vw !important;
  }
  .min-md-vh-30 {
    min-height: 30vh !important;
  }
  .vw-md-30 {
    width: 30vw !important;
  }
  .vh-md-30 {
    height: 30vh !important;
  }
  .width-md-30 {
    width: 30px !important;
  }
  .height-md-30 {
    height: 30px !important;
  }
  .max-width-md-30 {
    max-width: 30px !important;
  }
  .min-width-md-30 {
    min-width: 30px !important;
  }
  .max-height-md-30 {
    max-height: 30px !important;
  }
  .min-height-md-30 {
    min-height: 30px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-30 {
    width: 30% !important;
  }
  .h-lg-30 {
    height: 30% !important;
  }
  .max-w-lg-30 {
    max-width: 30% !important;
  }
  .min-w-lg-30 {
    min-width: 30% !important;
  }
  .max-h-lg-30 {
    max-height: 30% !important;
  }
  .min-h-lg-30 {
    min-height: 30% !important;
  }
  .min-lg-vw-30 {
    min-width: 30vw !important;
  }
  .min-lg-vh-30 {
    min-height: 30vh !important;
  }
  .vw-lg-30 {
    width: 30vw !important;
  }
  .vh-lg-30 {
    height: 30vh !important;
  }
  .width-lg-30 {
    width: 30px !important;
  }
  .height-lg-30 {
    height: 30px !important;
  }
  .max-width-lg-30 {
    max-width: 30px !important;
  }
  .min-width-lg-30 {
    min-width: 30px !important;
  }
  .max-height-lg-30 {
    max-height: 30px !important;
  }
  .min-height-lg-30 {
    min-height: 30px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-30 {
    width: 30% !important;
  }
  .h-xl-30 {
    height: 30% !important;
  }
  .max-w-xl-30 {
    max-width: 30% !important;
  }
  .min-w-xl-30 {
    min-width: 30% !important;
  }
  .max-h-xl-30 {
    max-height: 30% !important;
  }
  .min-h-xl-30 {
    min-height: 30% !important;
  }
  .min-xl-vw-30 {
    min-width: 30vw !important;
  }
  .min-xl-vh-30 {
    min-height: 30vh !important;
  }
  .vw-xl-30 {
    width: 30vw !important;
  }
  .vh-xl-30 {
    height: 30vh !important;
  }
  .width-xl-30 {
    width: 30px !important;
  }
  .height-xl-30 {
    height: 30px !important;
  }
  .max-width-xl-30 {
    max-width: 30px !important;
  }
  .min-width-xl-30 {
    min-width: 30px !important;
  }
  .max-height-xl-30 {
    max-height: 30px !important;
  }
  .min-height-xl-30 {
    min-height: 30px !important;
  }
}
.w-30 {
  width: 30% !important;
}

.h-30 {
  height: 30% !important;
}

.max-w-30 {
  max-width: 30% !important;
}

.min-w-30 {
  min-width: 30% !important;
}

.max-h-30 {
  max-height: 30% !important;
}

.min-h-30 {
  min-height: 30% !important;
}

.min-vw-30 {
  min-width: 30vw !important;
}

.min-vh-30 {
  min-height: 30vh !important;
}

.vw-30 {
  width: 30vw !important;
}

.vh-30 {
  height: 30vh !important;
}

.width-30 {
  width: 30px !important;
}

.height-30 {
  height: 30px !important;
}

.max-width-30 {
  max-width: 30px !important;
}

.min-width-30 {
  min-width: 30px !important;
}

.max-height-30 {
  max-height: 30px !important;
}

.min-height-30 {
  min-height: 30px !important;
}

@media (max-width: 576px) {
  .w-sm-40 {
    width: 40% !important;
  }
  .h-sm-40 {
    height: 40% !important;
  }
  .max-w-sm-40 {
    max-width: 40% !important;
  }
  .min-w-sm-40 {
    min-width: 40% !important;
  }
  .max-h-sm-40 {
    max-height: 40% !important;
  }
  .min-h-sm-40 {
    min-height: 40% !important;
  }
  .min-sm-vw-40 {
    min-width: 40vw !important;
  }
  .min-sm-vh-40 {
    min-height: 40vh !important;
  }
  .vw-sm-40 {
    width: 40vw !important;
  }
  .vh-sm-40 {
    height: 40vh !important;
  }
  .width-sm-40 {
    width: 40px !important;
  }
  .height-sm-40 {
    height: 40px !important;
  }
  .max-width-sm-40 {
    max-width: 40 px !important;
  }
  .min-width-sm-40 {
    min-width: 40px !important;
  }
  .max-height-sm-40 {
    max-height: 40px !important;
  }
  .min-height-sm-40 {
    min-height: 40px !important;
  }
}
@media (max-width: 768px) {
  .w-md-40 {
    width: 40% !important;
  }
  .h-md-40 {
    height: 40% !important;
  }
  .max-w-md-40 {
    max-width: 40% !important;
  }
  .min-w-md-40 {
    min-width: 40% !important;
  }
  .max-h-md-40 {
    max-height: 40% !important;
  }
  .min-h-md-40 {
    min-height: 40% !important;
  }
  .min-md-vw-40 {
    min-width: 40vw !important;
  }
  .min-md-vh-40 {
    min-height: 40vh !important;
  }
  .vw-md-40 {
    width: 40vw !important;
  }
  .vh-md-40 {
    height: 40vh !important;
  }
  .width-md-40 {
    width: 40px !important;
  }
  .height-md-40 {
    height: 40px !important;
  }
  .max-width-md-40 {
    max-width: 40px !important;
  }
  .min-width-md-40 {
    min-width: 40px !important;
  }
  .max-height-md-40 {
    max-height: 40px !important;
  }
  .min-height-md-40 {
    min-height: 40px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-40 {
    width: 40% !important;
  }
  .h-lg-40 {
    height: 40% !important;
  }
  .max-w-lg-40 {
    max-width: 40% !important;
  }
  .min-w-lg-40 {
    min-width: 40% !important;
  }
  .max-h-lg-40 {
    max-height: 40% !important;
  }
  .min-h-lg-40 {
    min-height: 40% !important;
  }
  .min-lg-vw-40 {
    min-width: 40vw !important;
  }
  .min-lg-vh-40 {
    min-height: 40vh !important;
  }
  .vw-lg-40 {
    width: 40vw !important;
  }
  .vh-lg-40 {
    height: 40vh !important;
  }
  .width-lg-40 {
    width: 40px !important;
  }
  .height-lg-40 {
    height: 40px !important;
  }
  .max-width-lg-40 {
    max-width: 40px !important;
  }
  .min-width-lg-40 {
    min-width: 40px !important;
  }
  .max-height-lg-40 {
    max-height: 40px !important;
  }
  .min-height-lg-40 {
    min-height: 40px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-40 {
    width: 40% !important;
  }
  .h-xl-40 {
    height: 40% !important;
  }
  .max-w-xl-40 {
    max-width: 40% !important;
  }
  .min-w-xl-40 {
    min-width: 40% !important;
  }
  .max-h-xl-40 {
    max-height: 40% !important;
  }
  .min-h-xl-40 {
    min-height: 40% !important;
  }
  .min-xl-vw-40 {
    min-width: 40vw !important;
  }
  .min-xl-vh-40 {
    min-height: 40vh !important;
  }
  .vw-xl-40 {
    width: 40vw !important;
  }
  .vh-xl-40 {
    height: 40vh !important;
  }
  .width-xl-40 {
    width: 40px !important;
  }
  .height-xl-40 {
    height: 40px !important;
  }
  .max-width-xl-40 {
    max-width: 40px !important;
  }
  .min-width-xl-40 {
    min-width: 40px !important;
  }
  .max-height-xl-40 {
    max-height: 40px !important;
  }
  .min-height-xl-40 {
    min-height: 40px !important;
  }
}
.w-40 {
  width: 40% !important;
}

.h-40 {
  height: 40% !important;
}

.max-w-40 {
  max-width: 40% !important;
}

.min-w-40 {
  min-width: 40% !important;
}

.max-h-40 {
  max-height: 40% !important;
}

.min-h-40 {
  min-height: 40% !important;
}

.min-vw-40 {
  min-width: 40vw !important;
}

.min-vh-40 {
  min-height: 40vh !important;
}

.vw-40 {
  width: 40vw !important;
}

.vh-40 {
  height: 40vh !important;
}

.width-40 {
  width: 40px !important;
}

.height-40 {
  height: 40px !important;
}

.max-width-40 {
  max-width: 40px !important;
}

.min-width-40 {
  min-width: 40px !important;
}

.max-height-40 {
  max-height: 40px !important;
}

.min-height-40 {
  min-height: 40px !important;
}

@media (max-width: 576px) {
  .w-sm-50 {
    width: 50% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .max-w-sm-50 {
    max-width: 50% !important;
  }
  .min-w-sm-50 {
    min-width: 50% !important;
  }
  .max-h-sm-50 {
    max-height: 50% !important;
  }
  .min-h-sm-50 {
    min-height: 50% !important;
  }
  .min-sm-vw-50 {
    min-width: 50vw !important;
  }
  .min-sm-vh-50 {
    min-height: 50vh !important;
  }
  .vw-sm-50 {
    width: 50vw !important;
  }
  .vh-sm-50 {
    height: 50vh !important;
  }
  .width-sm-50 {
    width: 50px !important;
  }
  .height-sm-50 {
    height: 50px !important;
  }
  .max-width-sm-50 {
    max-width: 50 px !important;
  }
  .min-width-sm-50 {
    min-width: 50px !important;
  }
  .max-height-sm-50 {
    max-height: 50px !important;
  }
  .min-height-sm-50 {
    min-height: 50px !important;
  }
}
@media (max-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .max-w-md-50 {
    max-width: 50% !important;
  }
  .min-w-md-50 {
    min-width: 50% !important;
  }
  .max-h-md-50 {
    max-height: 50% !important;
  }
  .min-h-md-50 {
    min-height: 50% !important;
  }
  .min-md-vw-50 {
    min-width: 50vw !important;
  }
  .min-md-vh-50 {
    min-height: 50vh !important;
  }
  .vw-md-50 {
    width: 50vw !important;
  }
  .vh-md-50 {
    height: 50vh !important;
  }
  .width-md-50 {
    width: 50px !important;
  }
  .height-md-50 {
    height: 50px !important;
  }
  .max-width-md-50 {
    max-width: 50px !important;
  }
  .min-width-md-50 {
    min-width: 50px !important;
  }
  .max-height-md-50 {
    max-height: 50px !important;
  }
  .min-height-md-50 {
    min-height: 50px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .max-w-lg-50 {
    max-width: 50% !important;
  }
  .min-w-lg-50 {
    min-width: 50% !important;
  }
  .max-h-lg-50 {
    max-height: 50% !important;
  }
  .min-h-lg-50 {
    min-height: 50% !important;
  }
  .min-lg-vw-50 {
    min-width: 50vw !important;
  }
  .min-lg-vh-50 {
    min-height: 50vh !important;
  }
  .vw-lg-50 {
    width: 50vw !important;
  }
  .vh-lg-50 {
    height: 50vh !important;
  }
  .width-lg-50 {
    width: 50px !important;
  }
  .height-lg-50 {
    height: 50px !important;
  }
  .max-width-lg-50 {
    max-width: 50px !important;
  }
  .min-width-lg-50 {
    min-width: 50px !important;
  }
  .max-height-lg-50 {
    max-height: 50px !important;
  }
  .min-height-lg-50 {
    min-height: 50px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-50 {
    width: 50% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .max-w-xl-50 {
    max-width: 50% !important;
  }
  .min-w-xl-50 {
    min-width: 50% !important;
  }
  .max-h-xl-50 {
    max-height: 50% !important;
  }
  .min-h-xl-50 {
    min-height: 50% !important;
  }
  .min-xl-vw-50 {
    min-width: 50vw !important;
  }
  .min-xl-vh-50 {
    min-height: 50vh !important;
  }
  .vw-xl-50 {
    width: 50vw !important;
  }
  .vh-xl-50 {
    height: 50vh !important;
  }
  .width-xl-50 {
    width: 50px !important;
  }
  .height-xl-50 {
    height: 50px !important;
  }
  .max-width-xl-50 {
    max-width: 50px !important;
  }
  .min-width-xl-50 {
    min-width: 50px !important;
  }
  .max-height-xl-50 {
    max-height: 50px !important;
  }
  .min-height-xl-50 {
    min-height: 50px !important;
  }
}
.w-50 {
  width: 50% !important;
}

.h-50 {
  height: 50% !important;
}

.max-w-50 {
  max-width: 50% !important;
}

.min-w-50 {
  min-width: 50% !important;
}

.max-h-50 {
  max-height: 50% !important;
}

.min-h-50 {
  min-height: 50% !important;
}

.min-vw-50 {
  min-width: 50vw !important;
}

.min-vh-50 {
  min-height: 50vh !important;
}

.vw-50 {
  width: 50vw !important;
}

.vh-50 {
  height: 50vh !important;
}

.width-50 {
  width: 50px !important;
}

.height-50 {
  height: 50px !important;
}

.max-width-50 {
  max-width: 50px !important;
}

.min-width-50 {
  min-width: 50px !important;
}

.max-height-50 {
  max-height: 50px !important;
}

.min-height-50 {
  min-height: 50px !important;
}

@media (max-width: 576px) {
  .w-sm-60 {
    width: 60% !important;
  }
  .h-sm-60 {
    height: 60% !important;
  }
  .max-w-sm-60 {
    max-width: 60% !important;
  }
  .min-w-sm-60 {
    min-width: 60% !important;
  }
  .max-h-sm-60 {
    max-height: 60% !important;
  }
  .min-h-sm-60 {
    min-height: 60% !important;
  }
  .min-sm-vw-60 {
    min-width: 60vw !important;
  }
  .min-sm-vh-60 {
    min-height: 60vh !important;
  }
  .vw-sm-60 {
    width: 60vw !important;
  }
  .vh-sm-60 {
    height: 60vh !important;
  }
  .width-sm-60 {
    width: 60px !important;
  }
  .height-sm-60 {
    height: 60px !important;
  }
  .max-width-sm-60 {
    max-width: 60 px !important;
  }
  .min-width-sm-60 {
    min-width: 60px !important;
  }
  .max-height-sm-60 {
    max-height: 60px !important;
  }
  .min-height-sm-60 {
    min-height: 60px !important;
  }
}
@media (max-width: 768px) {
  .w-md-60 {
    width: 60% !important;
  }
  .h-md-60 {
    height: 60% !important;
  }
  .max-w-md-60 {
    max-width: 60% !important;
  }
  .min-w-md-60 {
    min-width: 60% !important;
  }
  .max-h-md-60 {
    max-height: 60% !important;
  }
  .min-h-md-60 {
    min-height: 60% !important;
  }
  .min-md-vw-60 {
    min-width: 60vw !important;
  }
  .min-md-vh-60 {
    min-height: 60vh !important;
  }
  .vw-md-60 {
    width: 60vw !important;
  }
  .vh-md-60 {
    height: 60vh !important;
  }
  .width-md-60 {
    width: 60px !important;
  }
  .height-md-60 {
    height: 60px !important;
  }
  .max-width-md-60 {
    max-width: 60px !important;
  }
  .min-width-md-60 {
    min-width: 60px !important;
  }
  .max-height-md-60 {
    max-height: 60px !important;
  }
  .min-height-md-60 {
    min-height: 60px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-60 {
    width: 60% !important;
  }
  .h-lg-60 {
    height: 60% !important;
  }
  .max-w-lg-60 {
    max-width: 60% !important;
  }
  .min-w-lg-60 {
    min-width: 60% !important;
  }
  .max-h-lg-60 {
    max-height: 60% !important;
  }
  .min-h-lg-60 {
    min-height: 60% !important;
  }
  .min-lg-vw-60 {
    min-width: 60vw !important;
  }
  .min-lg-vh-60 {
    min-height: 60vh !important;
  }
  .vw-lg-60 {
    width: 60vw !important;
  }
  .vh-lg-60 {
    height: 60vh !important;
  }
  .width-lg-60 {
    width: 60px !important;
  }
  .height-lg-60 {
    height: 60px !important;
  }
  .max-width-lg-60 {
    max-width: 60px !important;
  }
  .min-width-lg-60 {
    min-width: 60px !important;
  }
  .max-height-lg-60 {
    max-height: 60px !important;
  }
  .min-height-lg-60 {
    min-height: 60px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-60 {
    width: 60% !important;
  }
  .h-xl-60 {
    height: 60% !important;
  }
  .max-w-xl-60 {
    max-width: 60% !important;
  }
  .min-w-xl-60 {
    min-width: 60% !important;
  }
  .max-h-xl-60 {
    max-height: 60% !important;
  }
  .min-h-xl-60 {
    min-height: 60% !important;
  }
  .min-xl-vw-60 {
    min-width: 60vw !important;
  }
  .min-xl-vh-60 {
    min-height: 60vh !important;
  }
  .vw-xl-60 {
    width: 60vw !important;
  }
  .vh-xl-60 {
    height: 60vh !important;
  }
  .width-xl-60 {
    width: 60px !important;
  }
  .height-xl-60 {
    height: 60px !important;
  }
  .max-width-xl-60 {
    max-width: 60px !important;
  }
  .min-width-xl-60 {
    min-width: 60px !important;
  }
  .max-height-xl-60 {
    max-height: 60px !important;
  }
  .min-height-xl-60 {
    min-height: 60px !important;
  }
}
.w-60 {
  width: 60% !important;
}

.h-60 {
  height: 60% !important;
}

.max-w-60 {
  max-width: 60% !important;
}

.min-w-60 {
  min-width: 60% !important;
}

.max-h-60 {
  max-height: 60% !important;
}

.min-h-60 {
  min-height: 60% !important;
}

.min-vw-60 {
  min-width: 60vw !important;
}

.min-vh-60 {
  min-height: 60vh !important;
}

.vw-60 {
  width: 60vw !important;
}

.vh-60 {
  height: 60vh !important;
}

.width-60 {
  width: 60px !important;
}

.height-60 {
  height: 60px !important;
}

.max-width-60 {
  max-width: 60px !important;
}

.min-width-60 {
  min-width: 60px !important;
}

.max-height-60 {
  max-height: 60px !important;
}

.min-height-60 {
  min-height: 60px !important;
}

@media (max-width: 576px) {
  .w-sm-70 {
    width: 70% !important;
  }
  .h-sm-70 {
    height: 70% !important;
  }
  .max-w-sm-70 {
    max-width: 70% !important;
  }
  .min-w-sm-70 {
    min-width: 70% !important;
  }
  .max-h-sm-70 {
    max-height: 70% !important;
  }
  .min-h-sm-70 {
    min-height: 70% !important;
  }
  .min-sm-vw-70 {
    min-width: 70vw !important;
  }
  .min-sm-vh-70 {
    min-height: 70vh !important;
  }
  .vw-sm-70 {
    width: 70vw !important;
  }
  .vh-sm-70 {
    height: 70vh !important;
  }
  .width-sm-70 {
    width: 70px !important;
  }
  .height-sm-70 {
    height: 70px !important;
  }
  .max-width-sm-70 {
    max-width: 70 px !important;
  }
  .min-width-sm-70 {
    min-width: 70px !important;
  }
  .max-height-sm-70 {
    max-height: 70px !important;
  }
  .min-height-sm-70 {
    min-height: 70px !important;
  }
}
@media (max-width: 768px) {
  .w-md-70 {
    width: 70% !important;
  }
  .h-md-70 {
    height: 70% !important;
  }
  .max-w-md-70 {
    max-width: 70% !important;
  }
  .min-w-md-70 {
    min-width: 70% !important;
  }
  .max-h-md-70 {
    max-height: 70% !important;
  }
  .min-h-md-70 {
    min-height: 70% !important;
  }
  .min-md-vw-70 {
    min-width: 70vw !important;
  }
  .min-md-vh-70 {
    min-height: 70vh !important;
  }
  .vw-md-70 {
    width: 70vw !important;
  }
  .vh-md-70 {
    height: 70vh !important;
  }
  .width-md-70 {
    width: 70px !important;
  }
  .height-md-70 {
    height: 70px !important;
  }
  .max-width-md-70 {
    max-width: 70px !important;
  }
  .min-width-md-70 {
    min-width: 70px !important;
  }
  .max-height-md-70 {
    max-height: 70px !important;
  }
  .min-height-md-70 {
    min-height: 70px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-70 {
    width: 70% !important;
  }
  .h-lg-70 {
    height: 70% !important;
  }
  .max-w-lg-70 {
    max-width: 70% !important;
  }
  .min-w-lg-70 {
    min-width: 70% !important;
  }
  .max-h-lg-70 {
    max-height: 70% !important;
  }
  .min-h-lg-70 {
    min-height: 70% !important;
  }
  .min-lg-vw-70 {
    min-width: 70vw !important;
  }
  .min-lg-vh-70 {
    min-height: 70vh !important;
  }
  .vw-lg-70 {
    width: 70vw !important;
  }
  .vh-lg-70 {
    height: 70vh !important;
  }
  .width-lg-70 {
    width: 70px !important;
  }
  .height-lg-70 {
    height: 70px !important;
  }
  .max-width-lg-70 {
    max-width: 70px !important;
  }
  .min-width-lg-70 {
    min-width: 70px !important;
  }
  .max-height-lg-70 {
    max-height: 70px !important;
  }
  .min-height-lg-70 {
    min-height: 70px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-70 {
    width: 70% !important;
  }
  .h-xl-70 {
    height: 70% !important;
  }
  .max-w-xl-70 {
    max-width: 70% !important;
  }
  .min-w-xl-70 {
    min-width: 70% !important;
  }
  .max-h-xl-70 {
    max-height: 70% !important;
  }
  .min-h-xl-70 {
    min-height: 70% !important;
  }
  .min-xl-vw-70 {
    min-width: 70vw !important;
  }
  .min-xl-vh-70 {
    min-height: 70vh !important;
  }
  .vw-xl-70 {
    width: 70vw !important;
  }
  .vh-xl-70 {
    height: 70vh !important;
  }
  .width-xl-70 {
    width: 70px !important;
  }
  .height-xl-70 {
    height: 70px !important;
  }
  .max-width-xl-70 {
    max-width: 70px !important;
  }
  .min-width-xl-70 {
    min-width: 70px !important;
  }
  .max-height-xl-70 {
    max-height: 70px !important;
  }
  .min-height-xl-70 {
    min-height: 70px !important;
  }
}
.w-70 {
  width: 70% !important;
}

.h-70 {
  height: 70% !important;
}

.max-w-70 {
  max-width: 70% !important;
}

.min-w-70 {
  min-width: 70% !important;
}

.max-h-70 {
  max-height: 70% !important;
}

.min-h-70 {
  min-height: 70% !important;
}

.min-vw-70 {
  min-width: 70vw !important;
}

.min-vh-70 {
  min-height: 70vh !important;
}

.vw-70 {
  width: 70vw !important;
}

.vh-70 {
  height: 70vh !important;
}

.width-70 {
  width: 70px !important;
}

.height-70 {
  height: 70px !important;
}

.max-width-70 {
  max-width: 70px !important;
}

.min-width-70 {
  min-width: 70px !important;
}

.max-height-70 {
  max-height: 70px !important;
}

.min-height-70 {
  min-height: 70px !important;
}

@media (max-width: 576px) {
  .w-sm-80 {
    width: 80% !important;
  }
  .h-sm-80 {
    height: 80% !important;
  }
  .max-w-sm-80 {
    max-width: 80% !important;
  }
  .min-w-sm-80 {
    min-width: 80% !important;
  }
  .max-h-sm-80 {
    max-height: 80% !important;
  }
  .min-h-sm-80 {
    min-height: 80% !important;
  }
  .min-sm-vw-80 {
    min-width: 80vw !important;
  }
  .min-sm-vh-80 {
    min-height: 80vh !important;
  }
  .vw-sm-80 {
    width: 80vw !important;
  }
  .vh-sm-80 {
    height: 80vh !important;
  }
  .width-sm-80 {
    width: 80px !important;
  }
  .height-sm-80 {
    height: 80px !important;
  }
  .max-width-sm-80 {
    max-width: 80 px !important;
  }
  .min-width-sm-80 {
    min-width: 80px !important;
  }
  .max-height-sm-80 {
    max-height: 80px !important;
  }
  .min-height-sm-80 {
    min-height: 80px !important;
  }
}
@media (max-width: 768px) {
  .w-md-80 {
    width: 80% !important;
  }
  .h-md-80 {
    height: 80% !important;
  }
  .max-w-md-80 {
    max-width: 80% !important;
  }
  .min-w-md-80 {
    min-width: 80% !important;
  }
  .max-h-md-80 {
    max-height: 80% !important;
  }
  .min-h-md-80 {
    min-height: 80% !important;
  }
  .min-md-vw-80 {
    min-width: 80vw !important;
  }
  .min-md-vh-80 {
    min-height: 80vh !important;
  }
  .vw-md-80 {
    width: 80vw !important;
  }
  .vh-md-80 {
    height: 80vh !important;
  }
  .width-md-80 {
    width: 80px !important;
  }
  .height-md-80 {
    height: 80px !important;
  }
  .max-width-md-80 {
    max-width: 80px !important;
  }
  .min-width-md-80 {
    min-width: 80px !important;
  }
  .max-height-md-80 {
    max-height: 80px !important;
  }
  .min-height-md-80 {
    min-height: 80px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-80 {
    width: 80% !important;
  }
  .h-lg-80 {
    height: 80% !important;
  }
  .max-w-lg-80 {
    max-width: 80% !important;
  }
  .min-w-lg-80 {
    min-width: 80% !important;
  }
  .max-h-lg-80 {
    max-height: 80% !important;
  }
  .min-h-lg-80 {
    min-height: 80% !important;
  }
  .min-lg-vw-80 {
    min-width: 80vw !important;
  }
  .min-lg-vh-80 {
    min-height: 80vh !important;
  }
  .vw-lg-80 {
    width: 80vw !important;
  }
  .vh-lg-80 {
    height: 80vh !important;
  }
  .width-lg-80 {
    width: 80px !important;
  }
  .height-lg-80 {
    height: 80px !important;
  }
  .max-width-lg-80 {
    max-width: 80px !important;
  }
  .min-width-lg-80 {
    min-width: 80px !important;
  }
  .max-height-lg-80 {
    max-height: 80px !important;
  }
  .min-height-lg-80 {
    min-height: 80px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-80 {
    width: 80% !important;
  }
  .h-xl-80 {
    height: 80% !important;
  }
  .max-w-xl-80 {
    max-width: 80% !important;
  }
  .min-w-xl-80 {
    min-width: 80% !important;
  }
  .max-h-xl-80 {
    max-height: 80% !important;
  }
  .min-h-xl-80 {
    min-height: 80% !important;
  }
  .min-xl-vw-80 {
    min-width: 80vw !important;
  }
  .min-xl-vh-80 {
    min-height: 80vh !important;
  }
  .vw-xl-80 {
    width: 80vw !important;
  }
  .vh-xl-80 {
    height: 80vh !important;
  }
  .width-xl-80 {
    width: 80px !important;
  }
  .height-xl-80 {
    height: 80px !important;
  }
  .max-width-xl-80 {
    max-width: 80px !important;
  }
  .min-width-xl-80 {
    min-width: 80px !important;
  }
  .max-height-xl-80 {
    max-height: 80px !important;
  }
  .min-height-xl-80 {
    min-height: 80px !important;
  }
}
.w-80 {
  width: 80% !important;
}

.h-80 {
  height: 80% !important;
}

.max-w-80 {
  max-width: 80% !important;
}

.min-w-80 {
  min-width: 80% !important;
}

.max-h-80 {
  max-height: 80% !important;
}

.min-h-80 {
  min-height: 80% !important;
}

.min-vw-80 {
  min-width: 80vw !important;
}

.min-vh-80 {
  min-height: 80vh !important;
}

.vw-80 {
  width: 80vw !important;
}

.vh-80 {
  height: 80vh !important;
}

.width-80 {
  width: 80px !important;
}

.height-80 {
  height: 80px !important;
}

.max-width-80 {
  max-width: 80px !important;
}

.min-width-80 {
  min-width: 80px !important;
}

.max-height-80 {
  max-height: 80px !important;
}

.min-height-80 {
  min-height: 80px !important;
}

@media (max-width: 576px) {
  .w-sm-90 {
    width: 90% !important;
  }
  .h-sm-90 {
    height: 90% !important;
  }
  .max-w-sm-90 {
    max-width: 90% !important;
  }
  .min-w-sm-90 {
    min-width: 90% !important;
  }
  .max-h-sm-90 {
    max-height: 90% !important;
  }
  .min-h-sm-90 {
    min-height: 90% !important;
  }
  .min-sm-vw-90 {
    min-width: 90vw !important;
  }
  .min-sm-vh-90 {
    min-height: 90vh !important;
  }
  .vw-sm-90 {
    width: 90vw !important;
  }
  .vh-sm-90 {
    height: 90vh !important;
  }
  .width-sm-90 {
    width: 90px !important;
  }
  .height-sm-90 {
    height: 90px !important;
  }
  .max-width-sm-90 {
    max-width: 90 px !important;
  }
  .min-width-sm-90 {
    min-width: 90px !important;
  }
  .max-height-sm-90 {
    max-height: 90px !important;
  }
  .min-height-sm-90 {
    min-height: 90px !important;
  }
}
@media (max-width: 768px) {
  .w-md-90 {
    width: 90% !important;
  }
  .h-md-90 {
    height: 90% !important;
  }
  .max-w-md-90 {
    max-width: 90% !important;
  }
  .min-w-md-90 {
    min-width: 90% !important;
  }
  .max-h-md-90 {
    max-height: 90% !important;
  }
  .min-h-md-90 {
    min-height: 90% !important;
  }
  .min-md-vw-90 {
    min-width: 90vw !important;
  }
  .min-md-vh-90 {
    min-height: 90vh !important;
  }
  .vw-md-90 {
    width: 90vw !important;
  }
  .vh-md-90 {
    height: 90vh !important;
  }
  .width-md-90 {
    width: 90px !important;
  }
  .height-md-90 {
    height: 90px !important;
  }
  .max-width-md-90 {
    max-width: 90px !important;
  }
  .min-width-md-90 {
    min-width: 90px !important;
  }
  .max-height-md-90 {
    max-height: 90px !important;
  }
  .min-height-md-90 {
    min-height: 90px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-90 {
    width: 90% !important;
  }
  .h-lg-90 {
    height: 90% !important;
  }
  .max-w-lg-90 {
    max-width: 90% !important;
  }
  .min-w-lg-90 {
    min-width: 90% !important;
  }
  .max-h-lg-90 {
    max-height: 90% !important;
  }
  .min-h-lg-90 {
    min-height: 90% !important;
  }
  .min-lg-vw-90 {
    min-width: 90vw !important;
  }
  .min-lg-vh-90 {
    min-height: 90vh !important;
  }
  .vw-lg-90 {
    width: 90vw !important;
  }
  .vh-lg-90 {
    height: 90vh !important;
  }
  .width-lg-90 {
    width: 90px !important;
  }
  .height-lg-90 {
    height: 90px !important;
  }
  .max-width-lg-90 {
    max-width: 90px !important;
  }
  .min-width-lg-90 {
    min-width: 90px !important;
  }
  .max-height-lg-90 {
    max-height: 90px !important;
  }
  .min-height-lg-90 {
    min-height: 90px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-90 {
    width: 90% !important;
  }
  .h-xl-90 {
    height: 90% !important;
  }
  .max-w-xl-90 {
    max-width: 90% !important;
  }
  .min-w-xl-90 {
    min-width: 90% !important;
  }
  .max-h-xl-90 {
    max-height: 90% !important;
  }
  .min-h-xl-90 {
    min-height: 90% !important;
  }
  .min-xl-vw-90 {
    min-width: 90vw !important;
  }
  .min-xl-vh-90 {
    min-height: 90vh !important;
  }
  .vw-xl-90 {
    width: 90vw !important;
  }
  .vh-xl-90 {
    height: 90vh !important;
  }
  .width-xl-90 {
    width: 90px !important;
  }
  .height-xl-90 {
    height: 90px !important;
  }
  .max-width-xl-90 {
    max-width: 90px !important;
  }
  .min-width-xl-90 {
    min-width: 90px !important;
  }
  .max-height-xl-90 {
    max-height: 90px !important;
  }
  .min-height-xl-90 {
    min-height: 90px !important;
  }
}
.w-90 {
  width: 90% !important;
}

.h-90 {
  height: 90% !important;
}

.max-w-90 {
  max-width: 90% !important;
}

.min-w-90 {
  min-width: 90% !important;
}

.max-h-90 {
  max-height: 90% !important;
}

.min-h-90 {
  min-height: 90% !important;
}

.min-vw-90 {
  min-width: 90vw !important;
}

.min-vh-90 {
  min-height: 90vh !important;
}

.vw-90 {
  width: 90vw !important;
}

.vh-90 {
  height: 90vh !important;
}

.width-90 {
  width: 90px !important;
}

.height-90 {
  height: 90px !important;
}

.max-width-90 {
  max-width: 90px !important;
}

.min-width-90 {
  min-width: 90px !important;
}

.max-height-90 {
  max-height: 90px !important;
}

.min-height-90 {
  min-height: 90px !important;
}

@media (max-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .max-w-sm-100 {
    max-width: 100% !important;
  }
  .min-w-sm-100 {
    min-width: 100% !important;
  }
  .max-h-sm-100 {
    max-height: 100% !important;
  }
  .min-h-sm-100 {
    min-height: 100% !important;
  }
  .min-sm-vw-100 {
    min-width: 100vw !important;
  }
  .min-sm-vh-100 {
    min-height: 100vh !important;
  }
  .vw-sm-100 {
    width: 100vw !important;
  }
  .vh-sm-100 {
    height: 100vh !important;
  }
  .width-sm-100 {
    width: 100px !important;
  }
  .height-sm-100 {
    height: 100px !important;
  }
  .max-width-sm-100 {
    max-width: 100 px !important;
  }
  .min-width-sm-100 {
    min-width: 100px !important;
  }
  .max-height-sm-100 {
    max-height: 100px !important;
  }
  .min-height-sm-100 {
    min-height: 100px !important;
  }
}
@media (max-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .max-w-md-100 {
    max-width: 100% !important;
  }
  .min-w-md-100 {
    min-width: 100% !important;
  }
  .max-h-md-100 {
    max-height: 100% !important;
  }
  .min-h-md-100 {
    min-height: 100% !important;
  }
  .min-md-vw-100 {
    min-width: 100vw !important;
  }
  .min-md-vh-100 {
    min-height: 100vh !important;
  }
  .vw-md-100 {
    width: 100vw !important;
  }
  .vh-md-100 {
    height: 100vh !important;
  }
  .width-md-100 {
    width: 100px !important;
  }
  .height-md-100 {
    height: 100px !important;
  }
  .max-width-md-100 {
    max-width: 100px !important;
  }
  .min-width-md-100 {
    min-width: 100px !important;
  }
  .max-height-md-100 {
    max-height: 100px !important;
  }
  .min-height-md-100 {
    min-height: 100px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-100 {
    width: 100% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .max-w-lg-100 {
    max-width: 100% !important;
  }
  .min-w-lg-100 {
    min-width: 100% !important;
  }
  .max-h-lg-100 {
    max-height: 100% !important;
  }
  .min-h-lg-100 {
    min-height: 100% !important;
  }
  .min-lg-vw-100 {
    min-width: 100vw !important;
  }
  .min-lg-vh-100 {
    min-height: 100vh !important;
  }
  .vw-lg-100 {
    width: 100vw !important;
  }
  .vh-lg-100 {
    height: 100vh !important;
  }
  .width-lg-100 {
    width: 100px !important;
  }
  .height-lg-100 {
    height: 100px !important;
  }
  .max-width-lg-100 {
    max-width: 100px !important;
  }
  .min-width-lg-100 {
    min-width: 100px !important;
  }
  .max-height-lg-100 {
    max-height: 100px !important;
  }
  .min-height-lg-100 {
    min-height: 100px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-100 {
    width: 100% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .max-w-xl-100 {
    max-width: 100% !important;
  }
  .min-w-xl-100 {
    min-width: 100% !important;
  }
  .max-h-xl-100 {
    max-height: 100% !important;
  }
  .min-h-xl-100 {
    min-height: 100% !important;
  }
  .min-xl-vw-100 {
    min-width: 100vw !important;
  }
  .min-xl-vh-100 {
    min-height: 100vh !important;
  }
  .vw-xl-100 {
    width: 100vw !important;
  }
  .vh-xl-100 {
    height: 100vh !important;
  }
  .width-xl-100 {
    width: 100px !important;
  }
  .height-xl-100 {
    height: 100px !important;
  }
  .max-width-xl-100 {
    max-width: 100px !important;
  }
  .min-width-xl-100 {
    min-width: 100px !important;
  }
  .max-height-xl-100 {
    max-height: 100px !important;
  }
  .min-height-xl-100 {
    min-height: 100px !important;
  }
}
.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.max-w-100 {
  max-width: 100% !important;
}

.min-w-100 {
  min-width: 100% !important;
}

.max-h-100 {
  max-height: 100% !important;
}

.min-h-100 {
  min-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.width-100 {
  width: 100px !important;
}

.height-100 {
  height: 100px !important;
}

.max-width-100 {
  max-width: 100px !important;
}

.min-width-100 {
  min-width: 100px !important;
}

.max-height-100 {
  max-height: 100px !important;
}

.min-height-100 {
  min-height: 100px !important;
}

@media (max-width: 576px) {
  .w-sm-110 {
    width: 110% !important;
  }
  .h-sm-110 {
    height: 110% !important;
  }
  .max-w-sm-110 {
    max-width: 110% !important;
  }
  .min-w-sm-110 {
    min-width: 110% !important;
  }
  .max-h-sm-110 {
    max-height: 110% !important;
  }
  .min-h-sm-110 {
    min-height: 110% !important;
  }
  .min-sm-vw-110 {
    min-width: 110vw !important;
  }
  .min-sm-vh-110 {
    min-height: 110vh !important;
  }
  .vw-sm-110 {
    width: 110vw !important;
  }
  .vh-sm-110 {
    height: 110vh !important;
  }
  .width-sm-110 {
    width: 110px !important;
  }
  .height-sm-110 {
    height: 110px !important;
  }
  .max-width-sm-110 {
    max-width: 110 px !important;
  }
  .min-width-sm-110 {
    min-width: 110px !important;
  }
  .max-height-sm-110 {
    max-height: 110px !important;
  }
  .min-height-sm-110 {
    min-height: 110px !important;
  }
}
@media (max-width: 768px) {
  .w-md-110 {
    width: 110% !important;
  }
  .h-md-110 {
    height: 110% !important;
  }
  .max-w-md-110 {
    max-width: 110% !important;
  }
  .min-w-md-110 {
    min-width: 110% !important;
  }
  .max-h-md-110 {
    max-height: 110% !important;
  }
  .min-h-md-110 {
    min-height: 110% !important;
  }
  .min-md-vw-110 {
    min-width: 110vw !important;
  }
  .min-md-vh-110 {
    min-height: 110vh !important;
  }
  .vw-md-110 {
    width: 110vw !important;
  }
  .vh-md-110 {
    height: 110vh !important;
  }
  .width-md-110 {
    width: 110px !important;
  }
  .height-md-110 {
    height: 110px !important;
  }
  .max-width-md-110 {
    max-width: 110px !important;
  }
  .min-width-md-110 {
    min-width: 110px !important;
  }
  .max-height-md-110 {
    max-height: 110px !important;
  }
  .min-height-md-110 {
    min-height: 110px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-110 {
    width: 110% !important;
  }
  .h-lg-110 {
    height: 110% !important;
  }
  .max-w-lg-110 {
    max-width: 110% !important;
  }
  .min-w-lg-110 {
    min-width: 110% !important;
  }
  .max-h-lg-110 {
    max-height: 110% !important;
  }
  .min-h-lg-110 {
    min-height: 110% !important;
  }
  .min-lg-vw-110 {
    min-width: 110vw !important;
  }
  .min-lg-vh-110 {
    min-height: 110vh !important;
  }
  .vw-lg-110 {
    width: 110vw !important;
  }
  .vh-lg-110 {
    height: 110vh !important;
  }
  .width-lg-110 {
    width: 110px !important;
  }
  .height-lg-110 {
    height: 110px !important;
  }
  .max-width-lg-110 {
    max-width: 110px !important;
  }
  .min-width-lg-110 {
    min-width: 110px !important;
  }
  .max-height-lg-110 {
    max-height: 110px !important;
  }
  .min-height-lg-110 {
    min-height: 110px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-110 {
    width: 110% !important;
  }
  .h-xl-110 {
    height: 110% !important;
  }
  .max-w-xl-110 {
    max-width: 110% !important;
  }
  .min-w-xl-110 {
    min-width: 110% !important;
  }
  .max-h-xl-110 {
    max-height: 110% !important;
  }
  .min-h-xl-110 {
    min-height: 110% !important;
  }
  .min-xl-vw-110 {
    min-width: 110vw !important;
  }
  .min-xl-vh-110 {
    min-height: 110vh !important;
  }
  .vw-xl-110 {
    width: 110vw !important;
  }
  .vh-xl-110 {
    height: 110vh !important;
  }
  .width-xl-110 {
    width: 110px !important;
  }
  .height-xl-110 {
    height: 110px !important;
  }
  .max-width-xl-110 {
    max-width: 110px !important;
  }
  .min-width-xl-110 {
    min-width: 110px !important;
  }
  .max-height-xl-110 {
    max-height: 110px !important;
  }
  .min-height-xl-110 {
    min-height: 110px !important;
  }
}
.w-110 {
  width: 110% !important;
}

.h-110 {
  height: 110% !important;
}

.max-w-110 {
  max-width: 110% !important;
}

.min-w-110 {
  min-width: 110% !important;
}

.max-h-110 {
  max-height: 110% !important;
}

.min-h-110 {
  min-height: 110% !important;
}

.min-vw-110 {
  min-width: 110vw !important;
}

.min-vh-110 {
  min-height: 110vh !important;
}

.vw-110 {
  width: 110vw !important;
}

.vh-110 {
  height: 110vh !important;
}

.width-110 {
  width: 110px !important;
}

.height-110 {
  height: 110px !important;
}

.max-width-110 {
  max-width: 110px !important;
}

.min-width-110 {
  min-width: 110px !important;
}

.max-height-110 {
  max-height: 110px !important;
}

.min-height-110 {
  min-height: 110px !important;
}

@media (max-width: 576px) {
  .w-sm-120 {
    width: 120% !important;
  }
  .h-sm-120 {
    height: 120% !important;
  }
  .max-w-sm-120 {
    max-width: 120% !important;
  }
  .min-w-sm-120 {
    min-width: 120% !important;
  }
  .max-h-sm-120 {
    max-height: 120% !important;
  }
  .min-h-sm-120 {
    min-height: 120% !important;
  }
  .min-sm-vw-120 {
    min-width: 120vw !important;
  }
  .min-sm-vh-120 {
    min-height: 120vh !important;
  }
  .vw-sm-120 {
    width: 120vw !important;
  }
  .vh-sm-120 {
    height: 120vh !important;
  }
  .width-sm-120 {
    width: 120px !important;
  }
  .height-sm-120 {
    height: 120px !important;
  }
  .max-width-sm-120 {
    max-width: 120 px !important;
  }
  .min-width-sm-120 {
    min-width: 120px !important;
  }
  .max-height-sm-120 {
    max-height: 120px !important;
  }
  .min-height-sm-120 {
    min-height: 120px !important;
  }
}
@media (max-width: 768px) {
  .w-md-120 {
    width: 120% !important;
  }
  .h-md-120 {
    height: 120% !important;
  }
  .max-w-md-120 {
    max-width: 120% !important;
  }
  .min-w-md-120 {
    min-width: 120% !important;
  }
  .max-h-md-120 {
    max-height: 120% !important;
  }
  .min-h-md-120 {
    min-height: 120% !important;
  }
  .min-md-vw-120 {
    min-width: 120vw !important;
  }
  .min-md-vh-120 {
    min-height: 120vh !important;
  }
  .vw-md-120 {
    width: 120vw !important;
  }
  .vh-md-120 {
    height: 120vh !important;
  }
  .width-md-120 {
    width: 120px !important;
  }
  .height-md-120 {
    height: 120px !important;
  }
  .max-width-md-120 {
    max-width: 120px !important;
  }
  .min-width-md-120 {
    min-width: 120px !important;
  }
  .max-height-md-120 {
    max-height: 120px !important;
  }
  .min-height-md-120 {
    min-height: 120px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-120 {
    width: 120% !important;
  }
  .h-lg-120 {
    height: 120% !important;
  }
  .max-w-lg-120 {
    max-width: 120% !important;
  }
  .min-w-lg-120 {
    min-width: 120% !important;
  }
  .max-h-lg-120 {
    max-height: 120% !important;
  }
  .min-h-lg-120 {
    min-height: 120% !important;
  }
  .min-lg-vw-120 {
    min-width: 120vw !important;
  }
  .min-lg-vh-120 {
    min-height: 120vh !important;
  }
  .vw-lg-120 {
    width: 120vw !important;
  }
  .vh-lg-120 {
    height: 120vh !important;
  }
  .width-lg-120 {
    width: 120px !important;
  }
  .height-lg-120 {
    height: 120px !important;
  }
  .max-width-lg-120 {
    max-width: 120px !important;
  }
  .min-width-lg-120 {
    min-width: 120px !important;
  }
  .max-height-lg-120 {
    max-height: 120px !important;
  }
  .min-height-lg-120 {
    min-height: 120px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-120 {
    width: 120% !important;
  }
  .h-xl-120 {
    height: 120% !important;
  }
  .max-w-xl-120 {
    max-width: 120% !important;
  }
  .min-w-xl-120 {
    min-width: 120% !important;
  }
  .max-h-xl-120 {
    max-height: 120% !important;
  }
  .min-h-xl-120 {
    min-height: 120% !important;
  }
  .min-xl-vw-120 {
    min-width: 120vw !important;
  }
  .min-xl-vh-120 {
    min-height: 120vh !important;
  }
  .vw-xl-120 {
    width: 120vw !important;
  }
  .vh-xl-120 {
    height: 120vh !important;
  }
  .width-xl-120 {
    width: 120px !important;
  }
  .height-xl-120 {
    height: 120px !important;
  }
  .max-width-xl-120 {
    max-width: 120px !important;
  }
  .min-width-xl-120 {
    min-width: 120px !important;
  }
  .max-height-xl-120 {
    max-height: 120px !important;
  }
  .min-height-xl-120 {
    min-height: 120px !important;
  }
}
.w-120 {
  width: 120% !important;
}

.h-120 {
  height: 120% !important;
}

.max-w-120 {
  max-width: 120% !important;
}

.min-w-120 {
  min-width: 120% !important;
}

.max-h-120 {
  max-height: 120% !important;
}

.min-h-120 {
  min-height: 120% !important;
}

.min-vw-120 {
  min-width: 120vw !important;
}

.min-vh-120 {
  min-height: 120vh !important;
}

.vw-120 {
  width: 120vw !important;
}

.vh-120 {
  height: 120vh !important;
}

.width-120 {
  width: 120px !important;
}

.height-120 {
  height: 120px !important;
}

.max-width-120 {
  max-width: 120px !important;
}

.min-width-120 {
  min-width: 120px !important;
}

.max-height-120 {
  max-height: 120px !important;
}

.min-height-120 {
  min-height: 120px !important;
}

@media (max-width: 576px) {
  .w-sm-130 {
    width: 130% !important;
  }
  .h-sm-130 {
    height: 130% !important;
  }
  .max-w-sm-130 {
    max-width: 130% !important;
  }
  .min-w-sm-130 {
    min-width: 130% !important;
  }
  .max-h-sm-130 {
    max-height: 130% !important;
  }
  .min-h-sm-130 {
    min-height: 130% !important;
  }
  .min-sm-vw-130 {
    min-width: 130vw !important;
  }
  .min-sm-vh-130 {
    min-height: 130vh !important;
  }
  .vw-sm-130 {
    width: 130vw !important;
  }
  .vh-sm-130 {
    height: 130vh !important;
  }
  .width-sm-130 {
    width: 130px !important;
  }
  .height-sm-130 {
    height: 130px !important;
  }
  .max-width-sm-130 {
    max-width: 130 px !important;
  }
  .min-width-sm-130 {
    min-width: 130px !important;
  }
  .max-height-sm-130 {
    max-height: 130px !important;
  }
  .min-height-sm-130 {
    min-height: 130px !important;
  }
}
@media (max-width: 768px) {
  .w-md-130 {
    width: 130% !important;
  }
  .h-md-130 {
    height: 130% !important;
  }
  .max-w-md-130 {
    max-width: 130% !important;
  }
  .min-w-md-130 {
    min-width: 130% !important;
  }
  .max-h-md-130 {
    max-height: 130% !important;
  }
  .min-h-md-130 {
    min-height: 130% !important;
  }
  .min-md-vw-130 {
    min-width: 130vw !important;
  }
  .min-md-vh-130 {
    min-height: 130vh !important;
  }
  .vw-md-130 {
    width: 130vw !important;
  }
  .vh-md-130 {
    height: 130vh !important;
  }
  .width-md-130 {
    width: 130px !important;
  }
  .height-md-130 {
    height: 130px !important;
  }
  .max-width-md-130 {
    max-width: 130px !important;
  }
  .min-width-md-130 {
    min-width: 130px !important;
  }
  .max-height-md-130 {
    max-height: 130px !important;
  }
  .min-height-md-130 {
    min-height: 130px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-130 {
    width: 130% !important;
  }
  .h-lg-130 {
    height: 130% !important;
  }
  .max-w-lg-130 {
    max-width: 130% !important;
  }
  .min-w-lg-130 {
    min-width: 130% !important;
  }
  .max-h-lg-130 {
    max-height: 130% !important;
  }
  .min-h-lg-130 {
    min-height: 130% !important;
  }
  .min-lg-vw-130 {
    min-width: 130vw !important;
  }
  .min-lg-vh-130 {
    min-height: 130vh !important;
  }
  .vw-lg-130 {
    width: 130vw !important;
  }
  .vh-lg-130 {
    height: 130vh !important;
  }
  .width-lg-130 {
    width: 130px !important;
  }
  .height-lg-130 {
    height: 130px !important;
  }
  .max-width-lg-130 {
    max-width: 130px !important;
  }
  .min-width-lg-130 {
    min-width: 130px !important;
  }
  .max-height-lg-130 {
    max-height: 130px !important;
  }
  .min-height-lg-130 {
    min-height: 130px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-130 {
    width: 130% !important;
  }
  .h-xl-130 {
    height: 130% !important;
  }
  .max-w-xl-130 {
    max-width: 130% !important;
  }
  .min-w-xl-130 {
    min-width: 130% !important;
  }
  .max-h-xl-130 {
    max-height: 130% !important;
  }
  .min-h-xl-130 {
    min-height: 130% !important;
  }
  .min-xl-vw-130 {
    min-width: 130vw !important;
  }
  .min-xl-vh-130 {
    min-height: 130vh !important;
  }
  .vw-xl-130 {
    width: 130vw !important;
  }
  .vh-xl-130 {
    height: 130vh !important;
  }
  .width-xl-130 {
    width: 130px !important;
  }
  .height-xl-130 {
    height: 130px !important;
  }
  .max-width-xl-130 {
    max-width: 130px !important;
  }
  .min-width-xl-130 {
    min-width: 130px !important;
  }
  .max-height-xl-130 {
    max-height: 130px !important;
  }
  .min-height-xl-130 {
    min-height: 130px !important;
  }
}
.w-130 {
  width: 130% !important;
}

.h-130 {
  height: 130% !important;
}

.max-w-130 {
  max-width: 130% !important;
}

.min-w-130 {
  min-width: 130% !important;
}

.max-h-130 {
  max-height: 130% !important;
}

.min-h-130 {
  min-height: 130% !important;
}

.min-vw-130 {
  min-width: 130vw !important;
}

.min-vh-130 {
  min-height: 130vh !important;
}

.vw-130 {
  width: 130vw !important;
}

.vh-130 {
  height: 130vh !important;
}

.width-130 {
  width: 130px !important;
}

.height-130 {
  height: 130px !important;
}

.max-width-130 {
  max-width: 130px !important;
}

.min-width-130 {
  min-width: 130px !important;
}

.max-height-130 {
  max-height: 130px !important;
}

.min-height-130 {
  min-height: 130px !important;
}

@media (max-width: 576px) {
  .w-sm-140 {
    width: 140% !important;
  }
  .h-sm-140 {
    height: 140% !important;
  }
  .max-w-sm-140 {
    max-width: 140% !important;
  }
  .min-w-sm-140 {
    min-width: 140% !important;
  }
  .max-h-sm-140 {
    max-height: 140% !important;
  }
  .min-h-sm-140 {
    min-height: 140% !important;
  }
  .min-sm-vw-140 {
    min-width: 140vw !important;
  }
  .min-sm-vh-140 {
    min-height: 140vh !important;
  }
  .vw-sm-140 {
    width: 140vw !important;
  }
  .vh-sm-140 {
    height: 140vh !important;
  }
  .width-sm-140 {
    width: 140px !important;
  }
  .height-sm-140 {
    height: 140px !important;
  }
  .max-width-sm-140 {
    max-width: 140 px !important;
  }
  .min-width-sm-140 {
    min-width: 140px !important;
  }
  .max-height-sm-140 {
    max-height: 140px !important;
  }
  .min-height-sm-140 {
    min-height: 140px !important;
  }
}
@media (max-width: 768px) {
  .w-md-140 {
    width: 140% !important;
  }
  .h-md-140 {
    height: 140% !important;
  }
  .max-w-md-140 {
    max-width: 140% !important;
  }
  .min-w-md-140 {
    min-width: 140% !important;
  }
  .max-h-md-140 {
    max-height: 140% !important;
  }
  .min-h-md-140 {
    min-height: 140% !important;
  }
  .min-md-vw-140 {
    min-width: 140vw !important;
  }
  .min-md-vh-140 {
    min-height: 140vh !important;
  }
  .vw-md-140 {
    width: 140vw !important;
  }
  .vh-md-140 {
    height: 140vh !important;
  }
  .width-md-140 {
    width: 140px !important;
  }
  .height-md-140 {
    height: 140px !important;
  }
  .max-width-md-140 {
    max-width: 140px !important;
  }
  .min-width-md-140 {
    min-width: 140px !important;
  }
  .max-height-md-140 {
    max-height: 140px !important;
  }
  .min-height-md-140 {
    min-height: 140px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-140 {
    width: 140% !important;
  }
  .h-lg-140 {
    height: 140% !important;
  }
  .max-w-lg-140 {
    max-width: 140% !important;
  }
  .min-w-lg-140 {
    min-width: 140% !important;
  }
  .max-h-lg-140 {
    max-height: 140% !important;
  }
  .min-h-lg-140 {
    min-height: 140% !important;
  }
  .min-lg-vw-140 {
    min-width: 140vw !important;
  }
  .min-lg-vh-140 {
    min-height: 140vh !important;
  }
  .vw-lg-140 {
    width: 140vw !important;
  }
  .vh-lg-140 {
    height: 140vh !important;
  }
  .width-lg-140 {
    width: 140px !important;
  }
  .height-lg-140 {
    height: 140px !important;
  }
  .max-width-lg-140 {
    max-width: 140px !important;
  }
  .min-width-lg-140 {
    min-width: 140px !important;
  }
  .max-height-lg-140 {
    max-height: 140px !important;
  }
  .min-height-lg-140 {
    min-height: 140px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-140 {
    width: 140% !important;
  }
  .h-xl-140 {
    height: 140% !important;
  }
  .max-w-xl-140 {
    max-width: 140% !important;
  }
  .min-w-xl-140 {
    min-width: 140% !important;
  }
  .max-h-xl-140 {
    max-height: 140% !important;
  }
  .min-h-xl-140 {
    min-height: 140% !important;
  }
  .min-xl-vw-140 {
    min-width: 140vw !important;
  }
  .min-xl-vh-140 {
    min-height: 140vh !important;
  }
  .vw-xl-140 {
    width: 140vw !important;
  }
  .vh-xl-140 {
    height: 140vh !important;
  }
  .width-xl-140 {
    width: 140px !important;
  }
  .height-xl-140 {
    height: 140px !important;
  }
  .max-width-xl-140 {
    max-width: 140px !important;
  }
  .min-width-xl-140 {
    min-width: 140px !important;
  }
  .max-height-xl-140 {
    max-height: 140px !important;
  }
  .min-height-xl-140 {
    min-height: 140px !important;
  }
}
.w-140 {
  width: 140% !important;
}

.h-140 {
  height: 140% !important;
}

.max-w-140 {
  max-width: 140% !important;
}

.min-w-140 {
  min-width: 140% !important;
}

.max-h-140 {
  max-height: 140% !important;
}

.min-h-140 {
  min-height: 140% !important;
}

.min-vw-140 {
  min-width: 140vw !important;
}

.min-vh-140 {
  min-height: 140vh !important;
}

.vw-140 {
  width: 140vw !important;
}

.vh-140 {
  height: 140vh !important;
}

.width-140 {
  width: 140px !important;
}

.height-140 {
  height: 140px !important;
}

.max-width-140 {
  max-width: 140px !important;
}

.min-width-140 {
  min-width: 140px !important;
}

.max-height-140 {
  max-height: 140px !important;
}

.min-height-140 {
  min-height: 140px !important;
}

@media (max-width: 576px) {
  .w-sm-150 {
    width: 150% !important;
  }
  .h-sm-150 {
    height: 150% !important;
  }
  .max-w-sm-150 {
    max-width: 150% !important;
  }
  .min-w-sm-150 {
    min-width: 150% !important;
  }
  .max-h-sm-150 {
    max-height: 150% !important;
  }
  .min-h-sm-150 {
    min-height: 150% !important;
  }
  .min-sm-vw-150 {
    min-width: 150vw !important;
  }
  .min-sm-vh-150 {
    min-height: 150vh !important;
  }
  .vw-sm-150 {
    width: 150vw !important;
  }
  .vh-sm-150 {
    height: 150vh !important;
  }
  .width-sm-150 {
    width: 150px !important;
  }
  .height-sm-150 {
    height: 150px !important;
  }
  .max-width-sm-150 {
    max-width: 150 px !important;
  }
  .min-width-sm-150 {
    min-width: 150px !important;
  }
  .max-height-sm-150 {
    max-height: 150px !important;
  }
  .min-height-sm-150 {
    min-height: 150px !important;
  }
}
@media (max-width: 768px) {
  .w-md-150 {
    width: 150% !important;
  }
  .h-md-150 {
    height: 150% !important;
  }
  .max-w-md-150 {
    max-width: 150% !important;
  }
  .min-w-md-150 {
    min-width: 150% !important;
  }
  .max-h-md-150 {
    max-height: 150% !important;
  }
  .min-h-md-150 {
    min-height: 150% !important;
  }
  .min-md-vw-150 {
    min-width: 150vw !important;
  }
  .min-md-vh-150 {
    min-height: 150vh !important;
  }
  .vw-md-150 {
    width: 150vw !important;
  }
  .vh-md-150 {
    height: 150vh !important;
  }
  .width-md-150 {
    width: 150px !important;
  }
  .height-md-150 {
    height: 150px !important;
  }
  .max-width-md-150 {
    max-width: 150px !important;
  }
  .min-width-md-150 {
    min-width: 150px !important;
  }
  .max-height-md-150 {
    max-height: 150px !important;
  }
  .min-height-md-150 {
    min-height: 150px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-150 {
    width: 150% !important;
  }
  .h-lg-150 {
    height: 150% !important;
  }
  .max-w-lg-150 {
    max-width: 150% !important;
  }
  .min-w-lg-150 {
    min-width: 150% !important;
  }
  .max-h-lg-150 {
    max-height: 150% !important;
  }
  .min-h-lg-150 {
    min-height: 150% !important;
  }
  .min-lg-vw-150 {
    min-width: 150vw !important;
  }
  .min-lg-vh-150 {
    min-height: 150vh !important;
  }
  .vw-lg-150 {
    width: 150vw !important;
  }
  .vh-lg-150 {
    height: 150vh !important;
  }
  .width-lg-150 {
    width: 150px !important;
  }
  .height-lg-150 {
    height: 150px !important;
  }
  .max-width-lg-150 {
    max-width: 150px !important;
  }
  .min-width-lg-150 {
    min-width: 150px !important;
  }
  .max-height-lg-150 {
    max-height: 150px !important;
  }
  .min-height-lg-150 {
    min-height: 150px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-150 {
    width: 150% !important;
  }
  .h-xl-150 {
    height: 150% !important;
  }
  .max-w-xl-150 {
    max-width: 150% !important;
  }
  .min-w-xl-150 {
    min-width: 150% !important;
  }
  .max-h-xl-150 {
    max-height: 150% !important;
  }
  .min-h-xl-150 {
    min-height: 150% !important;
  }
  .min-xl-vw-150 {
    min-width: 150vw !important;
  }
  .min-xl-vh-150 {
    min-height: 150vh !important;
  }
  .vw-xl-150 {
    width: 150vw !important;
  }
  .vh-xl-150 {
    height: 150vh !important;
  }
  .width-xl-150 {
    width: 150px !important;
  }
  .height-xl-150 {
    height: 150px !important;
  }
  .max-width-xl-150 {
    max-width: 150px !important;
  }
  .min-width-xl-150 {
    min-width: 150px !important;
  }
  .max-height-xl-150 {
    max-height: 150px !important;
  }
  .min-height-xl-150 {
    min-height: 150px !important;
  }
}
.w-150 {
  width: 150% !important;
}

.h-150 {
  height: 150% !important;
}

.max-w-150 {
  max-width: 150% !important;
}

.min-w-150 {
  min-width: 150% !important;
}

.max-h-150 {
  max-height: 150% !important;
}

.min-h-150 {
  min-height: 150% !important;
}

.min-vw-150 {
  min-width: 150vw !important;
}

.min-vh-150 {
  min-height: 150vh !important;
}

.vw-150 {
  width: 150vw !important;
}

.vh-150 {
  height: 150vh !important;
}

.width-150 {
  width: 150px !important;
}

.height-150 {
  height: 150px !important;
}

.max-width-150 {
  max-width: 150px !important;
}

.min-width-150 {
  min-width: 150px !important;
}

.max-height-150 {
  max-height: 150px !important;
}

.min-height-150 {
  min-height: 150px !important;
}

@media (max-width: 576px) {
  .w-sm-160 {
    width: 160% !important;
  }
  .h-sm-160 {
    height: 160% !important;
  }
  .max-w-sm-160 {
    max-width: 160% !important;
  }
  .min-w-sm-160 {
    min-width: 160% !important;
  }
  .max-h-sm-160 {
    max-height: 160% !important;
  }
  .min-h-sm-160 {
    min-height: 160% !important;
  }
  .min-sm-vw-160 {
    min-width: 160vw !important;
  }
  .min-sm-vh-160 {
    min-height: 160vh !important;
  }
  .vw-sm-160 {
    width: 160vw !important;
  }
  .vh-sm-160 {
    height: 160vh !important;
  }
  .width-sm-160 {
    width: 160px !important;
  }
  .height-sm-160 {
    height: 160px !important;
  }
  .max-width-sm-160 {
    max-width: 160 px !important;
  }
  .min-width-sm-160 {
    min-width: 160px !important;
  }
  .max-height-sm-160 {
    max-height: 160px !important;
  }
  .min-height-sm-160 {
    min-height: 160px !important;
  }
}
@media (max-width: 768px) {
  .w-md-160 {
    width: 160% !important;
  }
  .h-md-160 {
    height: 160% !important;
  }
  .max-w-md-160 {
    max-width: 160% !important;
  }
  .min-w-md-160 {
    min-width: 160% !important;
  }
  .max-h-md-160 {
    max-height: 160% !important;
  }
  .min-h-md-160 {
    min-height: 160% !important;
  }
  .min-md-vw-160 {
    min-width: 160vw !important;
  }
  .min-md-vh-160 {
    min-height: 160vh !important;
  }
  .vw-md-160 {
    width: 160vw !important;
  }
  .vh-md-160 {
    height: 160vh !important;
  }
  .width-md-160 {
    width: 160px !important;
  }
  .height-md-160 {
    height: 160px !important;
  }
  .max-width-md-160 {
    max-width: 160px !important;
  }
  .min-width-md-160 {
    min-width: 160px !important;
  }
  .max-height-md-160 {
    max-height: 160px !important;
  }
  .min-height-md-160 {
    min-height: 160px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-160 {
    width: 160% !important;
  }
  .h-lg-160 {
    height: 160% !important;
  }
  .max-w-lg-160 {
    max-width: 160% !important;
  }
  .min-w-lg-160 {
    min-width: 160% !important;
  }
  .max-h-lg-160 {
    max-height: 160% !important;
  }
  .min-h-lg-160 {
    min-height: 160% !important;
  }
  .min-lg-vw-160 {
    min-width: 160vw !important;
  }
  .min-lg-vh-160 {
    min-height: 160vh !important;
  }
  .vw-lg-160 {
    width: 160vw !important;
  }
  .vh-lg-160 {
    height: 160vh !important;
  }
  .width-lg-160 {
    width: 160px !important;
  }
  .height-lg-160 {
    height: 160px !important;
  }
  .max-width-lg-160 {
    max-width: 160px !important;
  }
  .min-width-lg-160 {
    min-width: 160px !important;
  }
  .max-height-lg-160 {
    max-height: 160px !important;
  }
  .min-height-lg-160 {
    min-height: 160px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-160 {
    width: 160% !important;
  }
  .h-xl-160 {
    height: 160% !important;
  }
  .max-w-xl-160 {
    max-width: 160% !important;
  }
  .min-w-xl-160 {
    min-width: 160% !important;
  }
  .max-h-xl-160 {
    max-height: 160% !important;
  }
  .min-h-xl-160 {
    min-height: 160% !important;
  }
  .min-xl-vw-160 {
    min-width: 160vw !important;
  }
  .min-xl-vh-160 {
    min-height: 160vh !important;
  }
  .vw-xl-160 {
    width: 160vw !important;
  }
  .vh-xl-160 {
    height: 160vh !important;
  }
  .width-xl-160 {
    width: 160px !important;
  }
  .height-xl-160 {
    height: 160px !important;
  }
  .max-width-xl-160 {
    max-width: 160px !important;
  }
  .min-width-xl-160 {
    min-width: 160px !important;
  }
  .max-height-xl-160 {
    max-height: 160px !important;
  }
  .min-height-xl-160 {
    min-height: 160px !important;
  }
}
.w-160 {
  width: 160% !important;
}

.h-160 {
  height: 160% !important;
}

.max-w-160 {
  max-width: 160% !important;
}

.min-w-160 {
  min-width: 160% !important;
}

.max-h-160 {
  max-height: 160% !important;
}

.min-h-160 {
  min-height: 160% !important;
}

.min-vw-160 {
  min-width: 160vw !important;
}

.min-vh-160 {
  min-height: 160vh !important;
}

.vw-160 {
  width: 160vw !important;
}

.vh-160 {
  height: 160vh !important;
}

.width-160 {
  width: 160px !important;
}

.height-160 {
  height: 160px !important;
}

.max-width-160 {
  max-width: 160px !important;
}

.min-width-160 {
  min-width: 160px !important;
}

.max-height-160 {
  max-height: 160px !important;
}

.min-height-160 {
  min-height: 160px !important;
}

@media (max-width: 576px) {
  .w-sm-170 {
    width: 170% !important;
  }
  .h-sm-170 {
    height: 170% !important;
  }
  .max-w-sm-170 {
    max-width: 170% !important;
  }
  .min-w-sm-170 {
    min-width: 170% !important;
  }
  .max-h-sm-170 {
    max-height: 170% !important;
  }
  .min-h-sm-170 {
    min-height: 170% !important;
  }
  .min-sm-vw-170 {
    min-width: 170vw !important;
  }
  .min-sm-vh-170 {
    min-height: 170vh !important;
  }
  .vw-sm-170 {
    width: 170vw !important;
  }
  .vh-sm-170 {
    height: 170vh !important;
  }
  .width-sm-170 {
    width: 170px !important;
  }
  .height-sm-170 {
    height: 170px !important;
  }
  .max-width-sm-170 {
    max-width: 170 px !important;
  }
  .min-width-sm-170 {
    min-width: 170px !important;
  }
  .max-height-sm-170 {
    max-height: 170px !important;
  }
  .min-height-sm-170 {
    min-height: 170px !important;
  }
}
@media (max-width: 768px) {
  .w-md-170 {
    width: 170% !important;
  }
  .h-md-170 {
    height: 170% !important;
  }
  .max-w-md-170 {
    max-width: 170% !important;
  }
  .min-w-md-170 {
    min-width: 170% !important;
  }
  .max-h-md-170 {
    max-height: 170% !important;
  }
  .min-h-md-170 {
    min-height: 170% !important;
  }
  .min-md-vw-170 {
    min-width: 170vw !important;
  }
  .min-md-vh-170 {
    min-height: 170vh !important;
  }
  .vw-md-170 {
    width: 170vw !important;
  }
  .vh-md-170 {
    height: 170vh !important;
  }
  .width-md-170 {
    width: 170px !important;
  }
  .height-md-170 {
    height: 170px !important;
  }
  .max-width-md-170 {
    max-width: 170px !important;
  }
  .min-width-md-170 {
    min-width: 170px !important;
  }
  .max-height-md-170 {
    max-height: 170px !important;
  }
  .min-height-md-170 {
    min-height: 170px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-170 {
    width: 170% !important;
  }
  .h-lg-170 {
    height: 170% !important;
  }
  .max-w-lg-170 {
    max-width: 170% !important;
  }
  .min-w-lg-170 {
    min-width: 170% !important;
  }
  .max-h-lg-170 {
    max-height: 170% !important;
  }
  .min-h-lg-170 {
    min-height: 170% !important;
  }
  .min-lg-vw-170 {
    min-width: 170vw !important;
  }
  .min-lg-vh-170 {
    min-height: 170vh !important;
  }
  .vw-lg-170 {
    width: 170vw !important;
  }
  .vh-lg-170 {
    height: 170vh !important;
  }
  .width-lg-170 {
    width: 170px !important;
  }
  .height-lg-170 {
    height: 170px !important;
  }
  .max-width-lg-170 {
    max-width: 170px !important;
  }
  .min-width-lg-170 {
    min-width: 170px !important;
  }
  .max-height-lg-170 {
    max-height: 170px !important;
  }
  .min-height-lg-170 {
    min-height: 170px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-170 {
    width: 170% !important;
  }
  .h-xl-170 {
    height: 170% !important;
  }
  .max-w-xl-170 {
    max-width: 170% !important;
  }
  .min-w-xl-170 {
    min-width: 170% !important;
  }
  .max-h-xl-170 {
    max-height: 170% !important;
  }
  .min-h-xl-170 {
    min-height: 170% !important;
  }
  .min-xl-vw-170 {
    min-width: 170vw !important;
  }
  .min-xl-vh-170 {
    min-height: 170vh !important;
  }
  .vw-xl-170 {
    width: 170vw !important;
  }
  .vh-xl-170 {
    height: 170vh !important;
  }
  .width-xl-170 {
    width: 170px !important;
  }
  .height-xl-170 {
    height: 170px !important;
  }
  .max-width-xl-170 {
    max-width: 170px !important;
  }
  .min-width-xl-170 {
    min-width: 170px !important;
  }
  .max-height-xl-170 {
    max-height: 170px !important;
  }
  .min-height-xl-170 {
    min-height: 170px !important;
  }
}
.w-170 {
  width: 170% !important;
}

.h-170 {
  height: 170% !important;
}

.max-w-170 {
  max-width: 170% !important;
}

.min-w-170 {
  min-width: 170% !important;
}

.max-h-170 {
  max-height: 170% !important;
}

.min-h-170 {
  min-height: 170% !important;
}

.min-vw-170 {
  min-width: 170vw !important;
}

.min-vh-170 {
  min-height: 170vh !important;
}

.vw-170 {
  width: 170vw !important;
}

.vh-170 {
  height: 170vh !important;
}

.width-170 {
  width: 170px !important;
}

.height-170 {
  height: 170px !important;
}

.max-width-170 {
  max-width: 170px !important;
}

.min-width-170 {
  min-width: 170px !important;
}

.max-height-170 {
  max-height: 170px !important;
}

.min-height-170 {
  min-height: 170px !important;
}

@media (max-width: 576px) {
  .w-sm-180 {
    width: 180% !important;
  }
  .h-sm-180 {
    height: 180% !important;
  }
  .max-w-sm-180 {
    max-width: 180% !important;
  }
  .min-w-sm-180 {
    min-width: 180% !important;
  }
  .max-h-sm-180 {
    max-height: 180% !important;
  }
  .min-h-sm-180 {
    min-height: 180% !important;
  }
  .min-sm-vw-180 {
    min-width: 180vw !important;
  }
  .min-sm-vh-180 {
    min-height: 180vh !important;
  }
  .vw-sm-180 {
    width: 180vw !important;
  }
  .vh-sm-180 {
    height: 180vh !important;
  }
  .width-sm-180 {
    width: 180px !important;
  }
  .height-sm-180 {
    height: 180px !important;
  }
  .max-width-sm-180 {
    max-width: 180 px !important;
  }
  .min-width-sm-180 {
    min-width: 180px !important;
  }
  .max-height-sm-180 {
    max-height: 180px !important;
  }
  .min-height-sm-180 {
    min-height: 180px !important;
  }
}
@media (max-width: 768px) {
  .w-md-180 {
    width: 180% !important;
  }
  .h-md-180 {
    height: 180% !important;
  }
  .max-w-md-180 {
    max-width: 180% !important;
  }
  .min-w-md-180 {
    min-width: 180% !important;
  }
  .max-h-md-180 {
    max-height: 180% !important;
  }
  .min-h-md-180 {
    min-height: 180% !important;
  }
  .min-md-vw-180 {
    min-width: 180vw !important;
  }
  .min-md-vh-180 {
    min-height: 180vh !important;
  }
  .vw-md-180 {
    width: 180vw !important;
  }
  .vh-md-180 {
    height: 180vh !important;
  }
  .width-md-180 {
    width: 180px !important;
  }
  .height-md-180 {
    height: 180px !important;
  }
  .max-width-md-180 {
    max-width: 180px !important;
  }
  .min-width-md-180 {
    min-width: 180px !important;
  }
  .max-height-md-180 {
    max-height: 180px !important;
  }
  .min-height-md-180 {
    min-height: 180px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-180 {
    width: 180% !important;
  }
  .h-lg-180 {
    height: 180% !important;
  }
  .max-w-lg-180 {
    max-width: 180% !important;
  }
  .min-w-lg-180 {
    min-width: 180% !important;
  }
  .max-h-lg-180 {
    max-height: 180% !important;
  }
  .min-h-lg-180 {
    min-height: 180% !important;
  }
  .min-lg-vw-180 {
    min-width: 180vw !important;
  }
  .min-lg-vh-180 {
    min-height: 180vh !important;
  }
  .vw-lg-180 {
    width: 180vw !important;
  }
  .vh-lg-180 {
    height: 180vh !important;
  }
  .width-lg-180 {
    width: 180px !important;
  }
  .height-lg-180 {
    height: 180px !important;
  }
  .max-width-lg-180 {
    max-width: 180px !important;
  }
  .min-width-lg-180 {
    min-width: 180px !important;
  }
  .max-height-lg-180 {
    max-height: 180px !important;
  }
  .min-height-lg-180 {
    min-height: 180px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-180 {
    width: 180% !important;
  }
  .h-xl-180 {
    height: 180% !important;
  }
  .max-w-xl-180 {
    max-width: 180% !important;
  }
  .min-w-xl-180 {
    min-width: 180% !important;
  }
  .max-h-xl-180 {
    max-height: 180% !important;
  }
  .min-h-xl-180 {
    min-height: 180% !important;
  }
  .min-xl-vw-180 {
    min-width: 180vw !important;
  }
  .min-xl-vh-180 {
    min-height: 180vh !important;
  }
  .vw-xl-180 {
    width: 180vw !important;
  }
  .vh-xl-180 {
    height: 180vh !important;
  }
  .width-xl-180 {
    width: 180px !important;
  }
  .height-xl-180 {
    height: 180px !important;
  }
  .max-width-xl-180 {
    max-width: 180px !important;
  }
  .min-width-xl-180 {
    min-width: 180px !important;
  }
  .max-height-xl-180 {
    max-height: 180px !important;
  }
  .min-height-xl-180 {
    min-height: 180px !important;
  }
}
.w-180 {
  width: 180% !important;
}

.h-180 {
  height: 180% !important;
}

.max-w-180 {
  max-width: 180% !important;
}

.min-w-180 {
  min-width: 180% !important;
}

.max-h-180 {
  max-height: 180% !important;
}

.min-h-180 {
  min-height: 180% !important;
}

.min-vw-180 {
  min-width: 180vw !important;
}

.min-vh-180 {
  min-height: 180vh !important;
}

.vw-180 {
  width: 180vw !important;
}

.vh-180 {
  height: 180vh !important;
}

.width-180 {
  width: 180px !important;
}

.height-180 {
  height: 180px !important;
}

.max-width-180 {
  max-width: 180px !important;
}

.min-width-180 {
  min-width: 180px !important;
}

.max-height-180 {
  max-height: 180px !important;
}

.min-height-180 {
  min-height: 180px !important;
}

@media (max-width: 576px) {
  .w-sm-190 {
    width: 190% !important;
  }
  .h-sm-190 {
    height: 190% !important;
  }
  .max-w-sm-190 {
    max-width: 190% !important;
  }
  .min-w-sm-190 {
    min-width: 190% !important;
  }
  .max-h-sm-190 {
    max-height: 190% !important;
  }
  .min-h-sm-190 {
    min-height: 190% !important;
  }
  .min-sm-vw-190 {
    min-width: 190vw !important;
  }
  .min-sm-vh-190 {
    min-height: 190vh !important;
  }
  .vw-sm-190 {
    width: 190vw !important;
  }
  .vh-sm-190 {
    height: 190vh !important;
  }
  .width-sm-190 {
    width: 190px !important;
  }
  .height-sm-190 {
    height: 190px !important;
  }
  .max-width-sm-190 {
    max-width: 190 px !important;
  }
  .min-width-sm-190 {
    min-width: 190px !important;
  }
  .max-height-sm-190 {
    max-height: 190px !important;
  }
  .min-height-sm-190 {
    min-height: 190px !important;
  }
}
@media (max-width: 768px) {
  .w-md-190 {
    width: 190% !important;
  }
  .h-md-190 {
    height: 190% !important;
  }
  .max-w-md-190 {
    max-width: 190% !important;
  }
  .min-w-md-190 {
    min-width: 190% !important;
  }
  .max-h-md-190 {
    max-height: 190% !important;
  }
  .min-h-md-190 {
    min-height: 190% !important;
  }
  .min-md-vw-190 {
    min-width: 190vw !important;
  }
  .min-md-vh-190 {
    min-height: 190vh !important;
  }
  .vw-md-190 {
    width: 190vw !important;
  }
  .vh-md-190 {
    height: 190vh !important;
  }
  .width-md-190 {
    width: 190px !important;
  }
  .height-md-190 {
    height: 190px !important;
  }
  .max-width-md-190 {
    max-width: 190px !important;
  }
  .min-width-md-190 {
    min-width: 190px !important;
  }
  .max-height-md-190 {
    max-height: 190px !important;
  }
  .min-height-md-190 {
    min-height: 190px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-190 {
    width: 190% !important;
  }
  .h-lg-190 {
    height: 190% !important;
  }
  .max-w-lg-190 {
    max-width: 190% !important;
  }
  .min-w-lg-190 {
    min-width: 190% !important;
  }
  .max-h-lg-190 {
    max-height: 190% !important;
  }
  .min-h-lg-190 {
    min-height: 190% !important;
  }
  .min-lg-vw-190 {
    min-width: 190vw !important;
  }
  .min-lg-vh-190 {
    min-height: 190vh !important;
  }
  .vw-lg-190 {
    width: 190vw !important;
  }
  .vh-lg-190 {
    height: 190vh !important;
  }
  .width-lg-190 {
    width: 190px !important;
  }
  .height-lg-190 {
    height: 190px !important;
  }
  .max-width-lg-190 {
    max-width: 190px !important;
  }
  .min-width-lg-190 {
    min-width: 190px !important;
  }
  .max-height-lg-190 {
    max-height: 190px !important;
  }
  .min-height-lg-190 {
    min-height: 190px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-190 {
    width: 190% !important;
  }
  .h-xl-190 {
    height: 190% !important;
  }
  .max-w-xl-190 {
    max-width: 190% !important;
  }
  .min-w-xl-190 {
    min-width: 190% !important;
  }
  .max-h-xl-190 {
    max-height: 190% !important;
  }
  .min-h-xl-190 {
    min-height: 190% !important;
  }
  .min-xl-vw-190 {
    min-width: 190vw !important;
  }
  .min-xl-vh-190 {
    min-height: 190vh !important;
  }
  .vw-xl-190 {
    width: 190vw !important;
  }
  .vh-xl-190 {
    height: 190vh !important;
  }
  .width-xl-190 {
    width: 190px !important;
  }
  .height-xl-190 {
    height: 190px !important;
  }
  .max-width-xl-190 {
    max-width: 190px !important;
  }
  .min-width-xl-190 {
    min-width: 190px !important;
  }
  .max-height-xl-190 {
    max-height: 190px !important;
  }
  .min-height-xl-190 {
    min-height: 190px !important;
  }
}
.w-190 {
  width: 190% !important;
}

.h-190 {
  height: 190% !important;
}

.max-w-190 {
  max-width: 190% !important;
}

.min-w-190 {
  min-width: 190% !important;
}

.max-h-190 {
  max-height: 190% !important;
}

.min-h-190 {
  min-height: 190% !important;
}

.min-vw-190 {
  min-width: 190vw !important;
}

.min-vh-190 {
  min-height: 190vh !important;
}

.vw-190 {
  width: 190vw !important;
}

.vh-190 {
  height: 190vh !important;
}

.width-190 {
  width: 190px !important;
}

.height-190 {
  height: 190px !important;
}

.max-width-190 {
  max-width: 190px !important;
}

.min-width-190 {
  min-width: 190px !important;
}

.max-height-190 {
  max-height: 190px !important;
}

.min-height-190 {
  min-height: 190px !important;
}

@media (max-width: 576px) {
  .w-sm-200 {
    width: 200% !important;
  }
  .h-sm-200 {
    height: 200% !important;
  }
  .max-w-sm-200 {
    max-width: 200% !important;
  }
  .min-w-sm-200 {
    min-width: 200% !important;
  }
  .max-h-sm-200 {
    max-height: 200% !important;
  }
  .min-h-sm-200 {
    min-height: 200% !important;
  }
  .min-sm-vw-200 {
    min-width: 200vw !important;
  }
  .min-sm-vh-200 {
    min-height: 200vh !important;
  }
  .vw-sm-200 {
    width: 200vw !important;
  }
  .vh-sm-200 {
    height: 200vh !important;
  }
  .width-sm-200 {
    width: 200px !important;
  }
  .height-sm-200 {
    height: 200px !important;
  }
  .max-width-sm-200 {
    max-width: 200 px !important;
  }
  .min-width-sm-200 {
    min-width: 200px !important;
  }
  .max-height-sm-200 {
    max-height: 200px !important;
  }
  .min-height-sm-200 {
    min-height: 200px !important;
  }
}
@media (max-width: 768px) {
  .w-md-200 {
    width: 200% !important;
  }
  .h-md-200 {
    height: 200% !important;
  }
  .max-w-md-200 {
    max-width: 200% !important;
  }
  .min-w-md-200 {
    min-width: 200% !important;
  }
  .max-h-md-200 {
    max-height: 200% !important;
  }
  .min-h-md-200 {
    min-height: 200% !important;
  }
  .min-md-vw-200 {
    min-width: 200vw !important;
  }
  .min-md-vh-200 {
    min-height: 200vh !important;
  }
  .vw-md-200 {
    width: 200vw !important;
  }
  .vh-md-200 {
    height: 200vh !important;
  }
  .width-md-200 {
    width: 200px !important;
  }
  .height-md-200 {
    height: 200px !important;
  }
  .max-width-md-200 {
    max-width: 200px !important;
  }
  .min-width-md-200 {
    min-width: 200px !important;
  }
  .max-height-md-200 {
    max-height: 200px !important;
  }
  .min-height-md-200 {
    min-height: 200px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-200 {
    width: 200% !important;
  }
  .h-lg-200 {
    height: 200% !important;
  }
  .max-w-lg-200 {
    max-width: 200% !important;
  }
  .min-w-lg-200 {
    min-width: 200% !important;
  }
  .max-h-lg-200 {
    max-height: 200% !important;
  }
  .min-h-lg-200 {
    min-height: 200% !important;
  }
  .min-lg-vw-200 {
    min-width: 200vw !important;
  }
  .min-lg-vh-200 {
    min-height: 200vh !important;
  }
  .vw-lg-200 {
    width: 200vw !important;
  }
  .vh-lg-200 {
    height: 200vh !important;
  }
  .width-lg-200 {
    width: 200px !important;
  }
  .height-lg-200 {
    height: 200px !important;
  }
  .max-width-lg-200 {
    max-width: 200px !important;
  }
  .min-width-lg-200 {
    min-width: 200px !important;
  }
  .max-height-lg-200 {
    max-height: 200px !important;
  }
  .min-height-lg-200 {
    min-height: 200px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-200 {
    width: 200% !important;
  }
  .h-xl-200 {
    height: 200% !important;
  }
  .max-w-xl-200 {
    max-width: 200% !important;
  }
  .min-w-xl-200 {
    min-width: 200% !important;
  }
  .max-h-xl-200 {
    max-height: 200% !important;
  }
  .min-h-xl-200 {
    min-height: 200% !important;
  }
  .min-xl-vw-200 {
    min-width: 200vw !important;
  }
  .min-xl-vh-200 {
    min-height: 200vh !important;
  }
  .vw-xl-200 {
    width: 200vw !important;
  }
  .vh-xl-200 {
    height: 200vh !important;
  }
  .width-xl-200 {
    width: 200px !important;
  }
  .height-xl-200 {
    height: 200px !important;
  }
  .max-width-xl-200 {
    max-width: 200px !important;
  }
  .min-width-xl-200 {
    min-width: 200px !important;
  }
  .max-height-xl-200 {
    max-height: 200px !important;
  }
  .min-height-xl-200 {
    min-height: 200px !important;
  }
}
.w-200 {
  width: 200% !important;
}

.h-200 {
  height: 200% !important;
}

.max-w-200 {
  max-width: 200% !important;
}

.min-w-200 {
  min-width: 200% !important;
}

.max-h-200 {
  max-height: 200% !important;
}

.min-h-200 {
  min-height: 200% !important;
}

.min-vw-200 {
  min-width: 200vw !important;
}

.min-vh-200 {
  min-height: 200vh !important;
}

.vw-200 {
  width: 200vw !important;
}

.vh-200 {
  height: 200vh !important;
}

.width-200 {
  width: 200px !important;
}

.height-200 {
  height: 200px !important;
}

.max-width-200 {
  max-width: 200px !important;
}

.min-width-200 {
  min-width: 200px !important;
}

.max-height-200 {
  max-height: 200px !important;
}

.min-height-200 {
  min-height: 200px !important;
}

@media (max-width: 576px) {
  .w-sm-210 {
    width: 210% !important;
  }
  .h-sm-210 {
    height: 210% !important;
  }
  .max-w-sm-210 {
    max-width: 210% !important;
  }
  .min-w-sm-210 {
    min-width: 210% !important;
  }
  .max-h-sm-210 {
    max-height: 210% !important;
  }
  .min-h-sm-210 {
    min-height: 210% !important;
  }
  .min-sm-vw-210 {
    min-width: 210vw !important;
  }
  .min-sm-vh-210 {
    min-height: 210vh !important;
  }
  .vw-sm-210 {
    width: 210vw !important;
  }
  .vh-sm-210 {
    height: 210vh !important;
  }
  .width-sm-210 {
    width: 210px !important;
  }
  .height-sm-210 {
    height: 210px !important;
  }
  .max-width-sm-210 {
    max-width: 210 px !important;
  }
  .min-width-sm-210 {
    min-width: 210px !important;
  }
  .max-height-sm-210 {
    max-height: 210px !important;
  }
  .min-height-sm-210 {
    min-height: 210px !important;
  }
}
@media (max-width: 768px) {
  .w-md-210 {
    width: 210% !important;
  }
  .h-md-210 {
    height: 210% !important;
  }
  .max-w-md-210 {
    max-width: 210% !important;
  }
  .min-w-md-210 {
    min-width: 210% !important;
  }
  .max-h-md-210 {
    max-height: 210% !important;
  }
  .min-h-md-210 {
    min-height: 210% !important;
  }
  .min-md-vw-210 {
    min-width: 210vw !important;
  }
  .min-md-vh-210 {
    min-height: 210vh !important;
  }
  .vw-md-210 {
    width: 210vw !important;
  }
  .vh-md-210 {
    height: 210vh !important;
  }
  .width-md-210 {
    width: 210px !important;
  }
  .height-md-210 {
    height: 210px !important;
  }
  .max-width-md-210 {
    max-width: 210px !important;
  }
  .min-width-md-210 {
    min-width: 210px !important;
  }
  .max-height-md-210 {
    max-height: 210px !important;
  }
  .min-height-md-210 {
    min-height: 210px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-210 {
    width: 210% !important;
  }
  .h-lg-210 {
    height: 210% !important;
  }
  .max-w-lg-210 {
    max-width: 210% !important;
  }
  .min-w-lg-210 {
    min-width: 210% !important;
  }
  .max-h-lg-210 {
    max-height: 210% !important;
  }
  .min-h-lg-210 {
    min-height: 210% !important;
  }
  .min-lg-vw-210 {
    min-width: 210vw !important;
  }
  .min-lg-vh-210 {
    min-height: 210vh !important;
  }
  .vw-lg-210 {
    width: 210vw !important;
  }
  .vh-lg-210 {
    height: 210vh !important;
  }
  .width-lg-210 {
    width: 210px !important;
  }
  .height-lg-210 {
    height: 210px !important;
  }
  .max-width-lg-210 {
    max-width: 210px !important;
  }
  .min-width-lg-210 {
    min-width: 210px !important;
  }
  .max-height-lg-210 {
    max-height: 210px !important;
  }
  .min-height-lg-210 {
    min-height: 210px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-210 {
    width: 210% !important;
  }
  .h-xl-210 {
    height: 210% !important;
  }
  .max-w-xl-210 {
    max-width: 210% !important;
  }
  .min-w-xl-210 {
    min-width: 210% !important;
  }
  .max-h-xl-210 {
    max-height: 210% !important;
  }
  .min-h-xl-210 {
    min-height: 210% !important;
  }
  .min-xl-vw-210 {
    min-width: 210vw !important;
  }
  .min-xl-vh-210 {
    min-height: 210vh !important;
  }
  .vw-xl-210 {
    width: 210vw !important;
  }
  .vh-xl-210 {
    height: 210vh !important;
  }
  .width-xl-210 {
    width: 210px !important;
  }
  .height-xl-210 {
    height: 210px !important;
  }
  .max-width-xl-210 {
    max-width: 210px !important;
  }
  .min-width-xl-210 {
    min-width: 210px !important;
  }
  .max-height-xl-210 {
    max-height: 210px !important;
  }
  .min-height-xl-210 {
    min-height: 210px !important;
  }
}
.w-210 {
  width: 210% !important;
}

.h-210 {
  height: 210% !important;
}

.max-w-210 {
  max-width: 210% !important;
}

.min-w-210 {
  min-width: 210% !important;
}

.max-h-210 {
  max-height: 210% !important;
}

.min-h-210 {
  min-height: 210% !important;
}

.min-vw-210 {
  min-width: 210vw !important;
}

.min-vh-210 {
  min-height: 210vh !important;
}

.vw-210 {
  width: 210vw !important;
}

.vh-210 {
  height: 210vh !important;
}

.width-210 {
  width: 210px !important;
}

.height-210 {
  height: 210px !important;
}

.max-width-210 {
  max-width: 210px !important;
}

.min-width-210 {
  min-width: 210px !important;
}

.max-height-210 {
  max-height: 210px !important;
}

.min-height-210 {
  min-height: 210px !important;
}

@media (max-width: 576px) {
  .w-sm-220 {
    width: 220% !important;
  }
  .h-sm-220 {
    height: 220% !important;
  }
  .max-w-sm-220 {
    max-width: 220% !important;
  }
  .min-w-sm-220 {
    min-width: 220% !important;
  }
  .max-h-sm-220 {
    max-height: 220% !important;
  }
  .min-h-sm-220 {
    min-height: 220% !important;
  }
  .min-sm-vw-220 {
    min-width: 220vw !important;
  }
  .min-sm-vh-220 {
    min-height: 220vh !important;
  }
  .vw-sm-220 {
    width: 220vw !important;
  }
  .vh-sm-220 {
    height: 220vh !important;
  }
  .width-sm-220 {
    width: 220px !important;
  }
  .height-sm-220 {
    height: 220px !important;
  }
  .max-width-sm-220 {
    max-width: 220 px !important;
  }
  .min-width-sm-220 {
    min-width: 220px !important;
  }
  .max-height-sm-220 {
    max-height: 220px !important;
  }
  .min-height-sm-220 {
    min-height: 220px !important;
  }
}
@media (max-width: 768px) {
  .w-md-220 {
    width: 220% !important;
  }
  .h-md-220 {
    height: 220% !important;
  }
  .max-w-md-220 {
    max-width: 220% !important;
  }
  .min-w-md-220 {
    min-width: 220% !important;
  }
  .max-h-md-220 {
    max-height: 220% !important;
  }
  .min-h-md-220 {
    min-height: 220% !important;
  }
  .min-md-vw-220 {
    min-width: 220vw !important;
  }
  .min-md-vh-220 {
    min-height: 220vh !important;
  }
  .vw-md-220 {
    width: 220vw !important;
  }
  .vh-md-220 {
    height: 220vh !important;
  }
  .width-md-220 {
    width: 220px !important;
  }
  .height-md-220 {
    height: 220px !important;
  }
  .max-width-md-220 {
    max-width: 220px !important;
  }
  .min-width-md-220 {
    min-width: 220px !important;
  }
  .max-height-md-220 {
    max-height: 220px !important;
  }
  .min-height-md-220 {
    min-height: 220px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-220 {
    width: 220% !important;
  }
  .h-lg-220 {
    height: 220% !important;
  }
  .max-w-lg-220 {
    max-width: 220% !important;
  }
  .min-w-lg-220 {
    min-width: 220% !important;
  }
  .max-h-lg-220 {
    max-height: 220% !important;
  }
  .min-h-lg-220 {
    min-height: 220% !important;
  }
  .min-lg-vw-220 {
    min-width: 220vw !important;
  }
  .min-lg-vh-220 {
    min-height: 220vh !important;
  }
  .vw-lg-220 {
    width: 220vw !important;
  }
  .vh-lg-220 {
    height: 220vh !important;
  }
  .width-lg-220 {
    width: 220px !important;
  }
  .height-lg-220 {
    height: 220px !important;
  }
  .max-width-lg-220 {
    max-width: 220px !important;
  }
  .min-width-lg-220 {
    min-width: 220px !important;
  }
  .max-height-lg-220 {
    max-height: 220px !important;
  }
  .min-height-lg-220 {
    min-height: 220px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-220 {
    width: 220% !important;
  }
  .h-xl-220 {
    height: 220% !important;
  }
  .max-w-xl-220 {
    max-width: 220% !important;
  }
  .min-w-xl-220 {
    min-width: 220% !important;
  }
  .max-h-xl-220 {
    max-height: 220% !important;
  }
  .min-h-xl-220 {
    min-height: 220% !important;
  }
  .min-xl-vw-220 {
    min-width: 220vw !important;
  }
  .min-xl-vh-220 {
    min-height: 220vh !important;
  }
  .vw-xl-220 {
    width: 220vw !important;
  }
  .vh-xl-220 {
    height: 220vh !important;
  }
  .width-xl-220 {
    width: 220px !important;
  }
  .height-xl-220 {
    height: 220px !important;
  }
  .max-width-xl-220 {
    max-width: 220px !important;
  }
  .min-width-xl-220 {
    min-width: 220px !important;
  }
  .max-height-xl-220 {
    max-height: 220px !important;
  }
  .min-height-xl-220 {
    min-height: 220px !important;
  }
}
.w-220 {
  width: 220% !important;
}

.h-220 {
  height: 220% !important;
}

.max-w-220 {
  max-width: 220% !important;
}

.min-w-220 {
  min-width: 220% !important;
}

.max-h-220 {
  max-height: 220% !important;
}

.min-h-220 {
  min-height: 220% !important;
}

.min-vw-220 {
  min-width: 220vw !important;
}

.min-vh-220 {
  min-height: 220vh !important;
}

.vw-220 {
  width: 220vw !important;
}

.vh-220 {
  height: 220vh !important;
}

.width-220 {
  width: 220px !important;
}

.height-220 {
  height: 220px !important;
}

.max-width-220 {
  max-width: 220px !important;
}

.min-width-220 {
  min-width: 220px !important;
}

.max-height-220 {
  max-height: 220px !important;
}

.min-height-220 {
  min-height: 220px !important;
}

@media (max-width: 576px) {
  .w-sm-230 {
    width: 230% !important;
  }
  .h-sm-230 {
    height: 230% !important;
  }
  .max-w-sm-230 {
    max-width: 230% !important;
  }
  .min-w-sm-230 {
    min-width: 230% !important;
  }
  .max-h-sm-230 {
    max-height: 230% !important;
  }
  .min-h-sm-230 {
    min-height: 230% !important;
  }
  .min-sm-vw-230 {
    min-width: 230vw !important;
  }
  .min-sm-vh-230 {
    min-height: 230vh !important;
  }
  .vw-sm-230 {
    width: 230vw !important;
  }
  .vh-sm-230 {
    height: 230vh !important;
  }
  .width-sm-230 {
    width: 230px !important;
  }
  .height-sm-230 {
    height: 230px !important;
  }
  .max-width-sm-230 {
    max-width: 230 px !important;
  }
  .min-width-sm-230 {
    min-width: 230px !important;
  }
  .max-height-sm-230 {
    max-height: 230px !important;
  }
  .min-height-sm-230 {
    min-height: 230px !important;
  }
}
@media (max-width: 768px) {
  .w-md-230 {
    width: 230% !important;
  }
  .h-md-230 {
    height: 230% !important;
  }
  .max-w-md-230 {
    max-width: 230% !important;
  }
  .min-w-md-230 {
    min-width: 230% !important;
  }
  .max-h-md-230 {
    max-height: 230% !important;
  }
  .min-h-md-230 {
    min-height: 230% !important;
  }
  .min-md-vw-230 {
    min-width: 230vw !important;
  }
  .min-md-vh-230 {
    min-height: 230vh !important;
  }
  .vw-md-230 {
    width: 230vw !important;
  }
  .vh-md-230 {
    height: 230vh !important;
  }
  .width-md-230 {
    width: 230px !important;
  }
  .height-md-230 {
    height: 230px !important;
  }
  .max-width-md-230 {
    max-width: 230px !important;
  }
  .min-width-md-230 {
    min-width: 230px !important;
  }
  .max-height-md-230 {
    max-height: 230px !important;
  }
  .min-height-md-230 {
    min-height: 230px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-230 {
    width: 230% !important;
  }
  .h-lg-230 {
    height: 230% !important;
  }
  .max-w-lg-230 {
    max-width: 230% !important;
  }
  .min-w-lg-230 {
    min-width: 230% !important;
  }
  .max-h-lg-230 {
    max-height: 230% !important;
  }
  .min-h-lg-230 {
    min-height: 230% !important;
  }
  .min-lg-vw-230 {
    min-width: 230vw !important;
  }
  .min-lg-vh-230 {
    min-height: 230vh !important;
  }
  .vw-lg-230 {
    width: 230vw !important;
  }
  .vh-lg-230 {
    height: 230vh !important;
  }
  .width-lg-230 {
    width: 230px !important;
  }
  .height-lg-230 {
    height: 230px !important;
  }
  .max-width-lg-230 {
    max-width: 230px !important;
  }
  .min-width-lg-230 {
    min-width: 230px !important;
  }
  .max-height-lg-230 {
    max-height: 230px !important;
  }
  .min-height-lg-230 {
    min-height: 230px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-230 {
    width: 230% !important;
  }
  .h-xl-230 {
    height: 230% !important;
  }
  .max-w-xl-230 {
    max-width: 230% !important;
  }
  .min-w-xl-230 {
    min-width: 230% !important;
  }
  .max-h-xl-230 {
    max-height: 230% !important;
  }
  .min-h-xl-230 {
    min-height: 230% !important;
  }
  .min-xl-vw-230 {
    min-width: 230vw !important;
  }
  .min-xl-vh-230 {
    min-height: 230vh !important;
  }
  .vw-xl-230 {
    width: 230vw !important;
  }
  .vh-xl-230 {
    height: 230vh !important;
  }
  .width-xl-230 {
    width: 230px !important;
  }
  .height-xl-230 {
    height: 230px !important;
  }
  .max-width-xl-230 {
    max-width: 230px !important;
  }
  .min-width-xl-230 {
    min-width: 230px !important;
  }
  .max-height-xl-230 {
    max-height: 230px !important;
  }
  .min-height-xl-230 {
    min-height: 230px !important;
  }
}
.w-230 {
  width: 230% !important;
}

.h-230 {
  height: 230% !important;
}

.max-w-230 {
  max-width: 230% !important;
}

.min-w-230 {
  min-width: 230% !important;
}

.max-h-230 {
  max-height: 230% !important;
}

.min-h-230 {
  min-height: 230% !important;
}

.min-vw-230 {
  min-width: 230vw !important;
}

.min-vh-230 {
  min-height: 230vh !important;
}

.vw-230 {
  width: 230vw !important;
}

.vh-230 {
  height: 230vh !important;
}

.width-230 {
  width: 230px !important;
}

.height-230 {
  height: 230px !important;
}

.max-width-230 {
  max-width: 230px !important;
}

.min-width-230 {
  min-width: 230px !important;
}

.max-height-230 {
  max-height: 230px !important;
}

.min-height-230 {
  min-height: 230px !important;
}

@media (max-width: 576px) {
  .w-sm-240 {
    width: 240% !important;
  }
  .h-sm-240 {
    height: 240% !important;
  }
  .max-w-sm-240 {
    max-width: 240% !important;
  }
  .min-w-sm-240 {
    min-width: 240% !important;
  }
  .max-h-sm-240 {
    max-height: 240% !important;
  }
  .min-h-sm-240 {
    min-height: 240% !important;
  }
  .min-sm-vw-240 {
    min-width: 240vw !important;
  }
  .min-sm-vh-240 {
    min-height: 240vh !important;
  }
  .vw-sm-240 {
    width: 240vw !important;
  }
  .vh-sm-240 {
    height: 240vh !important;
  }
  .width-sm-240 {
    width: 240px !important;
  }
  .height-sm-240 {
    height: 240px !important;
  }
  .max-width-sm-240 {
    max-width: 240 px !important;
  }
  .min-width-sm-240 {
    min-width: 240px !important;
  }
  .max-height-sm-240 {
    max-height: 240px !important;
  }
  .min-height-sm-240 {
    min-height: 240px !important;
  }
}
@media (max-width: 768px) {
  .w-md-240 {
    width: 240% !important;
  }
  .h-md-240 {
    height: 240% !important;
  }
  .max-w-md-240 {
    max-width: 240% !important;
  }
  .min-w-md-240 {
    min-width: 240% !important;
  }
  .max-h-md-240 {
    max-height: 240% !important;
  }
  .min-h-md-240 {
    min-height: 240% !important;
  }
  .min-md-vw-240 {
    min-width: 240vw !important;
  }
  .min-md-vh-240 {
    min-height: 240vh !important;
  }
  .vw-md-240 {
    width: 240vw !important;
  }
  .vh-md-240 {
    height: 240vh !important;
  }
  .width-md-240 {
    width: 240px !important;
  }
  .height-md-240 {
    height: 240px !important;
  }
  .max-width-md-240 {
    max-width: 240px !important;
  }
  .min-width-md-240 {
    min-width: 240px !important;
  }
  .max-height-md-240 {
    max-height: 240px !important;
  }
  .min-height-md-240 {
    min-height: 240px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-240 {
    width: 240% !important;
  }
  .h-lg-240 {
    height: 240% !important;
  }
  .max-w-lg-240 {
    max-width: 240% !important;
  }
  .min-w-lg-240 {
    min-width: 240% !important;
  }
  .max-h-lg-240 {
    max-height: 240% !important;
  }
  .min-h-lg-240 {
    min-height: 240% !important;
  }
  .min-lg-vw-240 {
    min-width: 240vw !important;
  }
  .min-lg-vh-240 {
    min-height: 240vh !important;
  }
  .vw-lg-240 {
    width: 240vw !important;
  }
  .vh-lg-240 {
    height: 240vh !important;
  }
  .width-lg-240 {
    width: 240px !important;
  }
  .height-lg-240 {
    height: 240px !important;
  }
  .max-width-lg-240 {
    max-width: 240px !important;
  }
  .min-width-lg-240 {
    min-width: 240px !important;
  }
  .max-height-lg-240 {
    max-height: 240px !important;
  }
  .min-height-lg-240 {
    min-height: 240px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-240 {
    width: 240% !important;
  }
  .h-xl-240 {
    height: 240% !important;
  }
  .max-w-xl-240 {
    max-width: 240% !important;
  }
  .min-w-xl-240 {
    min-width: 240% !important;
  }
  .max-h-xl-240 {
    max-height: 240% !important;
  }
  .min-h-xl-240 {
    min-height: 240% !important;
  }
  .min-xl-vw-240 {
    min-width: 240vw !important;
  }
  .min-xl-vh-240 {
    min-height: 240vh !important;
  }
  .vw-xl-240 {
    width: 240vw !important;
  }
  .vh-xl-240 {
    height: 240vh !important;
  }
  .width-xl-240 {
    width: 240px !important;
  }
  .height-xl-240 {
    height: 240px !important;
  }
  .max-width-xl-240 {
    max-width: 240px !important;
  }
  .min-width-xl-240 {
    min-width: 240px !important;
  }
  .max-height-xl-240 {
    max-height: 240px !important;
  }
  .min-height-xl-240 {
    min-height: 240px !important;
  }
}
.w-240 {
  width: 240% !important;
}

.h-240 {
  height: 240% !important;
}

.max-w-240 {
  max-width: 240% !important;
}

.min-w-240 {
  min-width: 240% !important;
}

.max-h-240 {
  max-height: 240% !important;
}

.min-h-240 {
  min-height: 240% !important;
}

.min-vw-240 {
  min-width: 240vw !important;
}

.min-vh-240 {
  min-height: 240vh !important;
}

.vw-240 {
  width: 240vw !important;
}

.vh-240 {
  height: 240vh !important;
}

.width-240 {
  width: 240px !important;
}

.height-240 {
  height: 240px !important;
}

.max-width-240 {
  max-width: 240px !important;
}

.min-width-240 {
  min-width: 240px !important;
}

.max-height-240 {
  max-height: 240px !important;
}

.min-height-240 {
  min-height: 240px !important;
}

@media (max-width: 576px) {
  .w-sm-250 {
    width: 250% !important;
  }
  .h-sm-250 {
    height: 250% !important;
  }
  .max-w-sm-250 {
    max-width: 250% !important;
  }
  .min-w-sm-250 {
    min-width: 250% !important;
  }
  .max-h-sm-250 {
    max-height: 250% !important;
  }
  .min-h-sm-250 {
    min-height: 250% !important;
  }
  .min-sm-vw-250 {
    min-width: 250vw !important;
  }
  .min-sm-vh-250 {
    min-height: 250vh !important;
  }
  .vw-sm-250 {
    width: 250vw !important;
  }
  .vh-sm-250 {
    height: 250vh !important;
  }
  .width-sm-250 {
    width: 250px !important;
  }
  .height-sm-250 {
    height: 250px !important;
  }
  .max-width-sm-250 {
    max-width: 250 px !important;
  }
  .min-width-sm-250 {
    min-width: 250px !important;
  }
  .max-height-sm-250 {
    max-height: 250px !important;
  }
  .min-height-sm-250 {
    min-height: 250px !important;
  }
}
@media (max-width: 768px) {
  .w-md-250 {
    width: 250% !important;
  }
  .h-md-250 {
    height: 250% !important;
  }
  .max-w-md-250 {
    max-width: 250% !important;
  }
  .min-w-md-250 {
    min-width: 250% !important;
  }
  .max-h-md-250 {
    max-height: 250% !important;
  }
  .min-h-md-250 {
    min-height: 250% !important;
  }
  .min-md-vw-250 {
    min-width: 250vw !important;
  }
  .min-md-vh-250 {
    min-height: 250vh !important;
  }
  .vw-md-250 {
    width: 250vw !important;
  }
  .vh-md-250 {
    height: 250vh !important;
  }
  .width-md-250 {
    width: 250px !important;
  }
  .height-md-250 {
    height: 250px !important;
  }
  .max-width-md-250 {
    max-width: 250px !important;
  }
  .min-width-md-250 {
    min-width: 250px !important;
  }
  .max-height-md-250 {
    max-height: 250px !important;
  }
  .min-height-md-250 {
    min-height: 250px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-250 {
    width: 250% !important;
  }
  .h-lg-250 {
    height: 250% !important;
  }
  .max-w-lg-250 {
    max-width: 250% !important;
  }
  .min-w-lg-250 {
    min-width: 250% !important;
  }
  .max-h-lg-250 {
    max-height: 250% !important;
  }
  .min-h-lg-250 {
    min-height: 250% !important;
  }
  .min-lg-vw-250 {
    min-width: 250vw !important;
  }
  .min-lg-vh-250 {
    min-height: 250vh !important;
  }
  .vw-lg-250 {
    width: 250vw !important;
  }
  .vh-lg-250 {
    height: 250vh !important;
  }
  .width-lg-250 {
    width: 250px !important;
  }
  .height-lg-250 {
    height: 250px !important;
  }
  .max-width-lg-250 {
    max-width: 250px !important;
  }
  .min-width-lg-250 {
    min-width: 250px !important;
  }
  .max-height-lg-250 {
    max-height: 250px !important;
  }
  .min-height-lg-250 {
    min-height: 250px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-250 {
    width: 250% !important;
  }
  .h-xl-250 {
    height: 250% !important;
  }
  .max-w-xl-250 {
    max-width: 250% !important;
  }
  .min-w-xl-250 {
    min-width: 250% !important;
  }
  .max-h-xl-250 {
    max-height: 250% !important;
  }
  .min-h-xl-250 {
    min-height: 250% !important;
  }
  .min-xl-vw-250 {
    min-width: 250vw !important;
  }
  .min-xl-vh-250 {
    min-height: 250vh !important;
  }
  .vw-xl-250 {
    width: 250vw !important;
  }
  .vh-xl-250 {
    height: 250vh !important;
  }
  .width-xl-250 {
    width: 250px !important;
  }
  .height-xl-250 {
    height: 250px !important;
  }
  .max-width-xl-250 {
    max-width: 250px !important;
  }
  .min-width-xl-250 {
    min-width: 250px !important;
  }
  .max-height-xl-250 {
    max-height: 250px !important;
  }
  .min-height-xl-250 {
    min-height: 250px !important;
  }
}
.w-250 {
  width: 250% !important;
}

.h-250 {
  height: 250% !important;
}

.max-w-250 {
  max-width: 250% !important;
}

.min-w-250 {
  min-width: 250% !important;
}

.max-h-250 {
  max-height: 250% !important;
}

.min-h-250 {
  min-height: 250% !important;
}

.min-vw-250 {
  min-width: 250vw !important;
}

.min-vh-250 {
  min-height: 250vh !important;
}

.vw-250 {
  width: 250vw !important;
}

.vh-250 {
  height: 250vh !important;
}

.width-250 {
  width: 250px !important;
}

.height-250 {
  height: 250px !important;
}

.max-width-250 {
  max-width: 250px !important;
}

.min-width-250 {
  min-width: 250px !important;
}

.max-height-250 {
  max-height: 250px !important;
}

.min-height-250 {
  min-height: 250px !important;
}

@media (max-width: 576px) {
  .w-sm-260 {
    width: 260% !important;
  }
  .h-sm-260 {
    height: 260% !important;
  }
  .max-w-sm-260 {
    max-width: 260% !important;
  }
  .min-w-sm-260 {
    min-width: 260% !important;
  }
  .max-h-sm-260 {
    max-height: 260% !important;
  }
  .min-h-sm-260 {
    min-height: 260% !important;
  }
  .min-sm-vw-260 {
    min-width: 260vw !important;
  }
  .min-sm-vh-260 {
    min-height: 260vh !important;
  }
  .vw-sm-260 {
    width: 260vw !important;
  }
  .vh-sm-260 {
    height: 260vh !important;
  }
  .width-sm-260 {
    width: 260px !important;
  }
  .height-sm-260 {
    height: 260px !important;
  }
  .max-width-sm-260 {
    max-width: 260 px !important;
  }
  .min-width-sm-260 {
    min-width: 260px !important;
  }
  .max-height-sm-260 {
    max-height: 260px !important;
  }
  .min-height-sm-260 {
    min-height: 260px !important;
  }
}
@media (max-width: 768px) {
  .w-md-260 {
    width: 260% !important;
  }
  .h-md-260 {
    height: 260% !important;
  }
  .max-w-md-260 {
    max-width: 260% !important;
  }
  .min-w-md-260 {
    min-width: 260% !important;
  }
  .max-h-md-260 {
    max-height: 260% !important;
  }
  .min-h-md-260 {
    min-height: 260% !important;
  }
  .min-md-vw-260 {
    min-width: 260vw !important;
  }
  .min-md-vh-260 {
    min-height: 260vh !important;
  }
  .vw-md-260 {
    width: 260vw !important;
  }
  .vh-md-260 {
    height: 260vh !important;
  }
  .width-md-260 {
    width: 260px !important;
  }
  .height-md-260 {
    height: 260px !important;
  }
  .max-width-md-260 {
    max-width: 260px !important;
  }
  .min-width-md-260 {
    min-width: 260px !important;
  }
  .max-height-md-260 {
    max-height: 260px !important;
  }
  .min-height-md-260 {
    min-height: 260px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-260 {
    width: 260% !important;
  }
  .h-lg-260 {
    height: 260% !important;
  }
  .max-w-lg-260 {
    max-width: 260% !important;
  }
  .min-w-lg-260 {
    min-width: 260% !important;
  }
  .max-h-lg-260 {
    max-height: 260% !important;
  }
  .min-h-lg-260 {
    min-height: 260% !important;
  }
  .min-lg-vw-260 {
    min-width: 260vw !important;
  }
  .min-lg-vh-260 {
    min-height: 260vh !important;
  }
  .vw-lg-260 {
    width: 260vw !important;
  }
  .vh-lg-260 {
    height: 260vh !important;
  }
  .width-lg-260 {
    width: 260px !important;
  }
  .height-lg-260 {
    height: 260px !important;
  }
  .max-width-lg-260 {
    max-width: 260px !important;
  }
  .min-width-lg-260 {
    min-width: 260px !important;
  }
  .max-height-lg-260 {
    max-height: 260px !important;
  }
  .min-height-lg-260 {
    min-height: 260px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-260 {
    width: 260% !important;
  }
  .h-xl-260 {
    height: 260% !important;
  }
  .max-w-xl-260 {
    max-width: 260% !important;
  }
  .min-w-xl-260 {
    min-width: 260% !important;
  }
  .max-h-xl-260 {
    max-height: 260% !important;
  }
  .min-h-xl-260 {
    min-height: 260% !important;
  }
  .min-xl-vw-260 {
    min-width: 260vw !important;
  }
  .min-xl-vh-260 {
    min-height: 260vh !important;
  }
  .vw-xl-260 {
    width: 260vw !important;
  }
  .vh-xl-260 {
    height: 260vh !important;
  }
  .width-xl-260 {
    width: 260px !important;
  }
  .height-xl-260 {
    height: 260px !important;
  }
  .max-width-xl-260 {
    max-width: 260px !important;
  }
  .min-width-xl-260 {
    min-width: 260px !important;
  }
  .max-height-xl-260 {
    max-height: 260px !important;
  }
  .min-height-xl-260 {
    min-height: 260px !important;
  }
}
.w-260 {
  width: 260% !important;
}

.h-260 {
  height: 260% !important;
}

.max-w-260 {
  max-width: 260% !important;
}

.min-w-260 {
  min-width: 260% !important;
}

.max-h-260 {
  max-height: 260% !important;
}

.min-h-260 {
  min-height: 260% !important;
}

.min-vw-260 {
  min-width: 260vw !important;
}

.min-vh-260 {
  min-height: 260vh !important;
}

.vw-260 {
  width: 260vw !important;
}

.vh-260 {
  height: 260vh !important;
}

.width-260 {
  width: 260px !important;
}

.height-260 {
  height: 260px !important;
}

.max-width-260 {
  max-width: 260px !important;
}

.min-width-260 {
  min-width: 260px !important;
}

.max-height-260 {
  max-height: 260px !important;
}

.min-height-260 {
  min-height: 260px !important;
}

@media (max-width: 576px) {
  .w-sm-270 {
    width: 270% !important;
  }
  .h-sm-270 {
    height: 270% !important;
  }
  .max-w-sm-270 {
    max-width: 270% !important;
  }
  .min-w-sm-270 {
    min-width: 270% !important;
  }
  .max-h-sm-270 {
    max-height: 270% !important;
  }
  .min-h-sm-270 {
    min-height: 270% !important;
  }
  .min-sm-vw-270 {
    min-width: 270vw !important;
  }
  .min-sm-vh-270 {
    min-height: 270vh !important;
  }
  .vw-sm-270 {
    width: 270vw !important;
  }
  .vh-sm-270 {
    height: 270vh !important;
  }
  .width-sm-270 {
    width: 270px !important;
  }
  .height-sm-270 {
    height: 270px !important;
  }
  .max-width-sm-270 {
    max-width: 270 px !important;
  }
  .min-width-sm-270 {
    min-width: 270px !important;
  }
  .max-height-sm-270 {
    max-height: 270px !important;
  }
  .min-height-sm-270 {
    min-height: 270px !important;
  }
}
@media (max-width: 768px) {
  .w-md-270 {
    width: 270% !important;
  }
  .h-md-270 {
    height: 270% !important;
  }
  .max-w-md-270 {
    max-width: 270% !important;
  }
  .min-w-md-270 {
    min-width: 270% !important;
  }
  .max-h-md-270 {
    max-height: 270% !important;
  }
  .min-h-md-270 {
    min-height: 270% !important;
  }
  .min-md-vw-270 {
    min-width: 270vw !important;
  }
  .min-md-vh-270 {
    min-height: 270vh !important;
  }
  .vw-md-270 {
    width: 270vw !important;
  }
  .vh-md-270 {
    height: 270vh !important;
  }
  .width-md-270 {
    width: 270px !important;
  }
  .height-md-270 {
    height: 270px !important;
  }
  .max-width-md-270 {
    max-width: 270px !important;
  }
  .min-width-md-270 {
    min-width: 270px !important;
  }
  .max-height-md-270 {
    max-height: 270px !important;
  }
  .min-height-md-270 {
    min-height: 270px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-270 {
    width: 270% !important;
  }
  .h-lg-270 {
    height: 270% !important;
  }
  .max-w-lg-270 {
    max-width: 270% !important;
  }
  .min-w-lg-270 {
    min-width: 270% !important;
  }
  .max-h-lg-270 {
    max-height: 270% !important;
  }
  .min-h-lg-270 {
    min-height: 270% !important;
  }
  .min-lg-vw-270 {
    min-width: 270vw !important;
  }
  .min-lg-vh-270 {
    min-height: 270vh !important;
  }
  .vw-lg-270 {
    width: 270vw !important;
  }
  .vh-lg-270 {
    height: 270vh !important;
  }
  .width-lg-270 {
    width: 270px !important;
  }
  .height-lg-270 {
    height: 270px !important;
  }
  .max-width-lg-270 {
    max-width: 270px !important;
  }
  .min-width-lg-270 {
    min-width: 270px !important;
  }
  .max-height-lg-270 {
    max-height: 270px !important;
  }
  .min-height-lg-270 {
    min-height: 270px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-270 {
    width: 270% !important;
  }
  .h-xl-270 {
    height: 270% !important;
  }
  .max-w-xl-270 {
    max-width: 270% !important;
  }
  .min-w-xl-270 {
    min-width: 270% !important;
  }
  .max-h-xl-270 {
    max-height: 270% !important;
  }
  .min-h-xl-270 {
    min-height: 270% !important;
  }
  .min-xl-vw-270 {
    min-width: 270vw !important;
  }
  .min-xl-vh-270 {
    min-height: 270vh !important;
  }
  .vw-xl-270 {
    width: 270vw !important;
  }
  .vh-xl-270 {
    height: 270vh !important;
  }
  .width-xl-270 {
    width: 270px !important;
  }
  .height-xl-270 {
    height: 270px !important;
  }
  .max-width-xl-270 {
    max-width: 270px !important;
  }
  .min-width-xl-270 {
    min-width: 270px !important;
  }
  .max-height-xl-270 {
    max-height: 270px !important;
  }
  .min-height-xl-270 {
    min-height: 270px !important;
  }
}
.w-270 {
  width: 270% !important;
}

.h-270 {
  height: 270% !important;
}

.max-w-270 {
  max-width: 270% !important;
}

.min-w-270 {
  min-width: 270% !important;
}

.max-h-270 {
  max-height: 270% !important;
}

.min-h-270 {
  min-height: 270% !important;
}

.min-vw-270 {
  min-width: 270vw !important;
}

.min-vh-270 {
  min-height: 270vh !important;
}

.vw-270 {
  width: 270vw !important;
}

.vh-270 {
  height: 270vh !important;
}

.width-270 {
  width: 270px !important;
}

.height-270 {
  height: 270px !important;
}

.max-width-270 {
  max-width: 270px !important;
}

.min-width-270 {
  min-width: 270px !important;
}

.max-height-270 {
  max-height: 270px !important;
}

.min-height-270 {
  min-height: 270px !important;
}

@media (max-width: 576px) {
  .w-sm-280 {
    width: 280% !important;
  }
  .h-sm-280 {
    height: 280% !important;
  }
  .max-w-sm-280 {
    max-width: 280% !important;
  }
  .min-w-sm-280 {
    min-width: 280% !important;
  }
  .max-h-sm-280 {
    max-height: 280% !important;
  }
  .min-h-sm-280 {
    min-height: 280% !important;
  }
  .min-sm-vw-280 {
    min-width: 280vw !important;
  }
  .min-sm-vh-280 {
    min-height: 280vh !important;
  }
  .vw-sm-280 {
    width: 280vw !important;
  }
  .vh-sm-280 {
    height: 280vh !important;
  }
  .width-sm-280 {
    width: 280px !important;
  }
  .height-sm-280 {
    height: 280px !important;
  }
  .max-width-sm-280 {
    max-width: 280 px !important;
  }
  .min-width-sm-280 {
    min-width: 280px !important;
  }
  .max-height-sm-280 {
    max-height: 280px !important;
  }
  .min-height-sm-280 {
    min-height: 280px !important;
  }
}
@media (max-width: 768px) {
  .w-md-280 {
    width: 280% !important;
  }
  .h-md-280 {
    height: 280% !important;
  }
  .max-w-md-280 {
    max-width: 280% !important;
  }
  .min-w-md-280 {
    min-width: 280% !important;
  }
  .max-h-md-280 {
    max-height: 280% !important;
  }
  .min-h-md-280 {
    min-height: 280% !important;
  }
  .min-md-vw-280 {
    min-width: 280vw !important;
  }
  .min-md-vh-280 {
    min-height: 280vh !important;
  }
  .vw-md-280 {
    width: 280vw !important;
  }
  .vh-md-280 {
    height: 280vh !important;
  }
  .width-md-280 {
    width: 280px !important;
  }
  .height-md-280 {
    height: 280px !important;
  }
  .max-width-md-280 {
    max-width: 280px !important;
  }
  .min-width-md-280 {
    min-width: 280px !important;
  }
  .max-height-md-280 {
    max-height: 280px !important;
  }
  .min-height-md-280 {
    min-height: 280px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-280 {
    width: 280% !important;
  }
  .h-lg-280 {
    height: 280% !important;
  }
  .max-w-lg-280 {
    max-width: 280% !important;
  }
  .min-w-lg-280 {
    min-width: 280% !important;
  }
  .max-h-lg-280 {
    max-height: 280% !important;
  }
  .min-h-lg-280 {
    min-height: 280% !important;
  }
  .min-lg-vw-280 {
    min-width: 280vw !important;
  }
  .min-lg-vh-280 {
    min-height: 280vh !important;
  }
  .vw-lg-280 {
    width: 280vw !important;
  }
  .vh-lg-280 {
    height: 280vh !important;
  }
  .width-lg-280 {
    width: 280px !important;
  }
  .height-lg-280 {
    height: 280px !important;
  }
  .max-width-lg-280 {
    max-width: 280px !important;
  }
  .min-width-lg-280 {
    min-width: 280px !important;
  }
  .max-height-lg-280 {
    max-height: 280px !important;
  }
  .min-height-lg-280 {
    min-height: 280px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-280 {
    width: 280% !important;
  }
  .h-xl-280 {
    height: 280% !important;
  }
  .max-w-xl-280 {
    max-width: 280% !important;
  }
  .min-w-xl-280 {
    min-width: 280% !important;
  }
  .max-h-xl-280 {
    max-height: 280% !important;
  }
  .min-h-xl-280 {
    min-height: 280% !important;
  }
  .min-xl-vw-280 {
    min-width: 280vw !important;
  }
  .min-xl-vh-280 {
    min-height: 280vh !important;
  }
  .vw-xl-280 {
    width: 280vw !important;
  }
  .vh-xl-280 {
    height: 280vh !important;
  }
  .width-xl-280 {
    width: 280px !important;
  }
  .height-xl-280 {
    height: 280px !important;
  }
  .max-width-xl-280 {
    max-width: 280px !important;
  }
  .min-width-xl-280 {
    min-width: 280px !important;
  }
  .max-height-xl-280 {
    max-height: 280px !important;
  }
  .min-height-xl-280 {
    min-height: 280px !important;
  }
}
.w-280 {
  width: 280% !important;
}

.h-280 {
  height: 280% !important;
}

.max-w-280 {
  max-width: 280% !important;
}

.min-w-280 {
  min-width: 280% !important;
}

.max-h-280 {
  max-height: 280% !important;
}

.min-h-280 {
  min-height: 280% !important;
}

.min-vw-280 {
  min-width: 280vw !important;
}

.min-vh-280 {
  min-height: 280vh !important;
}

.vw-280 {
  width: 280vw !important;
}

.vh-280 {
  height: 280vh !important;
}

.width-280 {
  width: 280px !important;
}

.height-280 {
  height: 280px !important;
}

.max-width-280 {
  max-width: 280px !important;
}

.min-width-280 {
  min-width: 280px !important;
}

.max-height-280 {
  max-height: 280px !important;
}

.min-height-280 {
  min-height: 280px !important;
}

@media (max-width: 576px) {
  .w-sm-290 {
    width: 290% !important;
  }
  .h-sm-290 {
    height: 290% !important;
  }
  .max-w-sm-290 {
    max-width: 290% !important;
  }
  .min-w-sm-290 {
    min-width: 290% !important;
  }
  .max-h-sm-290 {
    max-height: 290% !important;
  }
  .min-h-sm-290 {
    min-height: 290% !important;
  }
  .min-sm-vw-290 {
    min-width: 290vw !important;
  }
  .min-sm-vh-290 {
    min-height: 290vh !important;
  }
  .vw-sm-290 {
    width: 290vw !important;
  }
  .vh-sm-290 {
    height: 290vh !important;
  }
  .width-sm-290 {
    width: 290px !important;
  }
  .height-sm-290 {
    height: 290px !important;
  }
  .max-width-sm-290 {
    max-width: 290 px !important;
  }
  .min-width-sm-290 {
    min-width: 290px !important;
  }
  .max-height-sm-290 {
    max-height: 290px !important;
  }
  .min-height-sm-290 {
    min-height: 290px !important;
  }
}
@media (max-width: 768px) {
  .w-md-290 {
    width: 290% !important;
  }
  .h-md-290 {
    height: 290% !important;
  }
  .max-w-md-290 {
    max-width: 290% !important;
  }
  .min-w-md-290 {
    min-width: 290% !important;
  }
  .max-h-md-290 {
    max-height: 290% !important;
  }
  .min-h-md-290 {
    min-height: 290% !important;
  }
  .min-md-vw-290 {
    min-width: 290vw !important;
  }
  .min-md-vh-290 {
    min-height: 290vh !important;
  }
  .vw-md-290 {
    width: 290vw !important;
  }
  .vh-md-290 {
    height: 290vh !important;
  }
  .width-md-290 {
    width: 290px !important;
  }
  .height-md-290 {
    height: 290px !important;
  }
  .max-width-md-290 {
    max-width: 290px !important;
  }
  .min-width-md-290 {
    min-width: 290px !important;
  }
  .max-height-md-290 {
    max-height: 290px !important;
  }
  .min-height-md-290 {
    min-height: 290px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-290 {
    width: 290% !important;
  }
  .h-lg-290 {
    height: 290% !important;
  }
  .max-w-lg-290 {
    max-width: 290% !important;
  }
  .min-w-lg-290 {
    min-width: 290% !important;
  }
  .max-h-lg-290 {
    max-height: 290% !important;
  }
  .min-h-lg-290 {
    min-height: 290% !important;
  }
  .min-lg-vw-290 {
    min-width: 290vw !important;
  }
  .min-lg-vh-290 {
    min-height: 290vh !important;
  }
  .vw-lg-290 {
    width: 290vw !important;
  }
  .vh-lg-290 {
    height: 290vh !important;
  }
  .width-lg-290 {
    width: 290px !important;
  }
  .height-lg-290 {
    height: 290px !important;
  }
  .max-width-lg-290 {
    max-width: 290px !important;
  }
  .min-width-lg-290 {
    min-width: 290px !important;
  }
  .max-height-lg-290 {
    max-height: 290px !important;
  }
  .min-height-lg-290 {
    min-height: 290px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-290 {
    width: 290% !important;
  }
  .h-xl-290 {
    height: 290% !important;
  }
  .max-w-xl-290 {
    max-width: 290% !important;
  }
  .min-w-xl-290 {
    min-width: 290% !important;
  }
  .max-h-xl-290 {
    max-height: 290% !important;
  }
  .min-h-xl-290 {
    min-height: 290% !important;
  }
  .min-xl-vw-290 {
    min-width: 290vw !important;
  }
  .min-xl-vh-290 {
    min-height: 290vh !important;
  }
  .vw-xl-290 {
    width: 290vw !important;
  }
  .vh-xl-290 {
    height: 290vh !important;
  }
  .width-xl-290 {
    width: 290px !important;
  }
  .height-xl-290 {
    height: 290px !important;
  }
  .max-width-xl-290 {
    max-width: 290px !important;
  }
  .min-width-xl-290 {
    min-width: 290px !important;
  }
  .max-height-xl-290 {
    max-height: 290px !important;
  }
  .min-height-xl-290 {
    min-height: 290px !important;
  }
}
.w-290 {
  width: 290% !important;
}

.h-290 {
  height: 290% !important;
}

.max-w-290 {
  max-width: 290% !important;
}

.min-w-290 {
  min-width: 290% !important;
}

.max-h-290 {
  max-height: 290% !important;
}

.min-h-290 {
  min-height: 290% !important;
}

.min-vw-290 {
  min-width: 290vw !important;
}

.min-vh-290 {
  min-height: 290vh !important;
}

.vw-290 {
  width: 290vw !important;
}

.vh-290 {
  height: 290vh !important;
}

.width-290 {
  width: 290px !important;
}

.height-290 {
  height: 290px !important;
}

.max-width-290 {
  max-width: 290px !important;
}

.min-width-290 {
  min-width: 290px !important;
}

.max-height-290 {
  max-height: 290px !important;
}

.min-height-290 {
  min-height: 290px !important;
}

@media (max-width: 576px) {
  .w-sm-300 {
    width: 300% !important;
  }
  .h-sm-300 {
    height: 300% !important;
  }
  .max-w-sm-300 {
    max-width: 300% !important;
  }
  .min-w-sm-300 {
    min-width: 300% !important;
  }
  .max-h-sm-300 {
    max-height: 300% !important;
  }
  .min-h-sm-300 {
    min-height: 300% !important;
  }
  .min-sm-vw-300 {
    min-width: 300vw !important;
  }
  .min-sm-vh-300 {
    min-height: 300vh !important;
  }
  .vw-sm-300 {
    width: 300vw !important;
  }
  .vh-sm-300 {
    height: 300vh !important;
  }
  .width-sm-300 {
    width: 300px !important;
  }
  .height-sm-300 {
    height: 300px !important;
  }
  .max-width-sm-300 {
    max-width: 300 px !important;
  }
  .min-width-sm-300 {
    min-width: 300px !important;
  }
  .max-height-sm-300 {
    max-height: 300px !important;
  }
  .min-height-sm-300 {
    min-height: 300px !important;
  }
}
@media (max-width: 768px) {
  .w-md-300 {
    width: 300% !important;
  }
  .h-md-300 {
    height: 300% !important;
  }
  .max-w-md-300 {
    max-width: 300% !important;
  }
  .min-w-md-300 {
    min-width: 300% !important;
  }
  .max-h-md-300 {
    max-height: 300% !important;
  }
  .min-h-md-300 {
    min-height: 300% !important;
  }
  .min-md-vw-300 {
    min-width: 300vw !important;
  }
  .min-md-vh-300 {
    min-height: 300vh !important;
  }
  .vw-md-300 {
    width: 300vw !important;
  }
  .vh-md-300 {
    height: 300vh !important;
  }
  .width-md-300 {
    width: 300px !important;
  }
  .height-md-300 {
    height: 300px !important;
  }
  .max-width-md-300 {
    max-width: 300px !important;
  }
  .min-width-md-300 {
    min-width: 300px !important;
  }
  .max-height-md-300 {
    max-height: 300px !important;
  }
  .min-height-md-300 {
    min-height: 300px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-300 {
    width: 300% !important;
  }
  .h-lg-300 {
    height: 300% !important;
  }
  .max-w-lg-300 {
    max-width: 300% !important;
  }
  .min-w-lg-300 {
    min-width: 300% !important;
  }
  .max-h-lg-300 {
    max-height: 300% !important;
  }
  .min-h-lg-300 {
    min-height: 300% !important;
  }
  .min-lg-vw-300 {
    min-width: 300vw !important;
  }
  .min-lg-vh-300 {
    min-height: 300vh !important;
  }
  .vw-lg-300 {
    width: 300vw !important;
  }
  .vh-lg-300 {
    height: 300vh !important;
  }
  .width-lg-300 {
    width: 300px !important;
  }
  .height-lg-300 {
    height: 300px !important;
  }
  .max-width-lg-300 {
    max-width: 300px !important;
  }
  .min-width-lg-300 {
    min-width: 300px !important;
  }
  .max-height-lg-300 {
    max-height: 300px !important;
  }
  .min-height-lg-300 {
    min-height: 300px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-300 {
    width: 300% !important;
  }
  .h-xl-300 {
    height: 300% !important;
  }
  .max-w-xl-300 {
    max-width: 300% !important;
  }
  .min-w-xl-300 {
    min-width: 300% !important;
  }
  .max-h-xl-300 {
    max-height: 300% !important;
  }
  .min-h-xl-300 {
    min-height: 300% !important;
  }
  .min-xl-vw-300 {
    min-width: 300vw !important;
  }
  .min-xl-vh-300 {
    min-height: 300vh !important;
  }
  .vw-xl-300 {
    width: 300vw !important;
  }
  .vh-xl-300 {
    height: 300vh !important;
  }
  .width-xl-300 {
    width: 300px !important;
  }
  .height-xl-300 {
    height: 300px !important;
  }
  .max-width-xl-300 {
    max-width: 300px !important;
  }
  .min-width-xl-300 {
    min-width: 300px !important;
  }
  .max-height-xl-300 {
    max-height: 300px !important;
  }
  .min-height-xl-300 {
    min-height: 300px !important;
  }
}
.w-300 {
  width: 300% !important;
}

.h-300 {
  height: 300% !important;
}

.max-w-300 {
  max-width: 300% !important;
}

.min-w-300 {
  min-width: 300% !important;
}

.max-h-300 {
  max-height: 300% !important;
}

.min-h-300 {
  min-height: 300% !important;
}

.min-vw-300 {
  min-width: 300vw !important;
}

.min-vh-300 {
  min-height: 300vh !important;
}

.vw-300 {
  width: 300vw !important;
}

.vh-300 {
  height: 300vh !important;
}

.width-300 {
  width: 300px !important;
}

.height-300 {
  height: 300px !important;
}

.max-width-300 {
  max-width: 300px !important;
}

.min-width-300 {
  min-width: 300px !important;
}

.max-height-300 {
  max-height: 300px !important;
}

.min-height-300 {
  min-height: 300px !important;
}

@media (max-width: 576px) {
  .w-sm-310 {
    width: 310% !important;
  }
  .h-sm-310 {
    height: 310% !important;
  }
  .max-w-sm-310 {
    max-width: 310% !important;
  }
  .min-w-sm-310 {
    min-width: 310% !important;
  }
  .max-h-sm-310 {
    max-height: 310% !important;
  }
  .min-h-sm-310 {
    min-height: 310% !important;
  }
  .min-sm-vw-310 {
    min-width: 310vw !important;
  }
  .min-sm-vh-310 {
    min-height: 310vh !important;
  }
  .vw-sm-310 {
    width: 310vw !important;
  }
  .vh-sm-310 {
    height: 310vh !important;
  }
  .width-sm-310 {
    width: 310px !important;
  }
  .height-sm-310 {
    height: 310px !important;
  }
  .max-width-sm-310 {
    max-width: 310 px !important;
  }
  .min-width-sm-310 {
    min-width: 310px !important;
  }
  .max-height-sm-310 {
    max-height: 310px !important;
  }
  .min-height-sm-310 {
    min-height: 310px !important;
  }
}
@media (max-width: 768px) {
  .w-md-310 {
    width: 310% !important;
  }
  .h-md-310 {
    height: 310% !important;
  }
  .max-w-md-310 {
    max-width: 310% !important;
  }
  .min-w-md-310 {
    min-width: 310% !important;
  }
  .max-h-md-310 {
    max-height: 310% !important;
  }
  .min-h-md-310 {
    min-height: 310% !important;
  }
  .min-md-vw-310 {
    min-width: 310vw !important;
  }
  .min-md-vh-310 {
    min-height: 310vh !important;
  }
  .vw-md-310 {
    width: 310vw !important;
  }
  .vh-md-310 {
    height: 310vh !important;
  }
  .width-md-310 {
    width: 310px !important;
  }
  .height-md-310 {
    height: 310px !important;
  }
  .max-width-md-310 {
    max-width: 310px !important;
  }
  .min-width-md-310 {
    min-width: 310px !important;
  }
  .max-height-md-310 {
    max-height: 310px !important;
  }
  .min-height-md-310 {
    min-height: 310px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-310 {
    width: 310% !important;
  }
  .h-lg-310 {
    height: 310% !important;
  }
  .max-w-lg-310 {
    max-width: 310% !important;
  }
  .min-w-lg-310 {
    min-width: 310% !important;
  }
  .max-h-lg-310 {
    max-height: 310% !important;
  }
  .min-h-lg-310 {
    min-height: 310% !important;
  }
  .min-lg-vw-310 {
    min-width: 310vw !important;
  }
  .min-lg-vh-310 {
    min-height: 310vh !important;
  }
  .vw-lg-310 {
    width: 310vw !important;
  }
  .vh-lg-310 {
    height: 310vh !important;
  }
  .width-lg-310 {
    width: 310px !important;
  }
  .height-lg-310 {
    height: 310px !important;
  }
  .max-width-lg-310 {
    max-width: 310px !important;
  }
  .min-width-lg-310 {
    min-width: 310px !important;
  }
  .max-height-lg-310 {
    max-height: 310px !important;
  }
  .min-height-lg-310 {
    min-height: 310px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-310 {
    width: 310% !important;
  }
  .h-xl-310 {
    height: 310% !important;
  }
  .max-w-xl-310 {
    max-width: 310% !important;
  }
  .min-w-xl-310 {
    min-width: 310% !important;
  }
  .max-h-xl-310 {
    max-height: 310% !important;
  }
  .min-h-xl-310 {
    min-height: 310% !important;
  }
  .min-xl-vw-310 {
    min-width: 310vw !important;
  }
  .min-xl-vh-310 {
    min-height: 310vh !important;
  }
  .vw-xl-310 {
    width: 310vw !important;
  }
  .vh-xl-310 {
    height: 310vh !important;
  }
  .width-xl-310 {
    width: 310px !important;
  }
  .height-xl-310 {
    height: 310px !important;
  }
  .max-width-xl-310 {
    max-width: 310px !important;
  }
  .min-width-xl-310 {
    min-width: 310px !important;
  }
  .max-height-xl-310 {
    max-height: 310px !important;
  }
  .min-height-xl-310 {
    min-height: 310px !important;
  }
}
.w-310 {
  width: 310% !important;
}

.h-310 {
  height: 310% !important;
}

.max-w-310 {
  max-width: 310% !important;
}

.min-w-310 {
  min-width: 310% !important;
}

.max-h-310 {
  max-height: 310% !important;
}

.min-h-310 {
  min-height: 310% !important;
}

.min-vw-310 {
  min-width: 310vw !important;
}

.min-vh-310 {
  min-height: 310vh !important;
}

.vw-310 {
  width: 310vw !important;
}

.vh-310 {
  height: 310vh !important;
}

.width-310 {
  width: 310px !important;
}

.height-310 {
  height: 310px !important;
}

.max-width-310 {
  max-width: 310px !important;
}

.min-width-310 {
  min-width: 310px !important;
}

.max-height-310 {
  max-height: 310px !important;
}

.min-height-310 {
  min-height: 310px !important;
}

@media (max-width: 576px) {
  .w-sm-320 {
    width: 320% !important;
  }
  .h-sm-320 {
    height: 320% !important;
  }
  .max-w-sm-320 {
    max-width: 320% !important;
  }
  .min-w-sm-320 {
    min-width: 320% !important;
  }
  .max-h-sm-320 {
    max-height: 320% !important;
  }
  .min-h-sm-320 {
    min-height: 320% !important;
  }
  .min-sm-vw-320 {
    min-width: 320vw !important;
  }
  .min-sm-vh-320 {
    min-height: 320vh !important;
  }
  .vw-sm-320 {
    width: 320vw !important;
  }
  .vh-sm-320 {
    height: 320vh !important;
  }
  .width-sm-320 {
    width: 320px !important;
  }
  .height-sm-320 {
    height: 320px !important;
  }
  .max-width-sm-320 {
    max-width: 320 px !important;
  }
  .min-width-sm-320 {
    min-width: 320px !important;
  }
  .max-height-sm-320 {
    max-height: 320px !important;
  }
  .min-height-sm-320 {
    min-height: 320px !important;
  }
}
@media (max-width: 768px) {
  .w-md-320 {
    width: 320% !important;
  }
  .h-md-320 {
    height: 320% !important;
  }
  .max-w-md-320 {
    max-width: 320% !important;
  }
  .min-w-md-320 {
    min-width: 320% !important;
  }
  .max-h-md-320 {
    max-height: 320% !important;
  }
  .min-h-md-320 {
    min-height: 320% !important;
  }
  .min-md-vw-320 {
    min-width: 320vw !important;
  }
  .min-md-vh-320 {
    min-height: 320vh !important;
  }
  .vw-md-320 {
    width: 320vw !important;
  }
  .vh-md-320 {
    height: 320vh !important;
  }
  .width-md-320 {
    width: 320px !important;
  }
  .height-md-320 {
    height: 320px !important;
  }
  .max-width-md-320 {
    max-width: 320px !important;
  }
  .min-width-md-320 {
    min-width: 320px !important;
  }
  .max-height-md-320 {
    max-height: 320px !important;
  }
  .min-height-md-320 {
    min-height: 320px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-320 {
    width: 320% !important;
  }
  .h-lg-320 {
    height: 320% !important;
  }
  .max-w-lg-320 {
    max-width: 320% !important;
  }
  .min-w-lg-320 {
    min-width: 320% !important;
  }
  .max-h-lg-320 {
    max-height: 320% !important;
  }
  .min-h-lg-320 {
    min-height: 320% !important;
  }
  .min-lg-vw-320 {
    min-width: 320vw !important;
  }
  .min-lg-vh-320 {
    min-height: 320vh !important;
  }
  .vw-lg-320 {
    width: 320vw !important;
  }
  .vh-lg-320 {
    height: 320vh !important;
  }
  .width-lg-320 {
    width: 320px !important;
  }
  .height-lg-320 {
    height: 320px !important;
  }
  .max-width-lg-320 {
    max-width: 320px !important;
  }
  .min-width-lg-320 {
    min-width: 320px !important;
  }
  .max-height-lg-320 {
    max-height: 320px !important;
  }
  .min-height-lg-320 {
    min-height: 320px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-320 {
    width: 320% !important;
  }
  .h-xl-320 {
    height: 320% !important;
  }
  .max-w-xl-320 {
    max-width: 320% !important;
  }
  .min-w-xl-320 {
    min-width: 320% !important;
  }
  .max-h-xl-320 {
    max-height: 320% !important;
  }
  .min-h-xl-320 {
    min-height: 320% !important;
  }
  .min-xl-vw-320 {
    min-width: 320vw !important;
  }
  .min-xl-vh-320 {
    min-height: 320vh !important;
  }
  .vw-xl-320 {
    width: 320vw !important;
  }
  .vh-xl-320 {
    height: 320vh !important;
  }
  .width-xl-320 {
    width: 320px !important;
  }
  .height-xl-320 {
    height: 320px !important;
  }
  .max-width-xl-320 {
    max-width: 320px !important;
  }
  .min-width-xl-320 {
    min-width: 320px !important;
  }
  .max-height-xl-320 {
    max-height: 320px !important;
  }
  .min-height-xl-320 {
    min-height: 320px !important;
  }
}
.w-320 {
  width: 320% !important;
}

.h-320 {
  height: 320% !important;
}

.max-w-320 {
  max-width: 320% !important;
}

.min-w-320 {
  min-width: 320% !important;
}

.max-h-320 {
  max-height: 320% !important;
}

.min-h-320 {
  min-height: 320% !important;
}

.min-vw-320 {
  min-width: 320vw !important;
}

.min-vh-320 {
  min-height: 320vh !important;
}

.vw-320 {
  width: 320vw !important;
}

.vh-320 {
  height: 320vh !important;
}

.width-320 {
  width: 320px !important;
}

.height-320 {
  height: 320px !important;
}

.max-width-320 {
  max-width: 320px !important;
}

.min-width-320 {
  min-width: 320px !important;
}

.max-height-320 {
  max-height: 320px !important;
}

.min-height-320 {
  min-height: 320px !important;
}

@media (max-width: 576px) {
  .w-sm-330 {
    width: 330% !important;
  }
  .h-sm-330 {
    height: 330% !important;
  }
  .max-w-sm-330 {
    max-width: 330% !important;
  }
  .min-w-sm-330 {
    min-width: 330% !important;
  }
  .max-h-sm-330 {
    max-height: 330% !important;
  }
  .min-h-sm-330 {
    min-height: 330% !important;
  }
  .min-sm-vw-330 {
    min-width: 330vw !important;
  }
  .min-sm-vh-330 {
    min-height: 330vh !important;
  }
  .vw-sm-330 {
    width: 330vw !important;
  }
  .vh-sm-330 {
    height: 330vh !important;
  }
  .width-sm-330 {
    width: 330px !important;
  }
  .height-sm-330 {
    height: 330px !important;
  }
  .max-width-sm-330 {
    max-width: 330 px !important;
  }
  .min-width-sm-330 {
    min-width: 330px !important;
  }
  .max-height-sm-330 {
    max-height: 330px !important;
  }
  .min-height-sm-330 {
    min-height: 330px !important;
  }
}
@media (max-width: 768px) {
  .w-md-330 {
    width: 330% !important;
  }
  .h-md-330 {
    height: 330% !important;
  }
  .max-w-md-330 {
    max-width: 330% !important;
  }
  .min-w-md-330 {
    min-width: 330% !important;
  }
  .max-h-md-330 {
    max-height: 330% !important;
  }
  .min-h-md-330 {
    min-height: 330% !important;
  }
  .min-md-vw-330 {
    min-width: 330vw !important;
  }
  .min-md-vh-330 {
    min-height: 330vh !important;
  }
  .vw-md-330 {
    width: 330vw !important;
  }
  .vh-md-330 {
    height: 330vh !important;
  }
  .width-md-330 {
    width: 330px !important;
  }
  .height-md-330 {
    height: 330px !important;
  }
  .max-width-md-330 {
    max-width: 330px !important;
  }
  .min-width-md-330 {
    min-width: 330px !important;
  }
  .max-height-md-330 {
    max-height: 330px !important;
  }
  .min-height-md-330 {
    min-height: 330px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-330 {
    width: 330% !important;
  }
  .h-lg-330 {
    height: 330% !important;
  }
  .max-w-lg-330 {
    max-width: 330% !important;
  }
  .min-w-lg-330 {
    min-width: 330% !important;
  }
  .max-h-lg-330 {
    max-height: 330% !important;
  }
  .min-h-lg-330 {
    min-height: 330% !important;
  }
  .min-lg-vw-330 {
    min-width: 330vw !important;
  }
  .min-lg-vh-330 {
    min-height: 330vh !important;
  }
  .vw-lg-330 {
    width: 330vw !important;
  }
  .vh-lg-330 {
    height: 330vh !important;
  }
  .width-lg-330 {
    width: 330px !important;
  }
  .height-lg-330 {
    height: 330px !important;
  }
  .max-width-lg-330 {
    max-width: 330px !important;
  }
  .min-width-lg-330 {
    min-width: 330px !important;
  }
  .max-height-lg-330 {
    max-height: 330px !important;
  }
  .min-height-lg-330 {
    min-height: 330px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-330 {
    width: 330% !important;
  }
  .h-xl-330 {
    height: 330% !important;
  }
  .max-w-xl-330 {
    max-width: 330% !important;
  }
  .min-w-xl-330 {
    min-width: 330% !important;
  }
  .max-h-xl-330 {
    max-height: 330% !important;
  }
  .min-h-xl-330 {
    min-height: 330% !important;
  }
  .min-xl-vw-330 {
    min-width: 330vw !important;
  }
  .min-xl-vh-330 {
    min-height: 330vh !important;
  }
  .vw-xl-330 {
    width: 330vw !important;
  }
  .vh-xl-330 {
    height: 330vh !important;
  }
  .width-xl-330 {
    width: 330px !important;
  }
  .height-xl-330 {
    height: 330px !important;
  }
  .max-width-xl-330 {
    max-width: 330px !important;
  }
  .min-width-xl-330 {
    min-width: 330px !important;
  }
  .max-height-xl-330 {
    max-height: 330px !important;
  }
  .min-height-xl-330 {
    min-height: 330px !important;
  }
}
.w-330 {
  width: 330% !important;
}

.h-330 {
  height: 330% !important;
}

.max-w-330 {
  max-width: 330% !important;
}

.min-w-330 {
  min-width: 330% !important;
}

.max-h-330 {
  max-height: 330% !important;
}

.min-h-330 {
  min-height: 330% !important;
}

.min-vw-330 {
  min-width: 330vw !important;
}

.min-vh-330 {
  min-height: 330vh !important;
}

.vw-330 {
  width: 330vw !important;
}

.vh-330 {
  height: 330vh !important;
}

.width-330 {
  width: 330px !important;
}

.height-330 {
  height: 330px !important;
}

.max-width-330 {
  max-width: 330px !important;
}

.min-width-330 {
  min-width: 330px !important;
}

.max-height-330 {
  max-height: 330px !important;
}

.min-height-330 {
  min-height: 330px !important;
}

@media (max-width: 576px) {
  .w-sm-340 {
    width: 340% !important;
  }
  .h-sm-340 {
    height: 340% !important;
  }
  .max-w-sm-340 {
    max-width: 340% !important;
  }
  .min-w-sm-340 {
    min-width: 340% !important;
  }
  .max-h-sm-340 {
    max-height: 340% !important;
  }
  .min-h-sm-340 {
    min-height: 340% !important;
  }
  .min-sm-vw-340 {
    min-width: 340vw !important;
  }
  .min-sm-vh-340 {
    min-height: 340vh !important;
  }
  .vw-sm-340 {
    width: 340vw !important;
  }
  .vh-sm-340 {
    height: 340vh !important;
  }
  .width-sm-340 {
    width: 340px !important;
  }
  .height-sm-340 {
    height: 340px !important;
  }
  .max-width-sm-340 {
    max-width: 340 px !important;
  }
  .min-width-sm-340 {
    min-width: 340px !important;
  }
  .max-height-sm-340 {
    max-height: 340px !important;
  }
  .min-height-sm-340 {
    min-height: 340px !important;
  }
}
@media (max-width: 768px) {
  .w-md-340 {
    width: 340% !important;
  }
  .h-md-340 {
    height: 340% !important;
  }
  .max-w-md-340 {
    max-width: 340% !important;
  }
  .min-w-md-340 {
    min-width: 340% !important;
  }
  .max-h-md-340 {
    max-height: 340% !important;
  }
  .min-h-md-340 {
    min-height: 340% !important;
  }
  .min-md-vw-340 {
    min-width: 340vw !important;
  }
  .min-md-vh-340 {
    min-height: 340vh !important;
  }
  .vw-md-340 {
    width: 340vw !important;
  }
  .vh-md-340 {
    height: 340vh !important;
  }
  .width-md-340 {
    width: 340px !important;
  }
  .height-md-340 {
    height: 340px !important;
  }
  .max-width-md-340 {
    max-width: 340px !important;
  }
  .min-width-md-340 {
    min-width: 340px !important;
  }
  .max-height-md-340 {
    max-height: 340px !important;
  }
  .min-height-md-340 {
    min-height: 340px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-340 {
    width: 340% !important;
  }
  .h-lg-340 {
    height: 340% !important;
  }
  .max-w-lg-340 {
    max-width: 340% !important;
  }
  .min-w-lg-340 {
    min-width: 340% !important;
  }
  .max-h-lg-340 {
    max-height: 340% !important;
  }
  .min-h-lg-340 {
    min-height: 340% !important;
  }
  .min-lg-vw-340 {
    min-width: 340vw !important;
  }
  .min-lg-vh-340 {
    min-height: 340vh !important;
  }
  .vw-lg-340 {
    width: 340vw !important;
  }
  .vh-lg-340 {
    height: 340vh !important;
  }
  .width-lg-340 {
    width: 340px !important;
  }
  .height-lg-340 {
    height: 340px !important;
  }
  .max-width-lg-340 {
    max-width: 340px !important;
  }
  .min-width-lg-340 {
    min-width: 340px !important;
  }
  .max-height-lg-340 {
    max-height: 340px !important;
  }
  .min-height-lg-340 {
    min-height: 340px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-340 {
    width: 340% !important;
  }
  .h-xl-340 {
    height: 340% !important;
  }
  .max-w-xl-340 {
    max-width: 340% !important;
  }
  .min-w-xl-340 {
    min-width: 340% !important;
  }
  .max-h-xl-340 {
    max-height: 340% !important;
  }
  .min-h-xl-340 {
    min-height: 340% !important;
  }
  .min-xl-vw-340 {
    min-width: 340vw !important;
  }
  .min-xl-vh-340 {
    min-height: 340vh !important;
  }
  .vw-xl-340 {
    width: 340vw !important;
  }
  .vh-xl-340 {
    height: 340vh !important;
  }
  .width-xl-340 {
    width: 340px !important;
  }
  .height-xl-340 {
    height: 340px !important;
  }
  .max-width-xl-340 {
    max-width: 340px !important;
  }
  .min-width-xl-340 {
    min-width: 340px !important;
  }
  .max-height-xl-340 {
    max-height: 340px !important;
  }
  .min-height-xl-340 {
    min-height: 340px !important;
  }
}
.w-340 {
  width: 340% !important;
}

.h-340 {
  height: 340% !important;
}

.max-w-340 {
  max-width: 340% !important;
}

.min-w-340 {
  min-width: 340% !important;
}

.max-h-340 {
  max-height: 340% !important;
}

.min-h-340 {
  min-height: 340% !important;
}

.min-vw-340 {
  min-width: 340vw !important;
}

.min-vh-340 {
  min-height: 340vh !important;
}

.vw-340 {
  width: 340vw !important;
}

.vh-340 {
  height: 340vh !important;
}

.width-340 {
  width: 340px !important;
}

.height-340 {
  height: 340px !important;
}

.max-width-340 {
  max-width: 340px !important;
}

.min-width-340 {
  min-width: 340px !important;
}

.max-height-340 {
  max-height: 340px !important;
}

.min-height-340 {
  min-height: 340px !important;
}

@media (max-width: 576px) {
  .w-sm-350 {
    width: 350% !important;
  }
  .h-sm-350 {
    height: 350% !important;
  }
  .max-w-sm-350 {
    max-width: 350% !important;
  }
  .min-w-sm-350 {
    min-width: 350% !important;
  }
  .max-h-sm-350 {
    max-height: 350% !important;
  }
  .min-h-sm-350 {
    min-height: 350% !important;
  }
  .min-sm-vw-350 {
    min-width: 350vw !important;
  }
  .min-sm-vh-350 {
    min-height: 350vh !important;
  }
  .vw-sm-350 {
    width: 350vw !important;
  }
  .vh-sm-350 {
    height: 350vh !important;
  }
  .width-sm-350 {
    width: 350px !important;
  }
  .height-sm-350 {
    height: 350px !important;
  }
  .max-width-sm-350 {
    max-width: 350 px !important;
  }
  .min-width-sm-350 {
    min-width: 350px !important;
  }
  .max-height-sm-350 {
    max-height: 350px !important;
  }
  .min-height-sm-350 {
    min-height: 350px !important;
  }
}
@media (max-width: 768px) {
  .w-md-350 {
    width: 350% !important;
  }
  .h-md-350 {
    height: 350% !important;
  }
  .max-w-md-350 {
    max-width: 350% !important;
  }
  .min-w-md-350 {
    min-width: 350% !important;
  }
  .max-h-md-350 {
    max-height: 350% !important;
  }
  .min-h-md-350 {
    min-height: 350% !important;
  }
  .min-md-vw-350 {
    min-width: 350vw !important;
  }
  .min-md-vh-350 {
    min-height: 350vh !important;
  }
  .vw-md-350 {
    width: 350vw !important;
  }
  .vh-md-350 {
    height: 350vh !important;
  }
  .width-md-350 {
    width: 350px !important;
  }
  .height-md-350 {
    height: 350px !important;
  }
  .max-width-md-350 {
    max-width: 350px !important;
  }
  .min-width-md-350 {
    min-width: 350px !important;
  }
  .max-height-md-350 {
    max-height: 350px !important;
  }
  .min-height-md-350 {
    min-height: 350px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-350 {
    width: 350% !important;
  }
  .h-lg-350 {
    height: 350% !important;
  }
  .max-w-lg-350 {
    max-width: 350% !important;
  }
  .min-w-lg-350 {
    min-width: 350% !important;
  }
  .max-h-lg-350 {
    max-height: 350% !important;
  }
  .min-h-lg-350 {
    min-height: 350% !important;
  }
  .min-lg-vw-350 {
    min-width: 350vw !important;
  }
  .min-lg-vh-350 {
    min-height: 350vh !important;
  }
  .vw-lg-350 {
    width: 350vw !important;
  }
  .vh-lg-350 {
    height: 350vh !important;
  }
  .width-lg-350 {
    width: 350px !important;
  }
  .height-lg-350 {
    height: 350px !important;
  }
  .max-width-lg-350 {
    max-width: 350px !important;
  }
  .min-width-lg-350 {
    min-width: 350px !important;
  }
  .max-height-lg-350 {
    max-height: 350px !important;
  }
  .min-height-lg-350 {
    min-height: 350px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-350 {
    width: 350% !important;
  }
  .h-xl-350 {
    height: 350% !important;
  }
  .max-w-xl-350 {
    max-width: 350% !important;
  }
  .min-w-xl-350 {
    min-width: 350% !important;
  }
  .max-h-xl-350 {
    max-height: 350% !important;
  }
  .min-h-xl-350 {
    min-height: 350% !important;
  }
  .min-xl-vw-350 {
    min-width: 350vw !important;
  }
  .min-xl-vh-350 {
    min-height: 350vh !important;
  }
  .vw-xl-350 {
    width: 350vw !important;
  }
  .vh-xl-350 {
    height: 350vh !important;
  }
  .width-xl-350 {
    width: 350px !important;
  }
  .height-xl-350 {
    height: 350px !important;
  }
  .max-width-xl-350 {
    max-width: 350px !important;
  }
  .min-width-xl-350 {
    min-width: 350px !important;
  }
  .max-height-xl-350 {
    max-height: 350px !important;
  }
  .min-height-xl-350 {
    min-height: 350px !important;
  }
}
.w-350 {
  width: 350% !important;
}

.h-350 {
  height: 350% !important;
}

.max-w-350 {
  max-width: 350% !important;
}

.min-w-350 {
  min-width: 350% !important;
}

.max-h-350 {
  max-height: 350% !important;
}

.min-h-350 {
  min-height: 350% !important;
}

.min-vw-350 {
  min-width: 350vw !important;
}

.min-vh-350 {
  min-height: 350vh !important;
}

.vw-350 {
  width: 350vw !important;
}

.vh-350 {
  height: 350vh !important;
}

.width-350 {
  width: 350px !important;
}

.height-350 {
  height: 350px !important;
}

.max-width-350 {
  max-width: 350px !important;
}

.min-width-350 {
  min-width: 350px !important;
}

.max-height-350 {
  max-height: 350px !important;
}

.min-height-350 {
  min-height: 350px !important;
}

@media (max-width: 576px) {
  .w-sm-360 {
    width: 360% !important;
  }
  .h-sm-360 {
    height: 360% !important;
  }
  .max-w-sm-360 {
    max-width: 360% !important;
  }
  .min-w-sm-360 {
    min-width: 360% !important;
  }
  .max-h-sm-360 {
    max-height: 360% !important;
  }
  .min-h-sm-360 {
    min-height: 360% !important;
  }
  .min-sm-vw-360 {
    min-width: 360vw !important;
  }
  .min-sm-vh-360 {
    min-height: 360vh !important;
  }
  .vw-sm-360 {
    width: 360vw !important;
  }
  .vh-sm-360 {
    height: 360vh !important;
  }
  .width-sm-360 {
    width: 360px !important;
  }
  .height-sm-360 {
    height: 360px !important;
  }
  .max-width-sm-360 {
    max-width: 360 px !important;
  }
  .min-width-sm-360 {
    min-width: 360px !important;
  }
  .max-height-sm-360 {
    max-height: 360px !important;
  }
  .min-height-sm-360 {
    min-height: 360px !important;
  }
}
@media (max-width: 768px) {
  .w-md-360 {
    width: 360% !important;
  }
  .h-md-360 {
    height: 360% !important;
  }
  .max-w-md-360 {
    max-width: 360% !important;
  }
  .min-w-md-360 {
    min-width: 360% !important;
  }
  .max-h-md-360 {
    max-height: 360% !important;
  }
  .min-h-md-360 {
    min-height: 360% !important;
  }
  .min-md-vw-360 {
    min-width: 360vw !important;
  }
  .min-md-vh-360 {
    min-height: 360vh !important;
  }
  .vw-md-360 {
    width: 360vw !important;
  }
  .vh-md-360 {
    height: 360vh !important;
  }
  .width-md-360 {
    width: 360px !important;
  }
  .height-md-360 {
    height: 360px !important;
  }
  .max-width-md-360 {
    max-width: 360px !important;
  }
  .min-width-md-360 {
    min-width: 360px !important;
  }
  .max-height-md-360 {
    max-height: 360px !important;
  }
  .min-height-md-360 {
    min-height: 360px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-360 {
    width: 360% !important;
  }
  .h-lg-360 {
    height: 360% !important;
  }
  .max-w-lg-360 {
    max-width: 360% !important;
  }
  .min-w-lg-360 {
    min-width: 360% !important;
  }
  .max-h-lg-360 {
    max-height: 360% !important;
  }
  .min-h-lg-360 {
    min-height: 360% !important;
  }
  .min-lg-vw-360 {
    min-width: 360vw !important;
  }
  .min-lg-vh-360 {
    min-height: 360vh !important;
  }
  .vw-lg-360 {
    width: 360vw !important;
  }
  .vh-lg-360 {
    height: 360vh !important;
  }
  .width-lg-360 {
    width: 360px !important;
  }
  .height-lg-360 {
    height: 360px !important;
  }
  .max-width-lg-360 {
    max-width: 360px !important;
  }
  .min-width-lg-360 {
    min-width: 360px !important;
  }
  .max-height-lg-360 {
    max-height: 360px !important;
  }
  .min-height-lg-360 {
    min-height: 360px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-360 {
    width: 360% !important;
  }
  .h-xl-360 {
    height: 360% !important;
  }
  .max-w-xl-360 {
    max-width: 360% !important;
  }
  .min-w-xl-360 {
    min-width: 360% !important;
  }
  .max-h-xl-360 {
    max-height: 360% !important;
  }
  .min-h-xl-360 {
    min-height: 360% !important;
  }
  .min-xl-vw-360 {
    min-width: 360vw !important;
  }
  .min-xl-vh-360 {
    min-height: 360vh !important;
  }
  .vw-xl-360 {
    width: 360vw !important;
  }
  .vh-xl-360 {
    height: 360vh !important;
  }
  .width-xl-360 {
    width: 360px !important;
  }
  .height-xl-360 {
    height: 360px !important;
  }
  .max-width-xl-360 {
    max-width: 360px !important;
  }
  .min-width-xl-360 {
    min-width: 360px !important;
  }
  .max-height-xl-360 {
    max-height: 360px !important;
  }
  .min-height-xl-360 {
    min-height: 360px !important;
  }
}
.w-360 {
  width: 360% !important;
}

.h-360 {
  height: 360% !important;
}

.max-w-360 {
  max-width: 360% !important;
}

.min-w-360 {
  min-width: 360% !important;
}

.max-h-360 {
  max-height: 360% !important;
}

.min-h-360 {
  min-height: 360% !important;
}

.min-vw-360 {
  min-width: 360vw !important;
}

.min-vh-360 {
  min-height: 360vh !important;
}

.vw-360 {
  width: 360vw !important;
}

.vh-360 {
  height: 360vh !important;
}

.width-360 {
  width: 360px !important;
}

.height-360 {
  height: 360px !important;
}

.max-width-360 {
  max-width: 360px !important;
}

.min-width-360 {
  min-width: 360px !important;
}

.max-height-360 {
  max-height: 360px !important;
}

.min-height-360 {
  min-height: 360px !important;
}

@media (max-width: 576px) {
  .w-sm-370 {
    width: 370% !important;
  }
  .h-sm-370 {
    height: 370% !important;
  }
  .max-w-sm-370 {
    max-width: 370% !important;
  }
  .min-w-sm-370 {
    min-width: 370% !important;
  }
  .max-h-sm-370 {
    max-height: 370% !important;
  }
  .min-h-sm-370 {
    min-height: 370% !important;
  }
  .min-sm-vw-370 {
    min-width: 370vw !important;
  }
  .min-sm-vh-370 {
    min-height: 370vh !important;
  }
  .vw-sm-370 {
    width: 370vw !important;
  }
  .vh-sm-370 {
    height: 370vh !important;
  }
  .width-sm-370 {
    width: 370px !important;
  }
  .height-sm-370 {
    height: 370px !important;
  }
  .max-width-sm-370 {
    max-width: 370 px !important;
  }
  .min-width-sm-370 {
    min-width: 370px !important;
  }
  .max-height-sm-370 {
    max-height: 370px !important;
  }
  .min-height-sm-370 {
    min-height: 370px !important;
  }
}
@media (max-width: 768px) {
  .w-md-370 {
    width: 370% !important;
  }
  .h-md-370 {
    height: 370% !important;
  }
  .max-w-md-370 {
    max-width: 370% !important;
  }
  .min-w-md-370 {
    min-width: 370% !important;
  }
  .max-h-md-370 {
    max-height: 370% !important;
  }
  .min-h-md-370 {
    min-height: 370% !important;
  }
  .min-md-vw-370 {
    min-width: 370vw !important;
  }
  .min-md-vh-370 {
    min-height: 370vh !important;
  }
  .vw-md-370 {
    width: 370vw !important;
  }
  .vh-md-370 {
    height: 370vh !important;
  }
  .width-md-370 {
    width: 370px !important;
  }
  .height-md-370 {
    height: 370px !important;
  }
  .max-width-md-370 {
    max-width: 370px !important;
  }
  .min-width-md-370 {
    min-width: 370px !important;
  }
  .max-height-md-370 {
    max-height: 370px !important;
  }
  .min-height-md-370 {
    min-height: 370px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-370 {
    width: 370% !important;
  }
  .h-lg-370 {
    height: 370% !important;
  }
  .max-w-lg-370 {
    max-width: 370% !important;
  }
  .min-w-lg-370 {
    min-width: 370% !important;
  }
  .max-h-lg-370 {
    max-height: 370% !important;
  }
  .min-h-lg-370 {
    min-height: 370% !important;
  }
  .min-lg-vw-370 {
    min-width: 370vw !important;
  }
  .min-lg-vh-370 {
    min-height: 370vh !important;
  }
  .vw-lg-370 {
    width: 370vw !important;
  }
  .vh-lg-370 {
    height: 370vh !important;
  }
  .width-lg-370 {
    width: 370px !important;
  }
  .height-lg-370 {
    height: 370px !important;
  }
  .max-width-lg-370 {
    max-width: 370px !important;
  }
  .min-width-lg-370 {
    min-width: 370px !important;
  }
  .max-height-lg-370 {
    max-height: 370px !important;
  }
  .min-height-lg-370 {
    min-height: 370px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-370 {
    width: 370% !important;
  }
  .h-xl-370 {
    height: 370% !important;
  }
  .max-w-xl-370 {
    max-width: 370% !important;
  }
  .min-w-xl-370 {
    min-width: 370% !important;
  }
  .max-h-xl-370 {
    max-height: 370% !important;
  }
  .min-h-xl-370 {
    min-height: 370% !important;
  }
  .min-xl-vw-370 {
    min-width: 370vw !important;
  }
  .min-xl-vh-370 {
    min-height: 370vh !important;
  }
  .vw-xl-370 {
    width: 370vw !important;
  }
  .vh-xl-370 {
    height: 370vh !important;
  }
  .width-xl-370 {
    width: 370px !important;
  }
  .height-xl-370 {
    height: 370px !important;
  }
  .max-width-xl-370 {
    max-width: 370px !important;
  }
  .min-width-xl-370 {
    min-width: 370px !important;
  }
  .max-height-xl-370 {
    max-height: 370px !important;
  }
  .min-height-xl-370 {
    min-height: 370px !important;
  }
}
.w-370 {
  width: 370% !important;
}

.h-370 {
  height: 370% !important;
}

.max-w-370 {
  max-width: 370% !important;
}

.min-w-370 {
  min-width: 370% !important;
}

.max-h-370 {
  max-height: 370% !important;
}

.min-h-370 {
  min-height: 370% !important;
}

.min-vw-370 {
  min-width: 370vw !important;
}

.min-vh-370 {
  min-height: 370vh !important;
}

.vw-370 {
  width: 370vw !important;
}

.vh-370 {
  height: 370vh !important;
}

.width-370 {
  width: 370px !important;
}

.height-370 {
  height: 370px !important;
}

.max-width-370 {
  max-width: 370px !important;
}

.min-width-370 {
  min-width: 370px !important;
}

.max-height-370 {
  max-height: 370px !important;
}

.min-height-370 {
  min-height: 370px !important;
}

@media (max-width: 576px) {
  .w-sm-380 {
    width: 380% !important;
  }
  .h-sm-380 {
    height: 380% !important;
  }
  .max-w-sm-380 {
    max-width: 380% !important;
  }
  .min-w-sm-380 {
    min-width: 380% !important;
  }
  .max-h-sm-380 {
    max-height: 380% !important;
  }
  .min-h-sm-380 {
    min-height: 380% !important;
  }
  .min-sm-vw-380 {
    min-width: 380vw !important;
  }
  .min-sm-vh-380 {
    min-height: 380vh !important;
  }
  .vw-sm-380 {
    width: 380vw !important;
  }
  .vh-sm-380 {
    height: 380vh !important;
  }
  .width-sm-380 {
    width: 380px !important;
  }
  .height-sm-380 {
    height: 380px !important;
  }
  .max-width-sm-380 {
    max-width: 380 px !important;
  }
  .min-width-sm-380 {
    min-width: 380px !important;
  }
  .max-height-sm-380 {
    max-height: 380px !important;
  }
  .min-height-sm-380 {
    min-height: 380px !important;
  }
}
@media (max-width: 768px) {
  .w-md-380 {
    width: 380% !important;
  }
  .h-md-380 {
    height: 380% !important;
  }
  .max-w-md-380 {
    max-width: 380% !important;
  }
  .min-w-md-380 {
    min-width: 380% !important;
  }
  .max-h-md-380 {
    max-height: 380% !important;
  }
  .min-h-md-380 {
    min-height: 380% !important;
  }
  .min-md-vw-380 {
    min-width: 380vw !important;
  }
  .min-md-vh-380 {
    min-height: 380vh !important;
  }
  .vw-md-380 {
    width: 380vw !important;
  }
  .vh-md-380 {
    height: 380vh !important;
  }
  .width-md-380 {
    width: 380px !important;
  }
  .height-md-380 {
    height: 380px !important;
  }
  .max-width-md-380 {
    max-width: 380px !important;
  }
  .min-width-md-380 {
    min-width: 380px !important;
  }
  .max-height-md-380 {
    max-height: 380px !important;
  }
  .min-height-md-380 {
    min-height: 380px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-380 {
    width: 380% !important;
  }
  .h-lg-380 {
    height: 380% !important;
  }
  .max-w-lg-380 {
    max-width: 380% !important;
  }
  .min-w-lg-380 {
    min-width: 380% !important;
  }
  .max-h-lg-380 {
    max-height: 380% !important;
  }
  .min-h-lg-380 {
    min-height: 380% !important;
  }
  .min-lg-vw-380 {
    min-width: 380vw !important;
  }
  .min-lg-vh-380 {
    min-height: 380vh !important;
  }
  .vw-lg-380 {
    width: 380vw !important;
  }
  .vh-lg-380 {
    height: 380vh !important;
  }
  .width-lg-380 {
    width: 380px !important;
  }
  .height-lg-380 {
    height: 380px !important;
  }
  .max-width-lg-380 {
    max-width: 380px !important;
  }
  .min-width-lg-380 {
    min-width: 380px !important;
  }
  .max-height-lg-380 {
    max-height: 380px !important;
  }
  .min-height-lg-380 {
    min-height: 380px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-380 {
    width: 380% !important;
  }
  .h-xl-380 {
    height: 380% !important;
  }
  .max-w-xl-380 {
    max-width: 380% !important;
  }
  .min-w-xl-380 {
    min-width: 380% !important;
  }
  .max-h-xl-380 {
    max-height: 380% !important;
  }
  .min-h-xl-380 {
    min-height: 380% !important;
  }
  .min-xl-vw-380 {
    min-width: 380vw !important;
  }
  .min-xl-vh-380 {
    min-height: 380vh !important;
  }
  .vw-xl-380 {
    width: 380vw !important;
  }
  .vh-xl-380 {
    height: 380vh !important;
  }
  .width-xl-380 {
    width: 380px !important;
  }
  .height-xl-380 {
    height: 380px !important;
  }
  .max-width-xl-380 {
    max-width: 380px !important;
  }
  .min-width-xl-380 {
    min-width: 380px !important;
  }
  .max-height-xl-380 {
    max-height: 380px !important;
  }
  .min-height-xl-380 {
    min-height: 380px !important;
  }
}
.w-380 {
  width: 380% !important;
}

.h-380 {
  height: 380% !important;
}

.max-w-380 {
  max-width: 380% !important;
}

.min-w-380 {
  min-width: 380% !important;
}

.max-h-380 {
  max-height: 380% !important;
}

.min-h-380 {
  min-height: 380% !important;
}

.min-vw-380 {
  min-width: 380vw !important;
}

.min-vh-380 {
  min-height: 380vh !important;
}

.vw-380 {
  width: 380vw !important;
}

.vh-380 {
  height: 380vh !important;
}

.width-380 {
  width: 380px !important;
}

.height-380 {
  height: 380px !important;
}

.max-width-380 {
  max-width: 380px !important;
}

.min-width-380 {
  min-width: 380px !important;
}

.max-height-380 {
  max-height: 380px !important;
}

.min-height-380 {
  min-height: 380px !important;
}

@media (max-width: 576px) {
  .w-sm-390 {
    width: 390% !important;
  }
  .h-sm-390 {
    height: 390% !important;
  }
  .max-w-sm-390 {
    max-width: 390% !important;
  }
  .min-w-sm-390 {
    min-width: 390% !important;
  }
  .max-h-sm-390 {
    max-height: 390% !important;
  }
  .min-h-sm-390 {
    min-height: 390% !important;
  }
  .min-sm-vw-390 {
    min-width: 390vw !important;
  }
  .min-sm-vh-390 {
    min-height: 390vh !important;
  }
  .vw-sm-390 {
    width: 390vw !important;
  }
  .vh-sm-390 {
    height: 390vh !important;
  }
  .width-sm-390 {
    width: 390px !important;
  }
  .height-sm-390 {
    height: 390px !important;
  }
  .max-width-sm-390 {
    max-width: 390 px !important;
  }
  .min-width-sm-390 {
    min-width: 390px !important;
  }
  .max-height-sm-390 {
    max-height: 390px !important;
  }
  .min-height-sm-390 {
    min-height: 390px !important;
  }
}
@media (max-width: 768px) {
  .w-md-390 {
    width: 390% !important;
  }
  .h-md-390 {
    height: 390% !important;
  }
  .max-w-md-390 {
    max-width: 390% !important;
  }
  .min-w-md-390 {
    min-width: 390% !important;
  }
  .max-h-md-390 {
    max-height: 390% !important;
  }
  .min-h-md-390 {
    min-height: 390% !important;
  }
  .min-md-vw-390 {
    min-width: 390vw !important;
  }
  .min-md-vh-390 {
    min-height: 390vh !important;
  }
  .vw-md-390 {
    width: 390vw !important;
  }
  .vh-md-390 {
    height: 390vh !important;
  }
  .width-md-390 {
    width: 390px !important;
  }
  .height-md-390 {
    height: 390px !important;
  }
  .max-width-md-390 {
    max-width: 390px !important;
  }
  .min-width-md-390 {
    min-width: 390px !important;
  }
  .max-height-md-390 {
    max-height: 390px !important;
  }
  .min-height-md-390 {
    min-height: 390px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-390 {
    width: 390% !important;
  }
  .h-lg-390 {
    height: 390% !important;
  }
  .max-w-lg-390 {
    max-width: 390% !important;
  }
  .min-w-lg-390 {
    min-width: 390% !important;
  }
  .max-h-lg-390 {
    max-height: 390% !important;
  }
  .min-h-lg-390 {
    min-height: 390% !important;
  }
  .min-lg-vw-390 {
    min-width: 390vw !important;
  }
  .min-lg-vh-390 {
    min-height: 390vh !important;
  }
  .vw-lg-390 {
    width: 390vw !important;
  }
  .vh-lg-390 {
    height: 390vh !important;
  }
  .width-lg-390 {
    width: 390px !important;
  }
  .height-lg-390 {
    height: 390px !important;
  }
  .max-width-lg-390 {
    max-width: 390px !important;
  }
  .min-width-lg-390 {
    min-width: 390px !important;
  }
  .max-height-lg-390 {
    max-height: 390px !important;
  }
  .min-height-lg-390 {
    min-height: 390px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-390 {
    width: 390% !important;
  }
  .h-xl-390 {
    height: 390% !important;
  }
  .max-w-xl-390 {
    max-width: 390% !important;
  }
  .min-w-xl-390 {
    min-width: 390% !important;
  }
  .max-h-xl-390 {
    max-height: 390% !important;
  }
  .min-h-xl-390 {
    min-height: 390% !important;
  }
  .min-xl-vw-390 {
    min-width: 390vw !important;
  }
  .min-xl-vh-390 {
    min-height: 390vh !important;
  }
  .vw-xl-390 {
    width: 390vw !important;
  }
  .vh-xl-390 {
    height: 390vh !important;
  }
  .width-xl-390 {
    width: 390px !important;
  }
  .height-xl-390 {
    height: 390px !important;
  }
  .max-width-xl-390 {
    max-width: 390px !important;
  }
  .min-width-xl-390 {
    min-width: 390px !important;
  }
  .max-height-xl-390 {
    max-height: 390px !important;
  }
  .min-height-xl-390 {
    min-height: 390px !important;
  }
}
.w-390 {
  width: 390% !important;
}

.h-390 {
  height: 390% !important;
}

.max-w-390 {
  max-width: 390% !important;
}

.min-w-390 {
  min-width: 390% !important;
}

.max-h-390 {
  max-height: 390% !important;
}

.min-h-390 {
  min-height: 390% !important;
}

.min-vw-390 {
  min-width: 390vw !important;
}

.min-vh-390 {
  min-height: 390vh !important;
}

.vw-390 {
  width: 390vw !important;
}

.vh-390 {
  height: 390vh !important;
}

.width-390 {
  width: 390px !important;
}

.height-390 {
  height: 390px !important;
}

.max-width-390 {
  max-width: 390px !important;
}

.min-width-390 {
  min-width: 390px !important;
}

.max-height-390 {
  max-height: 390px !important;
}

.min-height-390 {
  min-height: 390px !important;
}

@media (max-width: 576px) {
  .w-sm-400 {
    width: 400% !important;
  }
  .h-sm-400 {
    height: 400% !important;
  }
  .max-w-sm-400 {
    max-width: 400% !important;
  }
  .min-w-sm-400 {
    min-width: 400% !important;
  }
  .max-h-sm-400 {
    max-height: 400% !important;
  }
  .min-h-sm-400 {
    min-height: 400% !important;
  }
  .min-sm-vw-400 {
    min-width: 400vw !important;
  }
  .min-sm-vh-400 {
    min-height: 400vh !important;
  }
  .vw-sm-400 {
    width: 400vw !important;
  }
  .vh-sm-400 {
    height: 400vh !important;
  }
  .width-sm-400 {
    width: 400px !important;
  }
  .height-sm-400 {
    height: 400px !important;
  }
  .max-width-sm-400 {
    max-width: 400 px !important;
  }
  .min-width-sm-400 {
    min-width: 400px !important;
  }
  .max-height-sm-400 {
    max-height: 400px !important;
  }
  .min-height-sm-400 {
    min-height: 400px !important;
  }
}
@media (max-width: 768px) {
  .w-md-400 {
    width: 400% !important;
  }
  .h-md-400 {
    height: 400% !important;
  }
  .max-w-md-400 {
    max-width: 400% !important;
  }
  .min-w-md-400 {
    min-width: 400% !important;
  }
  .max-h-md-400 {
    max-height: 400% !important;
  }
  .min-h-md-400 {
    min-height: 400% !important;
  }
  .min-md-vw-400 {
    min-width: 400vw !important;
  }
  .min-md-vh-400 {
    min-height: 400vh !important;
  }
  .vw-md-400 {
    width: 400vw !important;
  }
  .vh-md-400 {
    height: 400vh !important;
  }
  .width-md-400 {
    width: 400px !important;
  }
  .height-md-400 {
    height: 400px !important;
  }
  .max-width-md-400 {
    max-width: 400px !important;
  }
  .min-width-md-400 {
    min-width: 400px !important;
  }
  .max-height-md-400 {
    max-height: 400px !important;
  }
  .min-height-md-400 {
    min-height: 400px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-400 {
    width: 400% !important;
  }
  .h-lg-400 {
    height: 400% !important;
  }
  .max-w-lg-400 {
    max-width: 400% !important;
  }
  .min-w-lg-400 {
    min-width: 400% !important;
  }
  .max-h-lg-400 {
    max-height: 400% !important;
  }
  .min-h-lg-400 {
    min-height: 400% !important;
  }
  .min-lg-vw-400 {
    min-width: 400vw !important;
  }
  .min-lg-vh-400 {
    min-height: 400vh !important;
  }
  .vw-lg-400 {
    width: 400vw !important;
  }
  .vh-lg-400 {
    height: 400vh !important;
  }
  .width-lg-400 {
    width: 400px !important;
  }
  .height-lg-400 {
    height: 400px !important;
  }
  .max-width-lg-400 {
    max-width: 400px !important;
  }
  .min-width-lg-400 {
    min-width: 400px !important;
  }
  .max-height-lg-400 {
    max-height: 400px !important;
  }
  .min-height-lg-400 {
    min-height: 400px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-400 {
    width: 400% !important;
  }
  .h-xl-400 {
    height: 400% !important;
  }
  .max-w-xl-400 {
    max-width: 400% !important;
  }
  .min-w-xl-400 {
    min-width: 400% !important;
  }
  .max-h-xl-400 {
    max-height: 400% !important;
  }
  .min-h-xl-400 {
    min-height: 400% !important;
  }
  .min-xl-vw-400 {
    min-width: 400vw !important;
  }
  .min-xl-vh-400 {
    min-height: 400vh !important;
  }
  .vw-xl-400 {
    width: 400vw !important;
  }
  .vh-xl-400 {
    height: 400vh !important;
  }
  .width-xl-400 {
    width: 400px !important;
  }
  .height-xl-400 {
    height: 400px !important;
  }
  .max-width-xl-400 {
    max-width: 400px !important;
  }
  .min-width-xl-400 {
    min-width: 400px !important;
  }
  .max-height-xl-400 {
    max-height: 400px !important;
  }
  .min-height-xl-400 {
    min-height: 400px !important;
  }
}
.w-400 {
  width: 400% !important;
}

.h-400 {
  height: 400% !important;
}

.max-w-400 {
  max-width: 400% !important;
}

.min-w-400 {
  min-width: 400% !important;
}

.max-h-400 {
  max-height: 400% !important;
}

.min-h-400 {
  min-height: 400% !important;
}

.min-vw-400 {
  min-width: 400vw !important;
}

.min-vh-400 {
  min-height: 400vh !important;
}

.vw-400 {
  width: 400vw !important;
}

.vh-400 {
  height: 400vh !important;
}

.width-400 {
  width: 400px !important;
}

.height-400 {
  height: 400px !important;
}

.max-width-400 {
  max-width: 400px !important;
}

.min-width-400 {
  min-width: 400px !important;
}

.max-height-400 {
  max-height: 400px !important;
}

.min-height-400 {
  min-height: 400px !important;
}

@media (max-width: 576px) {
  .w-sm-410 {
    width: 410% !important;
  }
  .h-sm-410 {
    height: 410% !important;
  }
  .max-w-sm-410 {
    max-width: 410% !important;
  }
  .min-w-sm-410 {
    min-width: 410% !important;
  }
  .max-h-sm-410 {
    max-height: 410% !important;
  }
  .min-h-sm-410 {
    min-height: 410% !important;
  }
  .min-sm-vw-410 {
    min-width: 410vw !important;
  }
  .min-sm-vh-410 {
    min-height: 410vh !important;
  }
  .vw-sm-410 {
    width: 410vw !important;
  }
  .vh-sm-410 {
    height: 410vh !important;
  }
  .width-sm-410 {
    width: 410px !important;
  }
  .height-sm-410 {
    height: 410px !important;
  }
  .max-width-sm-410 {
    max-width: 410 px !important;
  }
  .min-width-sm-410 {
    min-width: 410px !important;
  }
  .max-height-sm-410 {
    max-height: 410px !important;
  }
  .min-height-sm-410 {
    min-height: 410px !important;
  }
}
@media (max-width: 768px) {
  .w-md-410 {
    width: 410% !important;
  }
  .h-md-410 {
    height: 410% !important;
  }
  .max-w-md-410 {
    max-width: 410% !important;
  }
  .min-w-md-410 {
    min-width: 410% !important;
  }
  .max-h-md-410 {
    max-height: 410% !important;
  }
  .min-h-md-410 {
    min-height: 410% !important;
  }
  .min-md-vw-410 {
    min-width: 410vw !important;
  }
  .min-md-vh-410 {
    min-height: 410vh !important;
  }
  .vw-md-410 {
    width: 410vw !important;
  }
  .vh-md-410 {
    height: 410vh !important;
  }
  .width-md-410 {
    width: 410px !important;
  }
  .height-md-410 {
    height: 410px !important;
  }
  .max-width-md-410 {
    max-width: 410px !important;
  }
  .min-width-md-410 {
    min-width: 410px !important;
  }
  .max-height-md-410 {
    max-height: 410px !important;
  }
  .min-height-md-410 {
    min-height: 410px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-410 {
    width: 410% !important;
  }
  .h-lg-410 {
    height: 410% !important;
  }
  .max-w-lg-410 {
    max-width: 410% !important;
  }
  .min-w-lg-410 {
    min-width: 410% !important;
  }
  .max-h-lg-410 {
    max-height: 410% !important;
  }
  .min-h-lg-410 {
    min-height: 410% !important;
  }
  .min-lg-vw-410 {
    min-width: 410vw !important;
  }
  .min-lg-vh-410 {
    min-height: 410vh !important;
  }
  .vw-lg-410 {
    width: 410vw !important;
  }
  .vh-lg-410 {
    height: 410vh !important;
  }
  .width-lg-410 {
    width: 410px !important;
  }
  .height-lg-410 {
    height: 410px !important;
  }
  .max-width-lg-410 {
    max-width: 410px !important;
  }
  .min-width-lg-410 {
    min-width: 410px !important;
  }
  .max-height-lg-410 {
    max-height: 410px !important;
  }
  .min-height-lg-410 {
    min-height: 410px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-410 {
    width: 410% !important;
  }
  .h-xl-410 {
    height: 410% !important;
  }
  .max-w-xl-410 {
    max-width: 410% !important;
  }
  .min-w-xl-410 {
    min-width: 410% !important;
  }
  .max-h-xl-410 {
    max-height: 410% !important;
  }
  .min-h-xl-410 {
    min-height: 410% !important;
  }
  .min-xl-vw-410 {
    min-width: 410vw !important;
  }
  .min-xl-vh-410 {
    min-height: 410vh !important;
  }
  .vw-xl-410 {
    width: 410vw !important;
  }
  .vh-xl-410 {
    height: 410vh !important;
  }
  .width-xl-410 {
    width: 410px !important;
  }
  .height-xl-410 {
    height: 410px !important;
  }
  .max-width-xl-410 {
    max-width: 410px !important;
  }
  .min-width-xl-410 {
    min-width: 410px !important;
  }
  .max-height-xl-410 {
    max-height: 410px !important;
  }
  .min-height-xl-410 {
    min-height: 410px !important;
  }
}
.w-410 {
  width: 410% !important;
}

.h-410 {
  height: 410% !important;
}

.max-w-410 {
  max-width: 410% !important;
}

.min-w-410 {
  min-width: 410% !important;
}

.max-h-410 {
  max-height: 410% !important;
}

.min-h-410 {
  min-height: 410% !important;
}

.min-vw-410 {
  min-width: 410vw !important;
}

.min-vh-410 {
  min-height: 410vh !important;
}

.vw-410 {
  width: 410vw !important;
}

.vh-410 {
  height: 410vh !important;
}

.width-410 {
  width: 410px !important;
}

.height-410 {
  height: 410px !important;
}

.max-width-410 {
  max-width: 410px !important;
}

.min-width-410 {
  min-width: 410px !important;
}

.max-height-410 {
  max-height: 410px !important;
}

.min-height-410 {
  min-height: 410px !important;
}

@media (max-width: 576px) {
  .w-sm-420 {
    width: 420% !important;
  }
  .h-sm-420 {
    height: 420% !important;
  }
  .max-w-sm-420 {
    max-width: 420% !important;
  }
  .min-w-sm-420 {
    min-width: 420% !important;
  }
  .max-h-sm-420 {
    max-height: 420% !important;
  }
  .min-h-sm-420 {
    min-height: 420% !important;
  }
  .min-sm-vw-420 {
    min-width: 420vw !important;
  }
  .min-sm-vh-420 {
    min-height: 420vh !important;
  }
  .vw-sm-420 {
    width: 420vw !important;
  }
  .vh-sm-420 {
    height: 420vh !important;
  }
  .width-sm-420 {
    width: 420px !important;
  }
  .height-sm-420 {
    height: 420px !important;
  }
  .max-width-sm-420 {
    max-width: 420 px !important;
  }
  .min-width-sm-420 {
    min-width: 420px !important;
  }
  .max-height-sm-420 {
    max-height: 420px !important;
  }
  .min-height-sm-420 {
    min-height: 420px !important;
  }
}
@media (max-width: 768px) {
  .w-md-420 {
    width: 420% !important;
  }
  .h-md-420 {
    height: 420% !important;
  }
  .max-w-md-420 {
    max-width: 420% !important;
  }
  .min-w-md-420 {
    min-width: 420% !important;
  }
  .max-h-md-420 {
    max-height: 420% !important;
  }
  .min-h-md-420 {
    min-height: 420% !important;
  }
  .min-md-vw-420 {
    min-width: 420vw !important;
  }
  .min-md-vh-420 {
    min-height: 420vh !important;
  }
  .vw-md-420 {
    width: 420vw !important;
  }
  .vh-md-420 {
    height: 420vh !important;
  }
  .width-md-420 {
    width: 420px !important;
  }
  .height-md-420 {
    height: 420px !important;
  }
  .max-width-md-420 {
    max-width: 420px !important;
  }
  .min-width-md-420 {
    min-width: 420px !important;
  }
  .max-height-md-420 {
    max-height: 420px !important;
  }
  .min-height-md-420 {
    min-height: 420px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-420 {
    width: 420% !important;
  }
  .h-lg-420 {
    height: 420% !important;
  }
  .max-w-lg-420 {
    max-width: 420% !important;
  }
  .min-w-lg-420 {
    min-width: 420% !important;
  }
  .max-h-lg-420 {
    max-height: 420% !important;
  }
  .min-h-lg-420 {
    min-height: 420% !important;
  }
  .min-lg-vw-420 {
    min-width: 420vw !important;
  }
  .min-lg-vh-420 {
    min-height: 420vh !important;
  }
  .vw-lg-420 {
    width: 420vw !important;
  }
  .vh-lg-420 {
    height: 420vh !important;
  }
  .width-lg-420 {
    width: 420px !important;
  }
  .height-lg-420 {
    height: 420px !important;
  }
  .max-width-lg-420 {
    max-width: 420px !important;
  }
  .min-width-lg-420 {
    min-width: 420px !important;
  }
  .max-height-lg-420 {
    max-height: 420px !important;
  }
  .min-height-lg-420 {
    min-height: 420px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-420 {
    width: 420% !important;
  }
  .h-xl-420 {
    height: 420% !important;
  }
  .max-w-xl-420 {
    max-width: 420% !important;
  }
  .min-w-xl-420 {
    min-width: 420% !important;
  }
  .max-h-xl-420 {
    max-height: 420% !important;
  }
  .min-h-xl-420 {
    min-height: 420% !important;
  }
  .min-xl-vw-420 {
    min-width: 420vw !important;
  }
  .min-xl-vh-420 {
    min-height: 420vh !important;
  }
  .vw-xl-420 {
    width: 420vw !important;
  }
  .vh-xl-420 {
    height: 420vh !important;
  }
  .width-xl-420 {
    width: 420px !important;
  }
  .height-xl-420 {
    height: 420px !important;
  }
  .max-width-xl-420 {
    max-width: 420px !important;
  }
  .min-width-xl-420 {
    min-width: 420px !important;
  }
  .max-height-xl-420 {
    max-height: 420px !important;
  }
  .min-height-xl-420 {
    min-height: 420px !important;
  }
}
.w-420 {
  width: 420% !important;
}

.h-420 {
  height: 420% !important;
}

.max-w-420 {
  max-width: 420% !important;
}

.min-w-420 {
  min-width: 420% !important;
}

.max-h-420 {
  max-height: 420% !important;
}

.min-h-420 {
  min-height: 420% !important;
}

.min-vw-420 {
  min-width: 420vw !important;
}

.min-vh-420 {
  min-height: 420vh !important;
}

.vw-420 {
  width: 420vw !important;
}

.vh-420 {
  height: 420vh !important;
}

.width-420 {
  width: 420px !important;
}

.height-420 {
  height: 420px !important;
}

.max-width-420 {
  max-width: 420px !important;
}

.min-width-420 {
  min-width: 420px !important;
}

.max-height-420 {
  max-height: 420px !important;
}

.min-height-420 {
  min-height: 420px !important;
}

@media (max-width: 576px) {
  .w-sm-430 {
    width: 430% !important;
  }
  .h-sm-430 {
    height: 430% !important;
  }
  .max-w-sm-430 {
    max-width: 430% !important;
  }
  .min-w-sm-430 {
    min-width: 430% !important;
  }
  .max-h-sm-430 {
    max-height: 430% !important;
  }
  .min-h-sm-430 {
    min-height: 430% !important;
  }
  .min-sm-vw-430 {
    min-width: 430vw !important;
  }
  .min-sm-vh-430 {
    min-height: 430vh !important;
  }
  .vw-sm-430 {
    width: 430vw !important;
  }
  .vh-sm-430 {
    height: 430vh !important;
  }
  .width-sm-430 {
    width: 430px !important;
  }
  .height-sm-430 {
    height: 430px !important;
  }
  .max-width-sm-430 {
    max-width: 430 px !important;
  }
  .min-width-sm-430 {
    min-width: 430px !important;
  }
  .max-height-sm-430 {
    max-height: 430px !important;
  }
  .min-height-sm-430 {
    min-height: 430px !important;
  }
}
@media (max-width: 768px) {
  .w-md-430 {
    width: 430% !important;
  }
  .h-md-430 {
    height: 430% !important;
  }
  .max-w-md-430 {
    max-width: 430% !important;
  }
  .min-w-md-430 {
    min-width: 430% !important;
  }
  .max-h-md-430 {
    max-height: 430% !important;
  }
  .min-h-md-430 {
    min-height: 430% !important;
  }
  .min-md-vw-430 {
    min-width: 430vw !important;
  }
  .min-md-vh-430 {
    min-height: 430vh !important;
  }
  .vw-md-430 {
    width: 430vw !important;
  }
  .vh-md-430 {
    height: 430vh !important;
  }
  .width-md-430 {
    width: 430px !important;
  }
  .height-md-430 {
    height: 430px !important;
  }
  .max-width-md-430 {
    max-width: 430px !important;
  }
  .min-width-md-430 {
    min-width: 430px !important;
  }
  .max-height-md-430 {
    max-height: 430px !important;
  }
  .min-height-md-430 {
    min-height: 430px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-430 {
    width: 430% !important;
  }
  .h-lg-430 {
    height: 430% !important;
  }
  .max-w-lg-430 {
    max-width: 430% !important;
  }
  .min-w-lg-430 {
    min-width: 430% !important;
  }
  .max-h-lg-430 {
    max-height: 430% !important;
  }
  .min-h-lg-430 {
    min-height: 430% !important;
  }
  .min-lg-vw-430 {
    min-width: 430vw !important;
  }
  .min-lg-vh-430 {
    min-height: 430vh !important;
  }
  .vw-lg-430 {
    width: 430vw !important;
  }
  .vh-lg-430 {
    height: 430vh !important;
  }
  .width-lg-430 {
    width: 430px !important;
  }
  .height-lg-430 {
    height: 430px !important;
  }
  .max-width-lg-430 {
    max-width: 430px !important;
  }
  .min-width-lg-430 {
    min-width: 430px !important;
  }
  .max-height-lg-430 {
    max-height: 430px !important;
  }
  .min-height-lg-430 {
    min-height: 430px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-430 {
    width: 430% !important;
  }
  .h-xl-430 {
    height: 430% !important;
  }
  .max-w-xl-430 {
    max-width: 430% !important;
  }
  .min-w-xl-430 {
    min-width: 430% !important;
  }
  .max-h-xl-430 {
    max-height: 430% !important;
  }
  .min-h-xl-430 {
    min-height: 430% !important;
  }
  .min-xl-vw-430 {
    min-width: 430vw !important;
  }
  .min-xl-vh-430 {
    min-height: 430vh !important;
  }
  .vw-xl-430 {
    width: 430vw !important;
  }
  .vh-xl-430 {
    height: 430vh !important;
  }
  .width-xl-430 {
    width: 430px !important;
  }
  .height-xl-430 {
    height: 430px !important;
  }
  .max-width-xl-430 {
    max-width: 430px !important;
  }
  .min-width-xl-430 {
    min-width: 430px !important;
  }
  .max-height-xl-430 {
    max-height: 430px !important;
  }
  .min-height-xl-430 {
    min-height: 430px !important;
  }
}
.w-430 {
  width: 430% !important;
}

.h-430 {
  height: 430% !important;
}

.max-w-430 {
  max-width: 430% !important;
}

.min-w-430 {
  min-width: 430% !important;
}

.max-h-430 {
  max-height: 430% !important;
}

.min-h-430 {
  min-height: 430% !important;
}

.min-vw-430 {
  min-width: 430vw !important;
}

.min-vh-430 {
  min-height: 430vh !important;
}

.vw-430 {
  width: 430vw !important;
}

.vh-430 {
  height: 430vh !important;
}

.width-430 {
  width: 430px !important;
}

.height-430 {
  height: 430px !important;
}

.max-width-430 {
  max-width: 430px !important;
}

.min-width-430 {
  min-width: 430px !important;
}

.max-height-430 {
  max-height: 430px !important;
}

.min-height-430 {
  min-height: 430px !important;
}

@media (max-width: 576px) {
  .w-sm-440 {
    width: 440% !important;
  }
  .h-sm-440 {
    height: 440% !important;
  }
  .max-w-sm-440 {
    max-width: 440% !important;
  }
  .min-w-sm-440 {
    min-width: 440% !important;
  }
  .max-h-sm-440 {
    max-height: 440% !important;
  }
  .min-h-sm-440 {
    min-height: 440% !important;
  }
  .min-sm-vw-440 {
    min-width: 440vw !important;
  }
  .min-sm-vh-440 {
    min-height: 440vh !important;
  }
  .vw-sm-440 {
    width: 440vw !important;
  }
  .vh-sm-440 {
    height: 440vh !important;
  }
  .width-sm-440 {
    width: 440px !important;
  }
  .height-sm-440 {
    height: 440px !important;
  }
  .max-width-sm-440 {
    max-width: 440 px !important;
  }
  .min-width-sm-440 {
    min-width: 440px !important;
  }
  .max-height-sm-440 {
    max-height: 440px !important;
  }
  .min-height-sm-440 {
    min-height: 440px !important;
  }
}
@media (max-width: 768px) {
  .w-md-440 {
    width: 440% !important;
  }
  .h-md-440 {
    height: 440% !important;
  }
  .max-w-md-440 {
    max-width: 440% !important;
  }
  .min-w-md-440 {
    min-width: 440% !important;
  }
  .max-h-md-440 {
    max-height: 440% !important;
  }
  .min-h-md-440 {
    min-height: 440% !important;
  }
  .min-md-vw-440 {
    min-width: 440vw !important;
  }
  .min-md-vh-440 {
    min-height: 440vh !important;
  }
  .vw-md-440 {
    width: 440vw !important;
  }
  .vh-md-440 {
    height: 440vh !important;
  }
  .width-md-440 {
    width: 440px !important;
  }
  .height-md-440 {
    height: 440px !important;
  }
  .max-width-md-440 {
    max-width: 440px !important;
  }
  .min-width-md-440 {
    min-width: 440px !important;
  }
  .max-height-md-440 {
    max-height: 440px !important;
  }
  .min-height-md-440 {
    min-height: 440px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-440 {
    width: 440% !important;
  }
  .h-lg-440 {
    height: 440% !important;
  }
  .max-w-lg-440 {
    max-width: 440% !important;
  }
  .min-w-lg-440 {
    min-width: 440% !important;
  }
  .max-h-lg-440 {
    max-height: 440% !important;
  }
  .min-h-lg-440 {
    min-height: 440% !important;
  }
  .min-lg-vw-440 {
    min-width: 440vw !important;
  }
  .min-lg-vh-440 {
    min-height: 440vh !important;
  }
  .vw-lg-440 {
    width: 440vw !important;
  }
  .vh-lg-440 {
    height: 440vh !important;
  }
  .width-lg-440 {
    width: 440px !important;
  }
  .height-lg-440 {
    height: 440px !important;
  }
  .max-width-lg-440 {
    max-width: 440px !important;
  }
  .min-width-lg-440 {
    min-width: 440px !important;
  }
  .max-height-lg-440 {
    max-height: 440px !important;
  }
  .min-height-lg-440 {
    min-height: 440px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-440 {
    width: 440% !important;
  }
  .h-xl-440 {
    height: 440% !important;
  }
  .max-w-xl-440 {
    max-width: 440% !important;
  }
  .min-w-xl-440 {
    min-width: 440% !important;
  }
  .max-h-xl-440 {
    max-height: 440% !important;
  }
  .min-h-xl-440 {
    min-height: 440% !important;
  }
  .min-xl-vw-440 {
    min-width: 440vw !important;
  }
  .min-xl-vh-440 {
    min-height: 440vh !important;
  }
  .vw-xl-440 {
    width: 440vw !important;
  }
  .vh-xl-440 {
    height: 440vh !important;
  }
  .width-xl-440 {
    width: 440px !important;
  }
  .height-xl-440 {
    height: 440px !important;
  }
  .max-width-xl-440 {
    max-width: 440px !important;
  }
  .min-width-xl-440 {
    min-width: 440px !important;
  }
  .max-height-xl-440 {
    max-height: 440px !important;
  }
  .min-height-xl-440 {
    min-height: 440px !important;
  }
}
.w-440 {
  width: 440% !important;
}

.h-440 {
  height: 440% !important;
}

.max-w-440 {
  max-width: 440% !important;
}

.min-w-440 {
  min-width: 440% !important;
}

.max-h-440 {
  max-height: 440% !important;
}

.min-h-440 {
  min-height: 440% !important;
}

.min-vw-440 {
  min-width: 440vw !important;
}

.min-vh-440 {
  min-height: 440vh !important;
}

.vw-440 {
  width: 440vw !important;
}

.vh-440 {
  height: 440vh !important;
}

.width-440 {
  width: 440px !important;
}

.height-440 {
  height: 440px !important;
}

.max-width-440 {
  max-width: 440px !important;
}

.min-width-440 {
  min-width: 440px !important;
}

.max-height-440 {
  max-height: 440px !important;
}

.min-height-440 {
  min-height: 440px !important;
}

@media (max-width: 576px) {
  .w-sm-450 {
    width: 450% !important;
  }
  .h-sm-450 {
    height: 450% !important;
  }
  .max-w-sm-450 {
    max-width: 450% !important;
  }
  .min-w-sm-450 {
    min-width: 450% !important;
  }
  .max-h-sm-450 {
    max-height: 450% !important;
  }
  .min-h-sm-450 {
    min-height: 450% !important;
  }
  .min-sm-vw-450 {
    min-width: 450vw !important;
  }
  .min-sm-vh-450 {
    min-height: 450vh !important;
  }
  .vw-sm-450 {
    width: 450vw !important;
  }
  .vh-sm-450 {
    height: 450vh !important;
  }
  .width-sm-450 {
    width: 450px !important;
  }
  .height-sm-450 {
    height: 450px !important;
  }
  .max-width-sm-450 {
    max-width: 450 px !important;
  }
  .min-width-sm-450 {
    min-width: 450px !important;
  }
  .max-height-sm-450 {
    max-height: 450px !important;
  }
  .min-height-sm-450 {
    min-height: 450px !important;
  }
}
@media (max-width: 768px) {
  .w-md-450 {
    width: 450% !important;
  }
  .h-md-450 {
    height: 450% !important;
  }
  .max-w-md-450 {
    max-width: 450% !important;
  }
  .min-w-md-450 {
    min-width: 450% !important;
  }
  .max-h-md-450 {
    max-height: 450% !important;
  }
  .min-h-md-450 {
    min-height: 450% !important;
  }
  .min-md-vw-450 {
    min-width: 450vw !important;
  }
  .min-md-vh-450 {
    min-height: 450vh !important;
  }
  .vw-md-450 {
    width: 450vw !important;
  }
  .vh-md-450 {
    height: 450vh !important;
  }
  .width-md-450 {
    width: 450px !important;
  }
  .height-md-450 {
    height: 450px !important;
  }
  .max-width-md-450 {
    max-width: 450px !important;
  }
  .min-width-md-450 {
    min-width: 450px !important;
  }
  .max-height-md-450 {
    max-height: 450px !important;
  }
  .min-height-md-450 {
    min-height: 450px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-450 {
    width: 450% !important;
  }
  .h-lg-450 {
    height: 450% !important;
  }
  .max-w-lg-450 {
    max-width: 450% !important;
  }
  .min-w-lg-450 {
    min-width: 450% !important;
  }
  .max-h-lg-450 {
    max-height: 450% !important;
  }
  .min-h-lg-450 {
    min-height: 450% !important;
  }
  .min-lg-vw-450 {
    min-width: 450vw !important;
  }
  .min-lg-vh-450 {
    min-height: 450vh !important;
  }
  .vw-lg-450 {
    width: 450vw !important;
  }
  .vh-lg-450 {
    height: 450vh !important;
  }
  .width-lg-450 {
    width: 450px !important;
  }
  .height-lg-450 {
    height: 450px !important;
  }
  .max-width-lg-450 {
    max-width: 450px !important;
  }
  .min-width-lg-450 {
    min-width: 450px !important;
  }
  .max-height-lg-450 {
    max-height: 450px !important;
  }
  .min-height-lg-450 {
    min-height: 450px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-450 {
    width: 450% !important;
  }
  .h-xl-450 {
    height: 450% !important;
  }
  .max-w-xl-450 {
    max-width: 450% !important;
  }
  .min-w-xl-450 {
    min-width: 450% !important;
  }
  .max-h-xl-450 {
    max-height: 450% !important;
  }
  .min-h-xl-450 {
    min-height: 450% !important;
  }
  .min-xl-vw-450 {
    min-width: 450vw !important;
  }
  .min-xl-vh-450 {
    min-height: 450vh !important;
  }
  .vw-xl-450 {
    width: 450vw !important;
  }
  .vh-xl-450 {
    height: 450vh !important;
  }
  .width-xl-450 {
    width: 450px !important;
  }
  .height-xl-450 {
    height: 450px !important;
  }
  .max-width-xl-450 {
    max-width: 450px !important;
  }
  .min-width-xl-450 {
    min-width: 450px !important;
  }
  .max-height-xl-450 {
    max-height: 450px !important;
  }
  .min-height-xl-450 {
    min-height: 450px !important;
  }
}
.w-450 {
  width: 450% !important;
}

.h-450 {
  height: 450% !important;
}

.max-w-450 {
  max-width: 450% !important;
}

.min-w-450 {
  min-width: 450% !important;
}

.max-h-450 {
  max-height: 450% !important;
}

.min-h-450 {
  min-height: 450% !important;
}

.min-vw-450 {
  min-width: 450vw !important;
}

.min-vh-450 {
  min-height: 450vh !important;
}

.vw-450 {
  width: 450vw !important;
}

.vh-450 {
  height: 450vh !important;
}

.width-450 {
  width: 450px !important;
}

.height-450 {
  height: 450px !important;
}

.max-width-450 {
  max-width: 450px !important;
}

.min-width-450 {
  min-width: 450px !important;
}

.max-height-450 {
  max-height: 450px !important;
}

.min-height-450 {
  min-height: 450px !important;
}

@media (max-width: 576px) {
  .w-sm-460 {
    width: 460% !important;
  }
  .h-sm-460 {
    height: 460% !important;
  }
  .max-w-sm-460 {
    max-width: 460% !important;
  }
  .min-w-sm-460 {
    min-width: 460% !important;
  }
  .max-h-sm-460 {
    max-height: 460% !important;
  }
  .min-h-sm-460 {
    min-height: 460% !important;
  }
  .min-sm-vw-460 {
    min-width: 460vw !important;
  }
  .min-sm-vh-460 {
    min-height: 460vh !important;
  }
  .vw-sm-460 {
    width: 460vw !important;
  }
  .vh-sm-460 {
    height: 460vh !important;
  }
  .width-sm-460 {
    width: 460px !important;
  }
  .height-sm-460 {
    height: 460px !important;
  }
  .max-width-sm-460 {
    max-width: 460 px !important;
  }
  .min-width-sm-460 {
    min-width: 460px !important;
  }
  .max-height-sm-460 {
    max-height: 460px !important;
  }
  .min-height-sm-460 {
    min-height: 460px !important;
  }
}
@media (max-width: 768px) {
  .w-md-460 {
    width: 460% !important;
  }
  .h-md-460 {
    height: 460% !important;
  }
  .max-w-md-460 {
    max-width: 460% !important;
  }
  .min-w-md-460 {
    min-width: 460% !important;
  }
  .max-h-md-460 {
    max-height: 460% !important;
  }
  .min-h-md-460 {
    min-height: 460% !important;
  }
  .min-md-vw-460 {
    min-width: 460vw !important;
  }
  .min-md-vh-460 {
    min-height: 460vh !important;
  }
  .vw-md-460 {
    width: 460vw !important;
  }
  .vh-md-460 {
    height: 460vh !important;
  }
  .width-md-460 {
    width: 460px !important;
  }
  .height-md-460 {
    height: 460px !important;
  }
  .max-width-md-460 {
    max-width: 460px !important;
  }
  .min-width-md-460 {
    min-width: 460px !important;
  }
  .max-height-md-460 {
    max-height: 460px !important;
  }
  .min-height-md-460 {
    min-height: 460px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-460 {
    width: 460% !important;
  }
  .h-lg-460 {
    height: 460% !important;
  }
  .max-w-lg-460 {
    max-width: 460% !important;
  }
  .min-w-lg-460 {
    min-width: 460% !important;
  }
  .max-h-lg-460 {
    max-height: 460% !important;
  }
  .min-h-lg-460 {
    min-height: 460% !important;
  }
  .min-lg-vw-460 {
    min-width: 460vw !important;
  }
  .min-lg-vh-460 {
    min-height: 460vh !important;
  }
  .vw-lg-460 {
    width: 460vw !important;
  }
  .vh-lg-460 {
    height: 460vh !important;
  }
  .width-lg-460 {
    width: 460px !important;
  }
  .height-lg-460 {
    height: 460px !important;
  }
  .max-width-lg-460 {
    max-width: 460px !important;
  }
  .min-width-lg-460 {
    min-width: 460px !important;
  }
  .max-height-lg-460 {
    max-height: 460px !important;
  }
  .min-height-lg-460 {
    min-height: 460px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-460 {
    width: 460% !important;
  }
  .h-xl-460 {
    height: 460% !important;
  }
  .max-w-xl-460 {
    max-width: 460% !important;
  }
  .min-w-xl-460 {
    min-width: 460% !important;
  }
  .max-h-xl-460 {
    max-height: 460% !important;
  }
  .min-h-xl-460 {
    min-height: 460% !important;
  }
  .min-xl-vw-460 {
    min-width: 460vw !important;
  }
  .min-xl-vh-460 {
    min-height: 460vh !important;
  }
  .vw-xl-460 {
    width: 460vw !important;
  }
  .vh-xl-460 {
    height: 460vh !important;
  }
  .width-xl-460 {
    width: 460px !important;
  }
  .height-xl-460 {
    height: 460px !important;
  }
  .max-width-xl-460 {
    max-width: 460px !important;
  }
  .min-width-xl-460 {
    min-width: 460px !important;
  }
  .max-height-xl-460 {
    max-height: 460px !important;
  }
  .min-height-xl-460 {
    min-height: 460px !important;
  }
}
.w-460 {
  width: 460% !important;
}

.h-460 {
  height: 460% !important;
}

.max-w-460 {
  max-width: 460% !important;
}

.min-w-460 {
  min-width: 460% !important;
}

.max-h-460 {
  max-height: 460% !important;
}

.min-h-460 {
  min-height: 460% !important;
}

.min-vw-460 {
  min-width: 460vw !important;
}

.min-vh-460 {
  min-height: 460vh !important;
}

.vw-460 {
  width: 460vw !important;
}

.vh-460 {
  height: 460vh !important;
}

.width-460 {
  width: 460px !important;
}

.height-460 {
  height: 460px !important;
}

.max-width-460 {
  max-width: 460px !important;
}

.min-width-460 {
  min-width: 460px !important;
}

.max-height-460 {
  max-height: 460px !important;
}

.min-height-460 {
  min-height: 460px !important;
}

@media (max-width: 576px) {
  .w-sm-470 {
    width: 470% !important;
  }
  .h-sm-470 {
    height: 470% !important;
  }
  .max-w-sm-470 {
    max-width: 470% !important;
  }
  .min-w-sm-470 {
    min-width: 470% !important;
  }
  .max-h-sm-470 {
    max-height: 470% !important;
  }
  .min-h-sm-470 {
    min-height: 470% !important;
  }
  .min-sm-vw-470 {
    min-width: 470vw !important;
  }
  .min-sm-vh-470 {
    min-height: 470vh !important;
  }
  .vw-sm-470 {
    width: 470vw !important;
  }
  .vh-sm-470 {
    height: 470vh !important;
  }
  .width-sm-470 {
    width: 470px !important;
  }
  .height-sm-470 {
    height: 470px !important;
  }
  .max-width-sm-470 {
    max-width: 470 px !important;
  }
  .min-width-sm-470 {
    min-width: 470px !important;
  }
  .max-height-sm-470 {
    max-height: 470px !important;
  }
  .min-height-sm-470 {
    min-height: 470px !important;
  }
}
@media (max-width: 768px) {
  .w-md-470 {
    width: 470% !important;
  }
  .h-md-470 {
    height: 470% !important;
  }
  .max-w-md-470 {
    max-width: 470% !important;
  }
  .min-w-md-470 {
    min-width: 470% !important;
  }
  .max-h-md-470 {
    max-height: 470% !important;
  }
  .min-h-md-470 {
    min-height: 470% !important;
  }
  .min-md-vw-470 {
    min-width: 470vw !important;
  }
  .min-md-vh-470 {
    min-height: 470vh !important;
  }
  .vw-md-470 {
    width: 470vw !important;
  }
  .vh-md-470 {
    height: 470vh !important;
  }
  .width-md-470 {
    width: 470px !important;
  }
  .height-md-470 {
    height: 470px !important;
  }
  .max-width-md-470 {
    max-width: 470px !important;
  }
  .min-width-md-470 {
    min-width: 470px !important;
  }
  .max-height-md-470 {
    max-height: 470px !important;
  }
  .min-height-md-470 {
    min-height: 470px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-470 {
    width: 470% !important;
  }
  .h-lg-470 {
    height: 470% !important;
  }
  .max-w-lg-470 {
    max-width: 470% !important;
  }
  .min-w-lg-470 {
    min-width: 470% !important;
  }
  .max-h-lg-470 {
    max-height: 470% !important;
  }
  .min-h-lg-470 {
    min-height: 470% !important;
  }
  .min-lg-vw-470 {
    min-width: 470vw !important;
  }
  .min-lg-vh-470 {
    min-height: 470vh !important;
  }
  .vw-lg-470 {
    width: 470vw !important;
  }
  .vh-lg-470 {
    height: 470vh !important;
  }
  .width-lg-470 {
    width: 470px !important;
  }
  .height-lg-470 {
    height: 470px !important;
  }
  .max-width-lg-470 {
    max-width: 470px !important;
  }
  .min-width-lg-470 {
    min-width: 470px !important;
  }
  .max-height-lg-470 {
    max-height: 470px !important;
  }
  .min-height-lg-470 {
    min-height: 470px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-470 {
    width: 470% !important;
  }
  .h-xl-470 {
    height: 470% !important;
  }
  .max-w-xl-470 {
    max-width: 470% !important;
  }
  .min-w-xl-470 {
    min-width: 470% !important;
  }
  .max-h-xl-470 {
    max-height: 470% !important;
  }
  .min-h-xl-470 {
    min-height: 470% !important;
  }
  .min-xl-vw-470 {
    min-width: 470vw !important;
  }
  .min-xl-vh-470 {
    min-height: 470vh !important;
  }
  .vw-xl-470 {
    width: 470vw !important;
  }
  .vh-xl-470 {
    height: 470vh !important;
  }
  .width-xl-470 {
    width: 470px !important;
  }
  .height-xl-470 {
    height: 470px !important;
  }
  .max-width-xl-470 {
    max-width: 470px !important;
  }
  .min-width-xl-470 {
    min-width: 470px !important;
  }
  .max-height-xl-470 {
    max-height: 470px !important;
  }
  .min-height-xl-470 {
    min-height: 470px !important;
  }
}
.w-470 {
  width: 470% !important;
}

.h-470 {
  height: 470% !important;
}

.max-w-470 {
  max-width: 470% !important;
}

.min-w-470 {
  min-width: 470% !important;
}

.max-h-470 {
  max-height: 470% !important;
}

.min-h-470 {
  min-height: 470% !important;
}

.min-vw-470 {
  min-width: 470vw !important;
}

.min-vh-470 {
  min-height: 470vh !important;
}

.vw-470 {
  width: 470vw !important;
}

.vh-470 {
  height: 470vh !important;
}

.width-470 {
  width: 470px !important;
}

.height-470 {
  height: 470px !important;
}

.max-width-470 {
  max-width: 470px !important;
}

.min-width-470 {
  min-width: 470px !important;
}

.max-height-470 {
  max-height: 470px !important;
}

.min-height-470 {
  min-height: 470px !important;
}

@media (max-width: 576px) {
  .w-sm-480 {
    width: 480% !important;
  }
  .h-sm-480 {
    height: 480% !important;
  }
  .max-w-sm-480 {
    max-width: 480% !important;
  }
  .min-w-sm-480 {
    min-width: 480% !important;
  }
  .max-h-sm-480 {
    max-height: 480% !important;
  }
  .min-h-sm-480 {
    min-height: 480% !important;
  }
  .min-sm-vw-480 {
    min-width: 480vw !important;
  }
  .min-sm-vh-480 {
    min-height: 480vh !important;
  }
  .vw-sm-480 {
    width: 480vw !important;
  }
  .vh-sm-480 {
    height: 480vh !important;
  }
  .width-sm-480 {
    width: 480px !important;
  }
  .height-sm-480 {
    height: 480px !important;
  }
  .max-width-sm-480 {
    max-width: 480 px !important;
  }
  .min-width-sm-480 {
    min-width: 480px !important;
  }
  .max-height-sm-480 {
    max-height: 480px !important;
  }
  .min-height-sm-480 {
    min-height: 480px !important;
  }
}
@media (max-width: 768px) {
  .w-md-480 {
    width: 480% !important;
  }
  .h-md-480 {
    height: 480% !important;
  }
  .max-w-md-480 {
    max-width: 480% !important;
  }
  .min-w-md-480 {
    min-width: 480% !important;
  }
  .max-h-md-480 {
    max-height: 480% !important;
  }
  .min-h-md-480 {
    min-height: 480% !important;
  }
  .min-md-vw-480 {
    min-width: 480vw !important;
  }
  .min-md-vh-480 {
    min-height: 480vh !important;
  }
  .vw-md-480 {
    width: 480vw !important;
  }
  .vh-md-480 {
    height: 480vh !important;
  }
  .width-md-480 {
    width: 480px !important;
  }
  .height-md-480 {
    height: 480px !important;
  }
  .max-width-md-480 {
    max-width: 480px !important;
  }
  .min-width-md-480 {
    min-width: 480px !important;
  }
  .max-height-md-480 {
    max-height: 480px !important;
  }
  .min-height-md-480 {
    min-height: 480px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-480 {
    width: 480% !important;
  }
  .h-lg-480 {
    height: 480% !important;
  }
  .max-w-lg-480 {
    max-width: 480% !important;
  }
  .min-w-lg-480 {
    min-width: 480% !important;
  }
  .max-h-lg-480 {
    max-height: 480% !important;
  }
  .min-h-lg-480 {
    min-height: 480% !important;
  }
  .min-lg-vw-480 {
    min-width: 480vw !important;
  }
  .min-lg-vh-480 {
    min-height: 480vh !important;
  }
  .vw-lg-480 {
    width: 480vw !important;
  }
  .vh-lg-480 {
    height: 480vh !important;
  }
  .width-lg-480 {
    width: 480px !important;
  }
  .height-lg-480 {
    height: 480px !important;
  }
  .max-width-lg-480 {
    max-width: 480px !important;
  }
  .min-width-lg-480 {
    min-width: 480px !important;
  }
  .max-height-lg-480 {
    max-height: 480px !important;
  }
  .min-height-lg-480 {
    min-height: 480px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-480 {
    width: 480% !important;
  }
  .h-xl-480 {
    height: 480% !important;
  }
  .max-w-xl-480 {
    max-width: 480% !important;
  }
  .min-w-xl-480 {
    min-width: 480% !important;
  }
  .max-h-xl-480 {
    max-height: 480% !important;
  }
  .min-h-xl-480 {
    min-height: 480% !important;
  }
  .min-xl-vw-480 {
    min-width: 480vw !important;
  }
  .min-xl-vh-480 {
    min-height: 480vh !important;
  }
  .vw-xl-480 {
    width: 480vw !important;
  }
  .vh-xl-480 {
    height: 480vh !important;
  }
  .width-xl-480 {
    width: 480px !important;
  }
  .height-xl-480 {
    height: 480px !important;
  }
  .max-width-xl-480 {
    max-width: 480px !important;
  }
  .min-width-xl-480 {
    min-width: 480px !important;
  }
  .max-height-xl-480 {
    max-height: 480px !important;
  }
  .min-height-xl-480 {
    min-height: 480px !important;
  }
}
.w-480 {
  width: 480% !important;
}

.h-480 {
  height: 480% !important;
}

.max-w-480 {
  max-width: 480% !important;
}

.min-w-480 {
  min-width: 480% !important;
}

.max-h-480 {
  max-height: 480% !important;
}

.min-h-480 {
  min-height: 480% !important;
}

.min-vw-480 {
  min-width: 480vw !important;
}

.min-vh-480 {
  min-height: 480vh !important;
}

.vw-480 {
  width: 480vw !important;
}

.vh-480 {
  height: 480vh !important;
}

.width-480 {
  width: 480px !important;
}

.height-480 {
  height: 480px !important;
}

.max-width-480 {
  max-width: 480px !important;
}

.min-width-480 {
  min-width: 480px !important;
}

.max-height-480 {
  max-height: 480px !important;
}

.min-height-480 {
  min-height: 480px !important;
}

@media (max-width: 576px) {
  .w-sm-490 {
    width: 490% !important;
  }
  .h-sm-490 {
    height: 490% !important;
  }
  .max-w-sm-490 {
    max-width: 490% !important;
  }
  .min-w-sm-490 {
    min-width: 490% !important;
  }
  .max-h-sm-490 {
    max-height: 490% !important;
  }
  .min-h-sm-490 {
    min-height: 490% !important;
  }
  .min-sm-vw-490 {
    min-width: 490vw !important;
  }
  .min-sm-vh-490 {
    min-height: 490vh !important;
  }
  .vw-sm-490 {
    width: 490vw !important;
  }
  .vh-sm-490 {
    height: 490vh !important;
  }
  .width-sm-490 {
    width: 490px !important;
  }
  .height-sm-490 {
    height: 490px !important;
  }
  .max-width-sm-490 {
    max-width: 490 px !important;
  }
  .min-width-sm-490 {
    min-width: 490px !important;
  }
  .max-height-sm-490 {
    max-height: 490px !important;
  }
  .min-height-sm-490 {
    min-height: 490px !important;
  }
}
@media (max-width: 768px) {
  .w-md-490 {
    width: 490% !important;
  }
  .h-md-490 {
    height: 490% !important;
  }
  .max-w-md-490 {
    max-width: 490% !important;
  }
  .min-w-md-490 {
    min-width: 490% !important;
  }
  .max-h-md-490 {
    max-height: 490% !important;
  }
  .min-h-md-490 {
    min-height: 490% !important;
  }
  .min-md-vw-490 {
    min-width: 490vw !important;
  }
  .min-md-vh-490 {
    min-height: 490vh !important;
  }
  .vw-md-490 {
    width: 490vw !important;
  }
  .vh-md-490 {
    height: 490vh !important;
  }
  .width-md-490 {
    width: 490px !important;
  }
  .height-md-490 {
    height: 490px !important;
  }
  .max-width-md-490 {
    max-width: 490px !important;
  }
  .min-width-md-490 {
    min-width: 490px !important;
  }
  .max-height-md-490 {
    max-height: 490px !important;
  }
  .min-height-md-490 {
    min-height: 490px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-490 {
    width: 490% !important;
  }
  .h-lg-490 {
    height: 490% !important;
  }
  .max-w-lg-490 {
    max-width: 490% !important;
  }
  .min-w-lg-490 {
    min-width: 490% !important;
  }
  .max-h-lg-490 {
    max-height: 490% !important;
  }
  .min-h-lg-490 {
    min-height: 490% !important;
  }
  .min-lg-vw-490 {
    min-width: 490vw !important;
  }
  .min-lg-vh-490 {
    min-height: 490vh !important;
  }
  .vw-lg-490 {
    width: 490vw !important;
  }
  .vh-lg-490 {
    height: 490vh !important;
  }
  .width-lg-490 {
    width: 490px !important;
  }
  .height-lg-490 {
    height: 490px !important;
  }
  .max-width-lg-490 {
    max-width: 490px !important;
  }
  .min-width-lg-490 {
    min-width: 490px !important;
  }
  .max-height-lg-490 {
    max-height: 490px !important;
  }
  .min-height-lg-490 {
    min-height: 490px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-490 {
    width: 490% !important;
  }
  .h-xl-490 {
    height: 490% !important;
  }
  .max-w-xl-490 {
    max-width: 490% !important;
  }
  .min-w-xl-490 {
    min-width: 490% !important;
  }
  .max-h-xl-490 {
    max-height: 490% !important;
  }
  .min-h-xl-490 {
    min-height: 490% !important;
  }
  .min-xl-vw-490 {
    min-width: 490vw !important;
  }
  .min-xl-vh-490 {
    min-height: 490vh !important;
  }
  .vw-xl-490 {
    width: 490vw !important;
  }
  .vh-xl-490 {
    height: 490vh !important;
  }
  .width-xl-490 {
    width: 490px !important;
  }
  .height-xl-490 {
    height: 490px !important;
  }
  .max-width-xl-490 {
    max-width: 490px !important;
  }
  .min-width-xl-490 {
    min-width: 490px !important;
  }
  .max-height-xl-490 {
    max-height: 490px !important;
  }
  .min-height-xl-490 {
    min-height: 490px !important;
  }
}
.w-490 {
  width: 490% !important;
}

.h-490 {
  height: 490% !important;
}

.max-w-490 {
  max-width: 490% !important;
}

.min-w-490 {
  min-width: 490% !important;
}

.max-h-490 {
  max-height: 490% !important;
}

.min-h-490 {
  min-height: 490% !important;
}

.min-vw-490 {
  min-width: 490vw !important;
}

.min-vh-490 {
  min-height: 490vh !important;
}

.vw-490 {
  width: 490vw !important;
}

.vh-490 {
  height: 490vh !important;
}

.width-490 {
  width: 490px !important;
}

.height-490 {
  height: 490px !important;
}

.max-width-490 {
  max-width: 490px !important;
}

.min-width-490 {
  min-width: 490px !important;
}

.max-height-490 {
  max-height: 490px !important;
}

.min-height-490 {
  min-height: 490px !important;
}

@media (max-width: 576px) {
  .w-sm-500 {
    width: 500% !important;
  }
  .h-sm-500 {
    height: 500% !important;
  }
  .max-w-sm-500 {
    max-width: 500% !important;
  }
  .min-w-sm-500 {
    min-width: 500% !important;
  }
  .max-h-sm-500 {
    max-height: 500% !important;
  }
  .min-h-sm-500 {
    min-height: 500% !important;
  }
  .min-sm-vw-500 {
    min-width: 500vw !important;
  }
  .min-sm-vh-500 {
    min-height: 500vh !important;
  }
  .vw-sm-500 {
    width: 500vw !important;
  }
  .vh-sm-500 {
    height: 500vh !important;
  }
  .width-sm-500 {
    width: 500px !important;
  }
  .height-sm-500 {
    height: 500px !important;
  }
  .max-width-sm-500 {
    max-width: 500 px !important;
  }
  .min-width-sm-500 {
    min-width: 500px !important;
  }
  .max-height-sm-500 {
    max-height: 500px !important;
  }
  .min-height-sm-500 {
    min-height: 500px !important;
  }
}
@media (max-width: 768px) {
  .w-md-500 {
    width: 500% !important;
  }
  .h-md-500 {
    height: 500% !important;
  }
  .max-w-md-500 {
    max-width: 500% !important;
  }
  .min-w-md-500 {
    min-width: 500% !important;
  }
  .max-h-md-500 {
    max-height: 500% !important;
  }
  .min-h-md-500 {
    min-height: 500% !important;
  }
  .min-md-vw-500 {
    min-width: 500vw !important;
  }
  .min-md-vh-500 {
    min-height: 500vh !important;
  }
  .vw-md-500 {
    width: 500vw !important;
  }
  .vh-md-500 {
    height: 500vh !important;
  }
  .width-md-500 {
    width: 500px !important;
  }
  .height-md-500 {
    height: 500px !important;
  }
  .max-width-md-500 {
    max-width: 500px !important;
  }
  .min-width-md-500 {
    min-width: 500px !important;
  }
  .max-height-md-500 {
    max-height: 500px !important;
  }
  .min-height-md-500 {
    min-height: 500px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-500 {
    width: 500% !important;
  }
  .h-lg-500 {
    height: 500% !important;
  }
  .max-w-lg-500 {
    max-width: 500% !important;
  }
  .min-w-lg-500 {
    min-width: 500% !important;
  }
  .max-h-lg-500 {
    max-height: 500% !important;
  }
  .min-h-lg-500 {
    min-height: 500% !important;
  }
  .min-lg-vw-500 {
    min-width: 500vw !important;
  }
  .min-lg-vh-500 {
    min-height: 500vh !important;
  }
  .vw-lg-500 {
    width: 500vw !important;
  }
  .vh-lg-500 {
    height: 500vh !important;
  }
  .width-lg-500 {
    width: 500px !important;
  }
  .height-lg-500 {
    height: 500px !important;
  }
  .max-width-lg-500 {
    max-width: 500px !important;
  }
  .min-width-lg-500 {
    min-width: 500px !important;
  }
  .max-height-lg-500 {
    max-height: 500px !important;
  }
  .min-height-lg-500 {
    min-height: 500px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-500 {
    width: 500% !important;
  }
  .h-xl-500 {
    height: 500% !important;
  }
  .max-w-xl-500 {
    max-width: 500% !important;
  }
  .min-w-xl-500 {
    min-width: 500% !important;
  }
  .max-h-xl-500 {
    max-height: 500% !important;
  }
  .min-h-xl-500 {
    min-height: 500% !important;
  }
  .min-xl-vw-500 {
    min-width: 500vw !important;
  }
  .min-xl-vh-500 {
    min-height: 500vh !important;
  }
  .vw-xl-500 {
    width: 500vw !important;
  }
  .vh-xl-500 {
    height: 500vh !important;
  }
  .width-xl-500 {
    width: 500px !important;
  }
  .height-xl-500 {
    height: 500px !important;
  }
  .max-width-xl-500 {
    max-width: 500px !important;
  }
  .min-width-xl-500 {
    min-width: 500px !important;
  }
  .max-height-xl-500 {
    max-height: 500px !important;
  }
  .min-height-xl-500 {
    min-height: 500px !important;
  }
}
.w-500 {
  width: 500% !important;
}

.h-500 {
  height: 500% !important;
}

.max-w-500 {
  max-width: 500% !important;
}

.min-w-500 {
  min-width: 500% !important;
}

.max-h-500 {
  max-height: 500% !important;
}

.min-h-500 {
  min-height: 500% !important;
}

.min-vw-500 {
  min-width: 500vw !important;
}

.min-vh-500 {
  min-height: 500vh !important;
}

.vw-500 {
  width: 500vw !important;
}

.vh-500 {
  height: 500vh !important;
}

.width-500 {
  width: 500px !important;
}

.height-500 {
  height: 500px !important;
}

.max-width-500 {
  max-width: 500px !important;
}

.min-width-500 {
  min-width: 500px !important;
}

.max-height-500 {
  max-height: 500px !important;
}

.min-height-500 {
  min-height: 500px !important;
}

@media (max-width: 576px) {
  .w-sm-510 {
    width: 510% !important;
  }
  .h-sm-510 {
    height: 510% !important;
  }
  .max-w-sm-510 {
    max-width: 510% !important;
  }
  .min-w-sm-510 {
    min-width: 510% !important;
  }
  .max-h-sm-510 {
    max-height: 510% !important;
  }
  .min-h-sm-510 {
    min-height: 510% !important;
  }
  .min-sm-vw-510 {
    min-width: 510vw !important;
  }
  .min-sm-vh-510 {
    min-height: 510vh !important;
  }
  .vw-sm-510 {
    width: 510vw !important;
  }
  .vh-sm-510 {
    height: 510vh !important;
  }
  .width-sm-510 {
    width: 510px !important;
  }
  .height-sm-510 {
    height: 510px !important;
  }
  .max-width-sm-510 {
    max-width: 510 px !important;
  }
  .min-width-sm-510 {
    min-width: 510px !important;
  }
  .max-height-sm-510 {
    max-height: 510px !important;
  }
  .min-height-sm-510 {
    min-height: 510px !important;
  }
}
@media (max-width: 768px) {
  .w-md-510 {
    width: 510% !important;
  }
  .h-md-510 {
    height: 510% !important;
  }
  .max-w-md-510 {
    max-width: 510% !important;
  }
  .min-w-md-510 {
    min-width: 510% !important;
  }
  .max-h-md-510 {
    max-height: 510% !important;
  }
  .min-h-md-510 {
    min-height: 510% !important;
  }
  .min-md-vw-510 {
    min-width: 510vw !important;
  }
  .min-md-vh-510 {
    min-height: 510vh !important;
  }
  .vw-md-510 {
    width: 510vw !important;
  }
  .vh-md-510 {
    height: 510vh !important;
  }
  .width-md-510 {
    width: 510px !important;
  }
  .height-md-510 {
    height: 510px !important;
  }
  .max-width-md-510 {
    max-width: 510px !important;
  }
  .min-width-md-510 {
    min-width: 510px !important;
  }
  .max-height-md-510 {
    max-height: 510px !important;
  }
  .min-height-md-510 {
    min-height: 510px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-510 {
    width: 510% !important;
  }
  .h-lg-510 {
    height: 510% !important;
  }
  .max-w-lg-510 {
    max-width: 510% !important;
  }
  .min-w-lg-510 {
    min-width: 510% !important;
  }
  .max-h-lg-510 {
    max-height: 510% !important;
  }
  .min-h-lg-510 {
    min-height: 510% !important;
  }
  .min-lg-vw-510 {
    min-width: 510vw !important;
  }
  .min-lg-vh-510 {
    min-height: 510vh !important;
  }
  .vw-lg-510 {
    width: 510vw !important;
  }
  .vh-lg-510 {
    height: 510vh !important;
  }
  .width-lg-510 {
    width: 510px !important;
  }
  .height-lg-510 {
    height: 510px !important;
  }
  .max-width-lg-510 {
    max-width: 510px !important;
  }
  .min-width-lg-510 {
    min-width: 510px !important;
  }
  .max-height-lg-510 {
    max-height: 510px !important;
  }
  .min-height-lg-510 {
    min-height: 510px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-510 {
    width: 510% !important;
  }
  .h-xl-510 {
    height: 510% !important;
  }
  .max-w-xl-510 {
    max-width: 510% !important;
  }
  .min-w-xl-510 {
    min-width: 510% !important;
  }
  .max-h-xl-510 {
    max-height: 510% !important;
  }
  .min-h-xl-510 {
    min-height: 510% !important;
  }
  .min-xl-vw-510 {
    min-width: 510vw !important;
  }
  .min-xl-vh-510 {
    min-height: 510vh !important;
  }
  .vw-xl-510 {
    width: 510vw !important;
  }
  .vh-xl-510 {
    height: 510vh !important;
  }
  .width-xl-510 {
    width: 510px !important;
  }
  .height-xl-510 {
    height: 510px !important;
  }
  .max-width-xl-510 {
    max-width: 510px !important;
  }
  .min-width-xl-510 {
    min-width: 510px !important;
  }
  .max-height-xl-510 {
    max-height: 510px !important;
  }
  .min-height-xl-510 {
    min-height: 510px !important;
  }
}
.w-510 {
  width: 510% !important;
}

.h-510 {
  height: 510% !important;
}

.max-w-510 {
  max-width: 510% !important;
}

.min-w-510 {
  min-width: 510% !important;
}

.max-h-510 {
  max-height: 510% !important;
}

.min-h-510 {
  min-height: 510% !important;
}

.min-vw-510 {
  min-width: 510vw !important;
}

.min-vh-510 {
  min-height: 510vh !important;
}

.vw-510 {
  width: 510vw !important;
}

.vh-510 {
  height: 510vh !important;
}

.width-510 {
  width: 510px !important;
}

.height-510 {
  height: 510px !important;
}

.max-width-510 {
  max-width: 510px !important;
}

.min-width-510 {
  min-width: 510px !important;
}

.max-height-510 {
  max-height: 510px !important;
}

.min-height-510 {
  min-height: 510px !important;
}

@media (max-width: 576px) {
  .w-sm-520 {
    width: 520% !important;
  }
  .h-sm-520 {
    height: 520% !important;
  }
  .max-w-sm-520 {
    max-width: 520% !important;
  }
  .min-w-sm-520 {
    min-width: 520% !important;
  }
  .max-h-sm-520 {
    max-height: 520% !important;
  }
  .min-h-sm-520 {
    min-height: 520% !important;
  }
  .min-sm-vw-520 {
    min-width: 520vw !important;
  }
  .min-sm-vh-520 {
    min-height: 520vh !important;
  }
  .vw-sm-520 {
    width: 520vw !important;
  }
  .vh-sm-520 {
    height: 520vh !important;
  }
  .width-sm-520 {
    width: 520px !important;
  }
  .height-sm-520 {
    height: 520px !important;
  }
  .max-width-sm-520 {
    max-width: 520 px !important;
  }
  .min-width-sm-520 {
    min-width: 520px !important;
  }
  .max-height-sm-520 {
    max-height: 520px !important;
  }
  .min-height-sm-520 {
    min-height: 520px !important;
  }
}
@media (max-width: 768px) {
  .w-md-520 {
    width: 520% !important;
  }
  .h-md-520 {
    height: 520% !important;
  }
  .max-w-md-520 {
    max-width: 520% !important;
  }
  .min-w-md-520 {
    min-width: 520% !important;
  }
  .max-h-md-520 {
    max-height: 520% !important;
  }
  .min-h-md-520 {
    min-height: 520% !important;
  }
  .min-md-vw-520 {
    min-width: 520vw !important;
  }
  .min-md-vh-520 {
    min-height: 520vh !important;
  }
  .vw-md-520 {
    width: 520vw !important;
  }
  .vh-md-520 {
    height: 520vh !important;
  }
  .width-md-520 {
    width: 520px !important;
  }
  .height-md-520 {
    height: 520px !important;
  }
  .max-width-md-520 {
    max-width: 520px !important;
  }
  .min-width-md-520 {
    min-width: 520px !important;
  }
  .max-height-md-520 {
    max-height: 520px !important;
  }
  .min-height-md-520 {
    min-height: 520px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-520 {
    width: 520% !important;
  }
  .h-lg-520 {
    height: 520% !important;
  }
  .max-w-lg-520 {
    max-width: 520% !important;
  }
  .min-w-lg-520 {
    min-width: 520% !important;
  }
  .max-h-lg-520 {
    max-height: 520% !important;
  }
  .min-h-lg-520 {
    min-height: 520% !important;
  }
  .min-lg-vw-520 {
    min-width: 520vw !important;
  }
  .min-lg-vh-520 {
    min-height: 520vh !important;
  }
  .vw-lg-520 {
    width: 520vw !important;
  }
  .vh-lg-520 {
    height: 520vh !important;
  }
  .width-lg-520 {
    width: 520px !important;
  }
  .height-lg-520 {
    height: 520px !important;
  }
  .max-width-lg-520 {
    max-width: 520px !important;
  }
  .min-width-lg-520 {
    min-width: 520px !important;
  }
  .max-height-lg-520 {
    max-height: 520px !important;
  }
  .min-height-lg-520 {
    min-height: 520px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-520 {
    width: 520% !important;
  }
  .h-xl-520 {
    height: 520% !important;
  }
  .max-w-xl-520 {
    max-width: 520% !important;
  }
  .min-w-xl-520 {
    min-width: 520% !important;
  }
  .max-h-xl-520 {
    max-height: 520% !important;
  }
  .min-h-xl-520 {
    min-height: 520% !important;
  }
  .min-xl-vw-520 {
    min-width: 520vw !important;
  }
  .min-xl-vh-520 {
    min-height: 520vh !important;
  }
  .vw-xl-520 {
    width: 520vw !important;
  }
  .vh-xl-520 {
    height: 520vh !important;
  }
  .width-xl-520 {
    width: 520px !important;
  }
  .height-xl-520 {
    height: 520px !important;
  }
  .max-width-xl-520 {
    max-width: 520px !important;
  }
  .min-width-xl-520 {
    min-width: 520px !important;
  }
  .max-height-xl-520 {
    max-height: 520px !important;
  }
  .min-height-xl-520 {
    min-height: 520px !important;
  }
}
.w-520 {
  width: 520% !important;
}

.h-520 {
  height: 520% !important;
}

.max-w-520 {
  max-width: 520% !important;
}

.min-w-520 {
  min-width: 520% !important;
}

.max-h-520 {
  max-height: 520% !important;
}

.min-h-520 {
  min-height: 520% !important;
}

.min-vw-520 {
  min-width: 520vw !important;
}

.min-vh-520 {
  min-height: 520vh !important;
}

.vw-520 {
  width: 520vw !important;
}

.vh-520 {
  height: 520vh !important;
}

.width-520 {
  width: 520px !important;
}

.height-520 {
  height: 520px !important;
}

.max-width-520 {
  max-width: 520px !important;
}

.min-width-520 {
  min-width: 520px !important;
}

.max-height-520 {
  max-height: 520px !important;
}

.min-height-520 {
  min-height: 520px !important;
}

@media (max-width: 576px) {
  .w-sm-530 {
    width: 530% !important;
  }
  .h-sm-530 {
    height: 530% !important;
  }
  .max-w-sm-530 {
    max-width: 530% !important;
  }
  .min-w-sm-530 {
    min-width: 530% !important;
  }
  .max-h-sm-530 {
    max-height: 530% !important;
  }
  .min-h-sm-530 {
    min-height: 530% !important;
  }
  .min-sm-vw-530 {
    min-width: 530vw !important;
  }
  .min-sm-vh-530 {
    min-height: 530vh !important;
  }
  .vw-sm-530 {
    width: 530vw !important;
  }
  .vh-sm-530 {
    height: 530vh !important;
  }
  .width-sm-530 {
    width: 530px !important;
  }
  .height-sm-530 {
    height: 530px !important;
  }
  .max-width-sm-530 {
    max-width: 530 px !important;
  }
  .min-width-sm-530 {
    min-width: 530px !important;
  }
  .max-height-sm-530 {
    max-height: 530px !important;
  }
  .min-height-sm-530 {
    min-height: 530px !important;
  }
}
@media (max-width: 768px) {
  .w-md-530 {
    width: 530% !important;
  }
  .h-md-530 {
    height: 530% !important;
  }
  .max-w-md-530 {
    max-width: 530% !important;
  }
  .min-w-md-530 {
    min-width: 530% !important;
  }
  .max-h-md-530 {
    max-height: 530% !important;
  }
  .min-h-md-530 {
    min-height: 530% !important;
  }
  .min-md-vw-530 {
    min-width: 530vw !important;
  }
  .min-md-vh-530 {
    min-height: 530vh !important;
  }
  .vw-md-530 {
    width: 530vw !important;
  }
  .vh-md-530 {
    height: 530vh !important;
  }
  .width-md-530 {
    width: 530px !important;
  }
  .height-md-530 {
    height: 530px !important;
  }
  .max-width-md-530 {
    max-width: 530px !important;
  }
  .min-width-md-530 {
    min-width: 530px !important;
  }
  .max-height-md-530 {
    max-height: 530px !important;
  }
  .min-height-md-530 {
    min-height: 530px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-530 {
    width: 530% !important;
  }
  .h-lg-530 {
    height: 530% !important;
  }
  .max-w-lg-530 {
    max-width: 530% !important;
  }
  .min-w-lg-530 {
    min-width: 530% !important;
  }
  .max-h-lg-530 {
    max-height: 530% !important;
  }
  .min-h-lg-530 {
    min-height: 530% !important;
  }
  .min-lg-vw-530 {
    min-width: 530vw !important;
  }
  .min-lg-vh-530 {
    min-height: 530vh !important;
  }
  .vw-lg-530 {
    width: 530vw !important;
  }
  .vh-lg-530 {
    height: 530vh !important;
  }
  .width-lg-530 {
    width: 530px !important;
  }
  .height-lg-530 {
    height: 530px !important;
  }
  .max-width-lg-530 {
    max-width: 530px !important;
  }
  .min-width-lg-530 {
    min-width: 530px !important;
  }
  .max-height-lg-530 {
    max-height: 530px !important;
  }
  .min-height-lg-530 {
    min-height: 530px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-530 {
    width: 530% !important;
  }
  .h-xl-530 {
    height: 530% !important;
  }
  .max-w-xl-530 {
    max-width: 530% !important;
  }
  .min-w-xl-530 {
    min-width: 530% !important;
  }
  .max-h-xl-530 {
    max-height: 530% !important;
  }
  .min-h-xl-530 {
    min-height: 530% !important;
  }
  .min-xl-vw-530 {
    min-width: 530vw !important;
  }
  .min-xl-vh-530 {
    min-height: 530vh !important;
  }
  .vw-xl-530 {
    width: 530vw !important;
  }
  .vh-xl-530 {
    height: 530vh !important;
  }
  .width-xl-530 {
    width: 530px !important;
  }
  .height-xl-530 {
    height: 530px !important;
  }
  .max-width-xl-530 {
    max-width: 530px !important;
  }
  .min-width-xl-530 {
    min-width: 530px !important;
  }
  .max-height-xl-530 {
    max-height: 530px !important;
  }
  .min-height-xl-530 {
    min-height: 530px !important;
  }
}
.w-530 {
  width: 530% !important;
}

.h-530 {
  height: 530% !important;
}

.max-w-530 {
  max-width: 530% !important;
}

.min-w-530 {
  min-width: 530% !important;
}

.max-h-530 {
  max-height: 530% !important;
}

.min-h-530 {
  min-height: 530% !important;
}

.min-vw-530 {
  min-width: 530vw !important;
}

.min-vh-530 {
  min-height: 530vh !important;
}

.vw-530 {
  width: 530vw !important;
}

.vh-530 {
  height: 530vh !important;
}

.width-530 {
  width: 530px !important;
}

.height-530 {
  height: 530px !important;
}

.max-width-530 {
  max-width: 530px !important;
}

.min-width-530 {
  min-width: 530px !important;
}

.max-height-530 {
  max-height: 530px !important;
}

.min-height-530 {
  min-height: 530px !important;
}

@media (max-width: 576px) {
  .w-sm-540 {
    width: 540% !important;
  }
  .h-sm-540 {
    height: 540% !important;
  }
  .max-w-sm-540 {
    max-width: 540% !important;
  }
  .min-w-sm-540 {
    min-width: 540% !important;
  }
  .max-h-sm-540 {
    max-height: 540% !important;
  }
  .min-h-sm-540 {
    min-height: 540% !important;
  }
  .min-sm-vw-540 {
    min-width: 540vw !important;
  }
  .min-sm-vh-540 {
    min-height: 540vh !important;
  }
  .vw-sm-540 {
    width: 540vw !important;
  }
  .vh-sm-540 {
    height: 540vh !important;
  }
  .width-sm-540 {
    width: 540px !important;
  }
  .height-sm-540 {
    height: 540px !important;
  }
  .max-width-sm-540 {
    max-width: 540 px !important;
  }
  .min-width-sm-540 {
    min-width: 540px !important;
  }
  .max-height-sm-540 {
    max-height: 540px !important;
  }
  .min-height-sm-540 {
    min-height: 540px !important;
  }
}
@media (max-width: 768px) {
  .w-md-540 {
    width: 540% !important;
  }
  .h-md-540 {
    height: 540% !important;
  }
  .max-w-md-540 {
    max-width: 540% !important;
  }
  .min-w-md-540 {
    min-width: 540% !important;
  }
  .max-h-md-540 {
    max-height: 540% !important;
  }
  .min-h-md-540 {
    min-height: 540% !important;
  }
  .min-md-vw-540 {
    min-width: 540vw !important;
  }
  .min-md-vh-540 {
    min-height: 540vh !important;
  }
  .vw-md-540 {
    width: 540vw !important;
  }
  .vh-md-540 {
    height: 540vh !important;
  }
  .width-md-540 {
    width: 540px !important;
  }
  .height-md-540 {
    height: 540px !important;
  }
  .max-width-md-540 {
    max-width: 540px !important;
  }
  .min-width-md-540 {
    min-width: 540px !important;
  }
  .max-height-md-540 {
    max-height: 540px !important;
  }
  .min-height-md-540 {
    min-height: 540px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-540 {
    width: 540% !important;
  }
  .h-lg-540 {
    height: 540% !important;
  }
  .max-w-lg-540 {
    max-width: 540% !important;
  }
  .min-w-lg-540 {
    min-width: 540% !important;
  }
  .max-h-lg-540 {
    max-height: 540% !important;
  }
  .min-h-lg-540 {
    min-height: 540% !important;
  }
  .min-lg-vw-540 {
    min-width: 540vw !important;
  }
  .min-lg-vh-540 {
    min-height: 540vh !important;
  }
  .vw-lg-540 {
    width: 540vw !important;
  }
  .vh-lg-540 {
    height: 540vh !important;
  }
  .width-lg-540 {
    width: 540px !important;
  }
  .height-lg-540 {
    height: 540px !important;
  }
  .max-width-lg-540 {
    max-width: 540px !important;
  }
  .min-width-lg-540 {
    min-width: 540px !important;
  }
  .max-height-lg-540 {
    max-height: 540px !important;
  }
  .min-height-lg-540 {
    min-height: 540px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-540 {
    width: 540% !important;
  }
  .h-xl-540 {
    height: 540% !important;
  }
  .max-w-xl-540 {
    max-width: 540% !important;
  }
  .min-w-xl-540 {
    min-width: 540% !important;
  }
  .max-h-xl-540 {
    max-height: 540% !important;
  }
  .min-h-xl-540 {
    min-height: 540% !important;
  }
  .min-xl-vw-540 {
    min-width: 540vw !important;
  }
  .min-xl-vh-540 {
    min-height: 540vh !important;
  }
  .vw-xl-540 {
    width: 540vw !important;
  }
  .vh-xl-540 {
    height: 540vh !important;
  }
  .width-xl-540 {
    width: 540px !important;
  }
  .height-xl-540 {
    height: 540px !important;
  }
  .max-width-xl-540 {
    max-width: 540px !important;
  }
  .min-width-xl-540 {
    min-width: 540px !important;
  }
  .max-height-xl-540 {
    max-height: 540px !important;
  }
  .min-height-xl-540 {
    min-height: 540px !important;
  }
}
.w-540 {
  width: 540% !important;
}

.h-540 {
  height: 540% !important;
}

.max-w-540 {
  max-width: 540% !important;
}

.min-w-540 {
  min-width: 540% !important;
}

.max-h-540 {
  max-height: 540% !important;
}

.min-h-540 {
  min-height: 540% !important;
}

.min-vw-540 {
  min-width: 540vw !important;
}

.min-vh-540 {
  min-height: 540vh !important;
}

.vw-540 {
  width: 540vw !important;
}

.vh-540 {
  height: 540vh !important;
}

.width-540 {
  width: 540px !important;
}

.height-540 {
  height: 540px !important;
}

.max-width-540 {
  max-width: 540px !important;
}

.min-width-540 {
  min-width: 540px !important;
}

.max-height-540 {
  max-height: 540px !important;
}

.min-height-540 {
  min-height: 540px !important;
}

@media (max-width: 576px) {
  .w-sm-550 {
    width: 550% !important;
  }
  .h-sm-550 {
    height: 550% !important;
  }
  .max-w-sm-550 {
    max-width: 550% !important;
  }
  .min-w-sm-550 {
    min-width: 550% !important;
  }
  .max-h-sm-550 {
    max-height: 550% !important;
  }
  .min-h-sm-550 {
    min-height: 550% !important;
  }
  .min-sm-vw-550 {
    min-width: 550vw !important;
  }
  .min-sm-vh-550 {
    min-height: 550vh !important;
  }
  .vw-sm-550 {
    width: 550vw !important;
  }
  .vh-sm-550 {
    height: 550vh !important;
  }
  .width-sm-550 {
    width: 550px !important;
  }
  .height-sm-550 {
    height: 550px !important;
  }
  .max-width-sm-550 {
    max-width: 550 px !important;
  }
  .min-width-sm-550 {
    min-width: 550px !important;
  }
  .max-height-sm-550 {
    max-height: 550px !important;
  }
  .min-height-sm-550 {
    min-height: 550px !important;
  }
}
@media (max-width: 768px) {
  .w-md-550 {
    width: 550% !important;
  }
  .h-md-550 {
    height: 550% !important;
  }
  .max-w-md-550 {
    max-width: 550% !important;
  }
  .min-w-md-550 {
    min-width: 550% !important;
  }
  .max-h-md-550 {
    max-height: 550% !important;
  }
  .min-h-md-550 {
    min-height: 550% !important;
  }
  .min-md-vw-550 {
    min-width: 550vw !important;
  }
  .min-md-vh-550 {
    min-height: 550vh !important;
  }
  .vw-md-550 {
    width: 550vw !important;
  }
  .vh-md-550 {
    height: 550vh !important;
  }
  .width-md-550 {
    width: 550px !important;
  }
  .height-md-550 {
    height: 550px !important;
  }
  .max-width-md-550 {
    max-width: 550px !important;
  }
  .min-width-md-550 {
    min-width: 550px !important;
  }
  .max-height-md-550 {
    max-height: 550px !important;
  }
  .min-height-md-550 {
    min-height: 550px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-550 {
    width: 550% !important;
  }
  .h-lg-550 {
    height: 550% !important;
  }
  .max-w-lg-550 {
    max-width: 550% !important;
  }
  .min-w-lg-550 {
    min-width: 550% !important;
  }
  .max-h-lg-550 {
    max-height: 550% !important;
  }
  .min-h-lg-550 {
    min-height: 550% !important;
  }
  .min-lg-vw-550 {
    min-width: 550vw !important;
  }
  .min-lg-vh-550 {
    min-height: 550vh !important;
  }
  .vw-lg-550 {
    width: 550vw !important;
  }
  .vh-lg-550 {
    height: 550vh !important;
  }
  .width-lg-550 {
    width: 550px !important;
  }
  .height-lg-550 {
    height: 550px !important;
  }
  .max-width-lg-550 {
    max-width: 550px !important;
  }
  .min-width-lg-550 {
    min-width: 550px !important;
  }
  .max-height-lg-550 {
    max-height: 550px !important;
  }
  .min-height-lg-550 {
    min-height: 550px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-550 {
    width: 550% !important;
  }
  .h-xl-550 {
    height: 550% !important;
  }
  .max-w-xl-550 {
    max-width: 550% !important;
  }
  .min-w-xl-550 {
    min-width: 550% !important;
  }
  .max-h-xl-550 {
    max-height: 550% !important;
  }
  .min-h-xl-550 {
    min-height: 550% !important;
  }
  .min-xl-vw-550 {
    min-width: 550vw !important;
  }
  .min-xl-vh-550 {
    min-height: 550vh !important;
  }
  .vw-xl-550 {
    width: 550vw !important;
  }
  .vh-xl-550 {
    height: 550vh !important;
  }
  .width-xl-550 {
    width: 550px !important;
  }
  .height-xl-550 {
    height: 550px !important;
  }
  .max-width-xl-550 {
    max-width: 550px !important;
  }
  .min-width-xl-550 {
    min-width: 550px !important;
  }
  .max-height-xl-550 {
    max-height: 550px !important;
  }
  .min-height-xl-550 {
    min-height: 550px !important;
  }
}
.w-550 {
  width: 550% !important;
}

.h-550 {
  height: 550% !important;
}

.max-w-550 {
  max-width: 550% !important;
}

.min-w-550 {
  min-width: 550% !important;
}

.max-h-550 {
  max-height: 550% !important;
}

.min-h-550 {
  min-height: 550% !important;
}

.min-vw-550 {
  min-width: 550vw !important;
}

.min-vh-550 {
  min-height: 550vh !important;
}

.vw-550 {
  width: 550vw !important;
}

.vh-550 {
  height: 550vh !important;
}

.width-550 {
  width: 550px !important;
}

.height-550 {
  height: 550px !important;
}

.max-width-550 {
  max-width: 550px !important;
}

.min-width-550 {
  min-width: 550px !important;
}

.max-height-550 {
  max-height: 550px !important;
}

.min-height-550 {
  min-height: 550px !important;
}

@media (max-width: 576px) {
  .w-sm-560 {
    width: 560% !important;
  }
  .h-sm-560 {
    height: 560% !important;
  }
  .max-w-sm-560 {
    max-width: 560% !important;
  }
  .min-w-sm-560 {
    min-width: 560% !important;
  }
  .max-h-sm-560 {
    max-height: 560% !important;
  }
  .min-h-sm-560 {
    min-height: 560% !important;
  }
  .min-sm-vw-560 {
    min-width: 560vw !important;
  }
  .min-sm-vh-560 {
    min-height: 560vh !important;
  }
  .vw-sm-560 {
    width: 560vw !important;
  }
  .vh-sm-560 {
    height: 560vh !important;
  }
  .width-sm-560 {
    width: 560px !important;
  }
  .height-sm-560 {
    height: 560px !important;
  }
  .max-width-sm-560 {
    max-width: 560 px !important;
  }
  .min-width-sm-560 {
    min-width: 560px !important;
  }
  .max-height-sm-560 {
    max-height: 560px !important;
  }
  .min-height-sm-560 {
    min-height: 560px !important;
  }
}
@media (max-width: 768px) {
  .w-md-560 {
    width: 560% !important;
  }
  .h-md-560 {
    height: 560% !important;
  }
  .max-w-md-560 {
    max-width: 560% !important;
  }
  .min-w-md-560 {
    min-width: 560% !important;
  }
  .max-h-md-560 {
    max-height: 560% !important;
  }
  .min-h-md-560 {
    min-height: 560% !important;
  }
  .min-md-vw-560 {
    min-width: 560vw !important;
  }
  .min-md-vh-560 {
    min-height: 560vh !important;
  }
  .vw-md-560 {
    width: 560vw !important;
  }
  .vh-md-560 {
    height: 560vh !important;
  }
  .width-md-560 {
    width: 560px !important;
  }
  .height-md-560 {
    height: 560px !important;
  }
  .max-width-md-560 {
    max-width: 560px !important;
  }
  .min-width-md-560 {
    min-width: 560px !important;
  }
  .max-height-md-560 {
    max-height: 560px !important;
  }
  .min-height-md-560 {
    min-height: 560px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-560 {
    width: 560% !important;
  }
  .h-lg-560 {
    height: 560% !important;
  }
  .max-w-lg-560 {
    max-width: 560% !important;
  }
  .min-w-lg-560 {
    min-width: 560% !important;
  }
  .max-h-lg-560 {
    max-height: 560% !important;
  }
  .min-h-lg-560 {
    min-height: 560% !important;
  }
  .min-lg-vw-560 {
    min-width: 560vw !important;
  }
  .min-lg-vh-560 {
    min-height: 560vh !important;
  }
  .vw-lg-560 {
    width: 560vw !important;
  }
  .vh-lg-560 {
    height: 560vh !important;
  }
  .width-lg-560 {
    width: 560px !important;
  }
  .height-lg-560 {
    height: 560px !important;
  }
  .max-width-lg-560 {
    max-width: 560px !important;
  }
  .min-width-lg-560 {
    min-width: 560px !important;
  }
  .max-height-lg-560 {
    max-height: 560px !important;
  }
  .min-height-lg-560 {
    min-height: 560px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-560 {
    width: 560% !important;
  }
  .h-xl-560 {
    height: 560% !important;
  }
  .max-w-xl-560 {
    max-width: 560% !important;
  }
  .min-w-xl-560 {
    min-width: 560% !important;
  }
  .max-h-xl-560 {
    max-height: 560% !important;
  }
  .min-h-xl-560 {
    min-height: 560% !important;
  }
  .min-xl-vw-560 {
    min-width: 560vw !important;
  }
  .min-xl-vh-560 {
    min-height: 560vh !important;
  }
  .vw-xl-560 {
    width: 560vw !important;
  }
  .vh-xl-560 {
    height: 560vh !important;
  }
  .width-xl-560 {
    width: 560px !important;
  }
  .height-xl-560 {
    height: 560px !important;
  }
  .max-width-xl-560 {
    max-width: 560px !important;
  }
  .min-width-xl-560 {
    min-width: 560px !important;
  }
  .max-height-xl-560 {
    max-height: 560px !important;
  }
  .min-height-xl-560 {
    min-height: 560px !important;
  }
}
.w-560 {
  width: 560% !important;
}

.h-560 {
  height: 560% !important;
}

.max-w-560 {
  max-width: 560% !important;
}

.min-w-560 {
  min-width: 560% !important;
}

.max-h-560 {
  max-height: 560% !important;
}

.min-h-560 {
  min-height: 560% !important;
}

.min-vw-560 {
  min-width: 560vw !important;
}

.min-vh-560 {
  min-height: 560vh !important;
}

.vw-560 {
  width: 560vw !important;
}

.vh-560 {
  height: 560vh !important;
}

.width-560 {
  width: 560px !important;
}

.height-560 {
  height: 560px !important;
}

.max-width-560 {
  max-width: 560px !important;
}

.min-width-560 {
  min-width: 560px !important;
}

.max-height-560 {
  max-height: 560px !important;
}

.min-height-560 {
  min-height: 560px !important;
}

@media (max-width: 576px) {
  .w-sm-570 {
    width: 570% !important;
  }
  .h-sm-570 {
    height: 570% !important;
  }
  .max-w-sm-570 {
    max-width: 570% !important;
  }
  .min-w-sm-570 {
    min-width: 570% !important;
  }
  .max-h-sm-570 {
    max-height: 570% !important;
  }
  .min-h-sm-570 {
    min-height: 570% !important;
  }
  .min-sm-vw-570 {
    min-width: 570vw !important;
  }
  .min-sm-vh-570 {
    min-height: 570vh !important;
  }
  .vw-sm-570 {
    width: 570vw !important;
  }
  .vh-sm-570 {
    height: 570vh !important;
  }
  .width-sm-570 {
    width: 570px !important;
  }
  .height-sm-570 {
    height: 570px !important;
  }
  .max-width-sm-570 {
    max-width: 570 px !important;
  }
  .min-width-sm-570 {
    min-width: 570px !important;
  }
  .max-height-sm-570 {
    max-height: 570px !important;
  }
  .min-height-sm-570 {
    min-height: 570px !important;
  }
}
@media (max-width: 768px) {
  .w-md-570 {
    width: 570% !important;
  }
  .h-md-570 {
    height: 570% !important;
  }
  .max-w-md-570 {
    max-width: 570% !important;
  }
  .min-w-md-570 {
    min-width: 570% !important;
  }
  .max-h-md-570 {
    max-height: 570% !important;
  }
  .min-h-md-570 {
    min-height: 570% !important;
  }
  .min-md-vw-570 {
    min-width: 570vw !important;
  }
  .min-md-vh-570 {
    min-height: 570vh !important;
  }
  .vw-md-570 {
    width: 570vw !important;
  }
  .vh-md-570 {
    height: 570vh !important;
  }
  .width-md-570 {
    width: 570px !important;
  }
  .height-md-570 {
    height: 570px !important;
  }
  .max-width-md-570 {
    max-width: 570px !important;
  }
  .min-width-md-570 {
    min-width: 570px !important;
  }
  .max-height-md-570 {
    max-height: 570px !important;
  }
  .min-height-md-570 {
    min-height: 570px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-570 {
    width: 570% !important;
  }
  .h-lg-570 {
    height: 570% !important;
  }
  .max-w-lg-570 {
    max-width: 570% !important;
  }
  .min-w-lg-570 {
    min-width: 570% !important;
  }
  .max-h-lg-570 {
    max-height: 570% !important;
  }
  .min-h-lg-570 {
    min-height: 570% !important;
  }
  .min-lg-vw-570 {
    min-width: 570vw !important;
  }
  .min-lg-vh-570 {
    min-height: 570vh !important;
  }
  .vw-lg-570 {
    width: 570vw !important;
  }
  .vh-lg-570 {
    height: 570vh !important;
  }
  .width-lg-570 {
    width: 570px !important;
  }
  .height-lg-570 {
    height: 570px !important;
  }
  .max-width-lg-570 {
    max-width: 570px !important;
  }
  .min-width-lg-570 {
    min-width: 570px !important;
  }
  .max-height-lg-570 {
    max-height: 570px !important;
  }
  .min-height-lg-570 {
    min-height: 570px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-570 {
    width: 570% !important;
  }
  .h-xl-570 {
    height: 570% !important;
  }
  .max-w-xl-570 {
    max-width: 570% !important;
  }
  .min-w-xl-570 {
    min-width: 570% !important;
  }
  .max-h-xl-570 {
    max-height: 570% !important;
  }
  .min-h-xl-570 {
    min-height: 570% !important;
  }
  .min-xl-vw-570 {
    min-width: 570vw !important;
  }
  .min-xl-vh-570 {
    min-height: 570vh !important;
  }
  .vw-xl-570 {
    width: 570vw !important;
  }
  .vh-xl-570 {
    height: 570vh !important;
  }
  .width-xl-570 {
    width: 570px !important;
  }
  .height-xl-570 {
    height: 570px !important;
  }
  .max-width-xl-570 {
    max-width: 570px !important;
  }
  .min-width-xl-570 {
    min-width: 570px !important;
  }
  .max-height-xl-570 {
    max-height: 570px !important;
  }
  .min-height-xl-570 {
    min-height: 570px !important;
  }
}
.w-570 {
  width: 570% !important;
}

.h-570 {
  height: 570% !important;
}

.max-w-570 {
  max-width: 570% !important;
}

.min-w-570 {
  min-width: 570% !important;
}

.max-h-570 {
  max-height: 570% !important;
}

.min-h-570 {
  min-height: 570% !important;
}

.min-vw-570 {
  min-width: 570vw !important;
}

.min-vh-570 {
  min-height: 570vh !important;
}

.vw-570 {
  width: 570vw !important;
}

.vh-570 {
  height: 570vh !important;
}

.width-570 {
  width: 570px !important;
}

.height-570 {
  height: 570px !important;
}

.max-width-570 {
  max-width: 570px !important;
}

.min-width-570 {
  min-width: 570px !important;
}

.max-height-570 {
  max-height: 570px !important;
}

.min-height-570 {
  min-height: 570px !important;
}

@media (max-width: 576px) {
  .w-sm-580 {
    width: 580% !important;
  }
  .h-sm-580 {
    height: 580% !important;
  }
  .max-w-sm-580 {
    max-width: 580% !important;
  }
  .min-w-sm-580 {
    min-width: 580% !important;
  }
  .max-h-sm-580 {
    max-height: 580% !important;
  }
  .min-h-sm-580 {
    min-height: 580% !important;
  }
  .min-sm-vw-580 {
    min-width: 580vw !important;
  }
  .min-sm-vh-580 {
    min-height: 580vh !important;
  }
  .vw-sm-580 {
    width: 580vw !important;
  }
  .vh-sm-580 {
    height: 580vh !important;
  }
  .width-sm-580 {
    width: 580px !important;
  }
  .height-sm-580 {
    height: 580px !important;
  }
  .max-width-sm-580 {
    max-width: 580 px !important;
  }
  .min-width-sm-580 {
    min-width: 580px !important;
  }
  .max-height-sm-580 {
    max-height: 580px !important;
  }
  .min-height-sm-580 {
    min-height: 580px !important;
  }
}
@media (max-width: 768px) {
  .w-md-580 {
    width: 580% !important;
  }
  .h-md-580 {
    height: 580% !important;
  }
  .max-w-md-580 {
    max-width: 580% !important;
  }
  .min-w-md-580 {
    min-width: 580% !important;
  }
  .max-h-md-580 {
    max-height: 580% !important;
  }
  .min-h-md-580 {
    min-height: 580% !important;
  }
  .min-md-vw-580 {
    min-width: 580vw !important;
  }
  .min-md-vh-580 {
    min-height: 580vh !important;
  }
  .vw-md-580 {
    width: 580vw !important;
  }
  .vh-md-580 {
    height: 580vh !important;
  }
  .width-md-580 {
    width: 580px !important;
  }
  .height-md-580 {
    height: 580px !important;
  }
  .max-width-md-580 {
    max-width: 580px !important;
  }
  .min-width-md-580 {
    min-width: 580px !important;
  }
  .max-height-md-580 {
    max-height: 580px !important;
  }
  .min-height-md-580 {
    min-height: 580px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-580 {
    width: 580% !important;
  }
  .h-lg-580 {
    height: 580% !important;
  }
  .max-w-lg-580 {
    max-width: 580% !important;
  }
  .min-w-lg-580 {
    min-width: 580% !important;
  }
  .max-h-lg-580 {
    max-height: 580% !important;
  }
  .min-h-lg-580 {
    min-height: 580% !important;
  }
  .min-lg-vw-580 {
    min-width: 580vw !important;
  }
  .min-lg-vh-580 {
    min-height: 580vh !important;
  }
  .vw-lg-580 {
    width: 580vw !important;
  }
  .vh-lg-580 {
    height: 580vh !important;
  }
  .width-lg-580 {
    width: 580px !important;
  }
  .height-lg-580 {
    height: 580px !important;
  }
  .max-width-lg-580 {
    max-width: 580px !important;
  }
  .min-width-lg-580 {
    min-width: 580px !important;
  }
  .max-height-lg-580 {
    max-height: 580px !important;
  }
  .min-height-lg-580 {
    min-height: 580px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-580 {
    width: 580% !important;
  }
  .h-xl-580 {
    height: 580% !important;
  }
  .max-w-xl-580 {
    max-width: 580% !important;
  }
  .min-w-xl-580 {
    min-width: 580% !important;
  }
  .max-h-xl-580 {
    max-height: 580% !important;
  }
  .min-h-xl-580 {
    min-height: 580% !important;
  }
  .min-xl-vw-580 {
    min-width: 580vw !important;
  }
  .min-xl-vh-580 {
    min-height: 580vh !important;
  }
  .vw-xl-580 {
    width: 580vw !important;
  }
  .vh-xl-580 {
    height: 580vh !important;
  }
  .width-xl-580 {
    width: 580px !important;
  }
  .height-xl-580 {
    height: 580px !important;
  }
  .max-width-xl-580 {
    max-width: 580px !important;
  }
  .min-width-xl-580 {
    min-width: 580px !important;
  }
  .max-height-xl-580 {
    max-height: 580px !important;
  }
  .min-height-xl-580 {
    min-height: 580px !important;
  }
}
.w-580 {
  width: 580% !important;
}

.h-580 {
  height: 580% !important;
}

.max-w-580 {
  max-width: 580% !important;
}

.min-w-580 {
  min-width: 580% !important;
}

.max-h-580 {
  max-height: 580% !important;
}

.min-h-580 {
  min-height: 580% !important;
}

.min-vw-580 {
  min-width: 580vw !important;
}

.min-vh-580 {
  min-height: 580vh !important;
}

.vw-580 {
  width: 580vw !important;
}

.vh-580 {
  height: 580vh !important;
}

.width-580 {
  width: 580px !important;
}

.height-580 {
  height: 580px !important;
}

.max-width-580 {
  max-width: 580px !important;
}

.min-width-580 {
  min-width: 580px !important;
}

.max-height-580 {
  max-height: 580px !important;
}

.min-height-580 {
  min-height: 580px !important;
}

@media (max-width: 576px) {
  .w-sm-590 {
    width: 590% !important;
  }
  .h-sm-590 {
    height: 590% !important;
  }
  .max-w-sm-590 {
    max-width: 590% !important;
  }
  .min-w-sm-590 {
    min-width: 590% !important;
  }
  .max-h-sm-590 {
    max-height: 590% !important;
  }
  .min-h-sm-590 {
    min-height: 590% !important;
  }
  .min-sm-vw-590 {
    min-width: 590vw !important;
  }
  .min-sm-vh-590 {
    min-height: 590vh !important;
  }
  .vw-sm-590 {
    width: 590vw !important;
  }
  .vh-sm-590 {
    height: 590vh !important;
  }
  .width-sm-590 {
    width: 590px !important;
  }
  .height-sm-590 {
    height: 590px !important;
  }
  .max-width-sm-590 {
    max-width: 590 px !important;
  }
  .min-width-sm-590 {
    min-width: 590px !important;
  }
  .max-height-sm-590 {
    max-height: 590px !important;
  }
  .min-height-sm-590 {
    min-height: 590px !important;
  }
}
@media (max-width: 768px) {
  .w-md-590 {
    width: 590% !important;
  }
  .h-md-590 {
    height: 590% !important;
  }
  .max-w-md-590 {
    max-width: 590% !important;
  }
  .min-w-md-590 {
    min-width: 590% !important;
  }
  .max-h-md-590 {
    max-height: 590% !important;
  }
  .min-h-md-590 {
    min-height: 590% !important;
  }
  .min-md-vw-590 {
    min-width: 590vw !important;
  }
  .min-md-vh-590 {
    min-height: 590vh !important;
  }
  .vw-md-590 {
    width: 590vw !important;
  }
  .vh-md-590 {
    height: 590vh !important;
  }
  .width-md-590 {
    width: 590px !important;
  }
  .height-md-590 {
    height: 590px !important;
  }
  .max-width-md-590 {
    max-width: 590px !important;
  }
  .min-width-md-590 {
    min-width: 590px !important;
  }
  .max-height-md-590 {
    max-height: 590px !important;
  }
  .min-height-md-590 {
    min-height: 590px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-590 {
    width: 590% !important;
  }
  .h-lg-590 {
    height: 590% !important;
  }
  .max-w-lg-590 {
    max-width: 590% !important;
  }
  .min-w-lg-590 {
    min-width: 590% !important;
  }
  .max-h-lg-590 {
    max-height: 590% !important;
  }
  .min-h-lg-590 {
    min-height: 590% !important;
  }
  .min-lg-vw-590 {
    min-width: 590vw !important;
  }
  .min-lg-vh-590 {
    min-height: 590vh !important;
  }
  .vw-lg-590 {
    width: 590vw !important;
  }
  .vh-lg-590 {
    height: 590vh !important;
  }
  .width-lg-590 {
    width: 590px !important;
  }
  .height-lg-590 {
    height: 590px !important;
  }
  .max-width-lg-590 {
    max-width: 590px !important;
  }
  .min-width-lg-590 {
    min-width: 590px !important;
  }
  .max-height-lg-590 {
    max-height: 590px !important;
  }
  .min-height-lg-590 {
    min-height: 590px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-590 {
    width: 590% !important;
  }
  .h-xl-590 {
    height: 590% !important;
  }
  .max-w-xl-590 {
    max-width: 590% !important;
  }
  .min-w-xl-590 {
    min-width: 590% !important;
  }
  .max-h-xl-590 {
    max-height: 590% !important;
  }
  .min-h-xl-590 {
    min-height: 590% !important;
  }
  .min-xl-vw-590 {
    min-width: 590vw !important;
  }
  .min-xl-vh-590 {
    min-height: 590vh !important;
  }
  .vw-xl-590 {
    width: 590vw !important;
  }
  .vh-xl-590 {
    height: 590vh !important;
  }
  .width-xl-590 {
    width: 590px !important;
  }
  .height-xl-590 {
    height: 590px !important;
  }
  .max-width-xl-590 {
    max-width: 590px !important;
  }
  .min-width-xl-590 {
    min-width: 590px !important;
  }
  .max-height-xl-590 {
    max-height: 590px !important;
  }
  .min-height-xl-590 {
    min-height: 590px !important;
  }
}
.w-590 {
  width: 590% !important;
}

.h-590 {
  height: 590% !important;
}

.max-w-590 {
  max-width: 590% !important;
}

.min-w-590 {
  min-width: 590% !important;
}

.max-h-590 {
  max-height: 590% !important;
}

.min-h-590 {
  min-height: 590% !important;
}

.min-vw-590 {
  min-width: 590vw !important;
}

.min-vh-590 {
  min-height: 590vh !important;
}

.vw-590 {
  width: 590vw !important;
}

.vh-590 {
  height: 590vh !important;
}

.width-590 {
  width: 590px !important;
}

.height-590 {
  height: 590px !important;
}

.max-width-590 {
  max-width: 590px !important;
}

.min-width-590 {
  min-width: 590px !important;
}

.max-height-590 {
  max-height: 590px !important;
}

.min-height-590 {
  min-height: 590px !important;
}

@media (max-width: 576px) {
  .w-sm-600 {
    width: 600% !important;
  }
  .h-sm-600 {
    height: 600% !important;
  }
  .max-w-sm-600 {
    max-width: 600% !important;
  }
  .min-w-sm-600 {
    min-width: 600% !important;
  }
  .max-h-sm-600 {
    max-height: 600% !important;
  }
  .min-h-sm-600 {
    min-height: 600% !important;
  }
  .min-sm-vw-600 {
    min-width: 600vw !important;
  }
  .min-sm-vh-600 {
    min-height: 600vh !important;
  }
  .vw-sm-600 {
    width: 600vw !important;
  }
  .vh-sm-600 {
    height: 600vh !important;
  }
  .width-sm-600 {
    width: 600px !important;
  }
  .height-sm-600 {
    height: 600px !important;
  }
  .max-width-sm-600 {
    max-width: 600 px !important;
  }
  .min-width-sm-600 {
    min-width: 600px !important;
  }
  .max-height-sm-600 {
    max-height: 600px !important;
  }
  .min-height-sm-600 {
    min-height: 600px !important;
  }
}
@media (max-width: 768px) {
  .w-md-600 {
    width: 600% !important;
  }
  .h-md-600 {
    height: 600% !important;
  }
  .max-w-md-600 {
    max-width: 600% !important;
  }
  .min-w-md-600 {
    min-width: 600% !important;
  }
  .max-h-md-600 {
    max-height: 600% !important;
  }
  .min-h-md-600 {
    min-height: 600% !important;
  }
  .min-md-vw-600 {
    min-width: 600vw !important;
  }
  .min-md-vh-600 {
    min-height: 600vh !important;
  }
  .vw-md-600 {
    width: 600vw !important;
  }
  .vh-md-600 {
    height: 600vh !important;
  }
  .width-md-600 {
    width: 600px !important;
  }
  .height-md-600 {
    height: 600px !important;
  }
  .max-width-md-600 {
    max-width: 600px !important;
  }
  .min-width-md-600 {
    min-width: 600px !important;
  }
  .max-height-md-600 {
    max-height: 600px !important;
  }
  .min-height-md-600 {
    min-height: 600px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-600 {
    width: 600% !important;
  }
  .h-lg-600 {
    height: 600% !important;
  }
  .max-w-lg-600 {
    max-width: 600% !important;
  }
  .min-w-lg-600 {
    min-width: 600% !important;
  }
  .max-h-lg-600 {
    max-height: 600% !important;
  }
  .min-h-lg-600 {
    min-height: 600% !important;
  }
  .min-lg-vw-600 {
    min-width: 600vw !important;
  }
  .min-lg-vh-600 {
    min-height: 600vh !important;
  }
  .vw-lg-600 {
    width: 600vw !important;
  }
  .vh-lg-600 {
    height: 600vh !important;
  }
  .width-lg-600 {
    width: 600px !important;
  }
  .height-lg-600 {
    height: 600px !important;
  }
  .max-width-lg-600 {
    max-width: 600px !important;
  }
  .min-width-lg-600 {
    min-width: 600px !important;
  }
  .max-height-lg-600 {
    max-height: 600px !important;
  }
  .min-height-lg-600 {
    min-height: 600px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-600 {
    width: 600% !important;
  }
  .h-xl-600 {
    height: 600% !important;
  }
  .max-w-xl-600 {
    max-width: 600% !important;
  }
  .min-w-xl-600 {
    min-width: 600% !important;
  }
  .max-h-xl-600 {
    max-height: 600% !important;
  }
  .min-h-xl-600 {
    min-height: 600% !important;
  }
  .min-xl-vw-600 {
    min-width: 600vw !important;
  }
  .min-xl-vh-600 {
    min-height: 600vh !important;
  }
  .vw-xl-600 {
    width: 600vw !important;
  }
  .vh-xl-600 {
    height: 600vh !important;
  }
  .width-xl-600 {
    width: 600px !important;
  }
  .height-xl-600 {
    height: 600px !important;
  }
  .max-width-xl-600 {
    max-width: 600px !important;
  }
  .min-width-xl-600 {
    min-width: 600px !important;
  }
  .max-height-xl-600 {
    max-height: 600px !important;
  }
  .min-height-xl-600 {
    min-height: 600px !important;
  }
}
.w-600 {
  width: 600% !important;
}

.h-600 {
  height: 600% !important;
}

.max-w-600 {
  max-width: 600% !important;
}

.min-w-600 {
  min-width: 600% !important;
}

.max-h-600 {
  max-height: 600% !important;
}

.min-h-600 {
  min-height: 600% !important;
}

.min-vw-600 {
  min-width: 600vw !important;
}

.min-vh-600 {
  min-height: 600vh !important;
}

.vw-600 {
  width: 600vw !important;
}

.vh-600 {
  height: 600vh !important;
}

.width-600 {
  width: 600px !important;
}

.height-600 {
  height: 600px !important;
}

.max-width-600 {
  max-width: 600px !important;
}

.min-width-600 {
  min-width: 600px !important;
}

.max-height-600 {
  max-height: 600px !important;
}

.min-height-600 {
  min-height: 600px !important;
}

@media (max-width: 576px) {
  .w-sm-610 {
    width: 610% !important;
  }
  .h-sm-610 {
    height: 610% !important;
  }
  .max-w-sm-610 {
    max-width: 610% !important;
  }
  .min-w-sm-610 {
    min-width: 610% !important;
  }
  .max-h-sm-610 {
    max-height: 610% !important;
  }
  .min-h-sm-610 {
    min-height: 610% !important;
  }
  .min-sm-vw-610 {
    min-width: 610vw !important;
  }
  .min-sm-vh-610 {
    min-height: 610vh !important;
  }
  .vw-sm-610 {
    width: 610vw !important;
  }
  .vh-sm-610 {
    height: 610vh !important;
  }
  .width-sm-610 {
    width: 610px !important;
  }
  .height-sm-610 {
    height: 610px !important;
  }
  .max-width-sm-610 {
    max-width: 610 px !important;
  }
  .min-width-sm-610 {
    min-width: 610px !important;
  }
  .max-height-sm-610 {
    max-height: 610px !important;
  }
  .min-height-sm-610 {
    min-height: 610px !important;
  }
}
@media (max-width: 768px) {
  .w-md-610 {
    width: 610% !important;
  }
  .h-md-610 {
    height: 610% !important;
  }
  .max-w-md-610 {
    max-width: 610% !important;
  }
  .min-w-md-610 {
    min-width: 610% !important;
  }
  .max-h-md-610 {
    max-height: 610% !important;
  }
  .min-h-md-610 {
    min-height: 610% !important;
  }
  .min-md-vw-610 {
    min-width: 610vw !important;
  }
  .min-md-vh-610 {
    min-height: 610vh !important;
  }
  .vw-md-610 {
    width: 610vw !important;
  }
  .vh-md-610 {
    height: 610vh !important;
  }
  .width-md-610 {
    width: 610px !important;
  }
  .height-md-610 {
    height: 610px !important;
  }
  .max-width-md-610 {
    max-width: 610px !important;
  }
  .min-width-md-610 {
    min-width: 610px !important;
  }
  .max-height-md-610 {
    max-height: 610px !important;
  }
  .min-height-md-610 {
    min-height: 610px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-610 {
    width: 610% !important;
  }
  .h-lg-610 {
    height: 610% !important;
  }
  .max-w-lg-610 {
    max-width: 610% !important;
  }
  .min-w-lg-610 {
    min-width: 610% !important;
  }
  .max-h-lg-610 {
    max-height: 610% !important;
  }
  .min-h-lg-610 {
    min-height: 610% !important;
  }
  .min-lg-vw-610 {
    min-width: 610vw !important;
  }
  .min-lg-vh-610 {
    min-height: 610vh !important;
  }
  .vw-lg-610 {
    width: 610vw !important;
  }
  .vh-lg-610 {
    height: 610vh !important;
  }
  .width-lg-610 {
    width: 610px !important;
  }
  .height-lg-610 {
    height: 610px !important;
  }
  .max-width-lg-610 {
    max-width: 610px !important;
  }
  .min-width-lg-610 {
    min-width: 610px !important;
  }
  .max-height-lg-610 {
    max-height: 610px !important;
  }
  .min-height-lg-610 {
    min-height: 610px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-610 {
    width: 610% !important;
  }
  .h-xl-610 {
    height: 610% !important;
  }
  .max-w-xl-610 {
    max-width: 610% !important;
  }
  .min-w-xl-610 {
    min-width: 610% !important;
  }
  .max-h-xl-610 {
    max-height: 610% !important;
  }
  .min-h-xl-610 {
    min-height: 610% !important;
  }
  .min-xl-vw-610 {
    min-width: 610vw !important;
  }
  .min-xl-vh-610 {
    min-height: 610vh !important;
  }
  .vw-xl-610 {
    width: 610vw !important;
  }
  .vh-xl-610 {
    height: 610vh !important;
  }
  .width-xl-610 {
    width: 610px !important;
  }
  .height-xl-610 {
    height: 610px !important;
  }
  .max-width-xl-610 {
    max-width: 610px !important;
  }
  .min-width-xl-610 {
    min-width: 610px !important;
  }
  .max-height-xl-610 {
    max-height: 610px !important;
  }
  .min-height-xl-610 {
    min-height: 610px !important;
  }
}
.w-610 {
  width: 610% !important;
}

.h-610 {
  height: 610% !important;
}

.max-w-610 {
  max-width: 610% !important;
}

.min-w-610 {
  min-width: 610% !important;
}

.max-h-610 {
  max-height: 610% !important;
}

.min-h-610 {
  min-height: 610% !important;
}

.min-vw-610 {
  min-width: 610vw !important;
}

.min-vh-610 {
  min-height: 610vh !important;
}

.vw-610 {
  width: 610vw !important;
}

.vh-610 {
  height: 610vh !important;
}

.width-610 {
  width: 610px !important;
}

.height-610 {
  height: 610px !important;
}

.max-width-610 {
  max-width: 610px !important;
}

.min-width-610 {
  min-width: 610px !important;
}

.max-height-610 {
  max-height: 610px !important;
}

.min-height-610 {
  min-height: 610px !important;
}

@media (max-width: 576px) {
  .w-sm-620 {
    width: 620% !important;
  }
  .h-sm-620 {
    height: 620% !important;
  }
  .max-w-sm-620 {
    max-width: 620% !important;
  }
  .min-w-sm-620 {
    min-width: 620% !important;
  }
  .max-h-sm-620 {
    max-height: 620% !important;
  }
  .min-h-sm-620 {
    min-height: 620% !important;
  }
  .min-sm-vw-620 {
    min-width: 620vw !important;
  }
  .min-sm-vh-620 {
    min-height: 620vh !important;
  }
  .vw-sm-620 {
    width: 620vw !important;
  }
  .vh-sm-620 {
    height: 620vh !important;
  }
  .width-sm-620 {
    width: 620px !important;
  }
  .height-sm-620 {
    height: 620px !important;
  }
  .max-width-sm-620 {
    max-width: 620 px !important;
  }
  .min-width-sm-620 {
    min-width: 620px !important;
  }
  .max-height-sm-620 {
    max-height: 620px !important;
  }
  .min-height-sm-620 {
    min-height: 620px !important;
  }
}
@media (max-width: 768px) {
  .w-md-620 {
    width: 620% !important;
  }
  .h-md-620 {
    height: 620% !important;
  }
  .max-w-md-620 {
    max-width: 620% !important;
  }
  .min-w-md-620 {
    min-width: 620% !important;
  }
  .max-h-md-620 {
    max-height: 620% !important;
  }
  .min-h-md-620 {
    min-height: 620% !important;
  }
  .min-md-vw-620 {
    min-width: 620vw !important;
  }
  .min-md-vh-620 {
    min-height: 620vh !important;
  }
  .vw-md-620 {
    width: 620vw !important;
  }
  .vh-md-620 {
    height: 620vh !important;
  }
  .width-md-620 {
    width: 620px !important;
  }
  .height-md-620 {
    height: 620px !important;
  }
  .max-width-md-620 {
    max-width: 620px !important;
  }
  .min-width-md-620 {
    min-width: 620px !important;
  }
  .max-height-md-620 {
    max-height: 620px !important;
  }
  .min-height-md-620 {
    min-height: 620px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-620 {
    width: 620% !important;
  }
  .h-lg-620 {
    height: 620% !important;
  }
  .max-w-lg-620 {
    max-width: 620% !important;
  }
  .min-w-lg-620 {
    min-width: 620% !important;
  }
  .max-h-lg-620 {
    max-height: 620% !important;
  }
  .min-h-lg-620 {
    min-height: 620% !important;
  }
  .min-lg-vw-620 {
    min-width: 620vw !important;
  }
  .min-lg-vh-620 {
    min-height: 620vh !important;
  }
  .vw-lg-620 {
    width: 620vw !important;
  }
  .vh-lg-620 {
    height: 620vh !important;
  }
  .width-lg-620 {
    width: 620px !important;
  }
  .height-lg-620 {
    height: 620px !important;
  }
  .max-width-lg-620 {
    max-width: 620px !important;
  }
  .min-width-lg-620 {
    min-width: 620px !important;
  }
  .max-height-lg-620 {
    max-height: 620px !important;
  }
  .min-height-lg-620 {
    min-height: 620px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-620 {
    width: 620% !important;
  }
  .h-xl-620 {
    height: 620% !important;
  }
  .max-w-xl-620 {
    max-width: 620% !important;
  }
  .min-w-xl-620 {
    min-width: 620% !important;
  }
  .max-h-xl-620 {
    max-height: 620% !important;
  }
  .min-h-xl-620 {
    min-height: 620% !important;
  }
  .min-xl-vw-620 {
    min-width: 620vw !important;
  }
  .min-xl-vh-620 {
    min-height: 620vh !important;
  }
  .vw-xl-620 {
    width: 620vw !important;
  }
  .vh-xl-620 {
    height: 620vh !important;
  }
  .width-xl-620 {
    width: 620px !important;
  }
  .height-xl-620 {
    height: 620px !important;
  }
  .max-width-xl-620 {
    max-width: 620px !important;
  }
  .min-width-xl-620 {
    min-width: 620px !important;
  }
  .max-height-xl-620 {
    max-height: 620px !important;
  }
  .min-height-xl-620 {
    min-height: 620px !important;
  }
}
.w-620 {
  width: 620% !important;
}

.h-620 {
  height: 620% !important;
}

.max-w-620 {
  max-width: 620% !important;
}

.min-w-620 {
  min-width: 620% !important;
}

.max-h-620 {
  max-height: 620% !important;
}

.min-h-620 {
  min-height: 620% !important;
}

.min-vw-620 {
  min-width: 620vw !important;
}

.min-vh-620 {
  min-height: 620vh !important;
}

.vw-620 {
  width: 620vw !important;
}

.vh-620 {
  height: 620vh !important;
}

.width-620 {
  width: 620px !important;
}

.height-620 {
  height: 620px !important;
}

.max-width-620 {
  max-width: 620px !important;
}

.min-width-620 {
  min-width: 620px !important;
}

.max-height-620 {
  max-height: 620px !important;
}

.min-height-620 {
  min-height: 620px !important;
}

@media (max-width: 576px) {
  .w-sm-630 {
    width: 630% !important;
  }
  .h-sm-630 {
    height: 630% !important;
  }
  .max-w-sm-630 {
    max-width: 630% !important;
  }
  .min-w-sm-630 {
    min-width: 630% !important;
  }
  .max-h-sm-630 {
    max-height: 630% !important;
  }
  .min-h-sm-630 {
    min-height: 630% !important;
  }
  .min-sm-vw-630 {
    min-width: 630vw !important;
  }
  .min-sm-vh-630 {
    min-height: 630vh !important;
  }
  .vw-sm-630 {
    width: 630vw !important;
  }
  .vh-sm-630 {
    height: 630vh !important;
  }
  .width-sm-630 {
    width: 630px !important;
  }
  .height-sm-630 {
    height: 630px !important;
  }
  .max-width-sm-630 {
    max-width: 630 px !important;
  }
  .min-width-sm-630 {
    min-width: 630px !important;
  }
  .max-height-sm-630 {
    max-height: 630px !important;
  }
  .min-height-sm-630 {
    min-height: 630px !important;
  }
}
@media (max-width: 768px) {
  .w-md-630 {
    width: 630% !important;
  }
  .h-md-630 {
    height: 630% !important;
  }
  .max-w-md-630 {
    max-width: 630% !important;
  }
  .min-w-md-630 {
    min-width: 630% !important;
  }
  .max-h-md-630 {
    max-height: 630% !important;
  }
  .min-h-md-630 {
    min-height: 630% !important;
  }
  .min-md-vw-630 {
    min-width: 630vw !important;
  }
  .min-md-vh-630 {
    min-height: 630vh !important;
  }
  .vw-md-630 {
    width: 630vw !important;
  }
  .vh-md-630 {
    height: 630vh !important;
  }
  .width-md-630 {
    width: 630px !important;
  }
  .height-md-630 {
    height: 630px !important;
  }
  .max-width-md-630 {
    max-width: 630px !important;
  }
  .min-width-md-630 {
    min-width: 630px !important;
  }
  .max-height-md-630 {
    max-height: 630px !important;
  }
  .min-height-md-630 {
    min-height: 630px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-630 {
    width: 630% !important;
  }
  .h-lg-630 {
    height: 630% !important;
  }
  .max-w-lg-630 {
    max-width: 630% !important;
  }
  .min-w-lg-630 {
    min-width: 630% !important;
  }
  .max-h-lg-630 {
    max-height: 630% !important;
  }
  .min-h-lg-630 {
    min-height: 630% !important;
  }
  .min-lg-vw-630 {
    min-width: 630vw !important;
  }
  .min-lg-vh-630 {
    min-height: 630vh !important;
  }
  .vw-lg-630 {
    width: 630vw !important;
  }
  .vh-lg-630 {
    height: 630vh !important;
  }
  .width-lg-630 {
    width: 630px !important;
  }
  .height-lg-630 {
    height: 630px !important;
  }
  .max-width-lg-630 {
    max-width: 630px !important;
  }
  .min-width-lg-630 {
    min-width: 630px !important;
  }
  .max-height-lg-630 {
    max-height: 630px !important;
  }
  .min-height-lg-630 {
    min-height: 630px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-630 {
    width: 630% !important;
  }
  .h-xl-630 {
    height: 630% !important;
  }
  .max-w-xl-630 {
    max-width: 630% !important;
  }
  .min-w-xl-630 {
    min-width: 630% !important;
  }
  .max-h-xl-630 {
    max-height: 630% !important;
  }
  .min-h-xl-630 {
    min-height: 630% !important;
  }
  .min-xl-vw-630 {
    min-width: 630vw !important;
  }
  .min-xl-vh-630 {
    min-height: 630vh !important;
  }
  .vw-xl-630 {
    width: 630vw !important;
  }
  .vh-xl-630 {
    height: 630vh !important;
  }
  .width-xl-630 {
    width: 630px !important;
  }
  .height-xl-630 {
    height: 630px !important;
  }
  .max-width-xl-630 {
    max-width: 630px !important;
  }
  .min-width-xl-630 {
    min-width: 630px !important;
  }
  .max-height-xl-630 {
    max-height: 630px !important;
  }
  .min-height-xl-630 {
    min-height: 630px !important;
  }
}
.w-630 {
  width: 630% !important;
}

.h-630 {
  height: 630% !important;
}

.max-w-630 {
  max-width: 630% !important;
}

.min-w-630 {
  min-width: 630% !important;
}

.max-h-630 {
  max-height: 630% !important;
}

.min-h-630 {
  min-height: 630% !important;
}

.min-vw-630 {
  min-width: 630vw !important;
}

.min-vh-630 {
  min-height: 630vh !important;
}

.vw-630 {
  width: 630vw !important;
}

.vh-630 {
  height: 630vh !important;
}

.width-630 {
  width: 630px !important;
}

.height-630 {
  height: 630px !important;
}

.max-width-630 {
  max-width: 630px !important;
}

.min-width-630 {
  min-width: 630px !important;
}

.max-height-630 {
  max-height: 630px !important;
}

.min-height-630 {
  min-height: 630px !important;
}

@media (max-width: 576px) {
  .w-sm-640 {
    width: 640% !important;
  }
  .h-sm-640 {
    height: 640% !important;
  }
  .max-w-sm-640 {
    max-width: 640% !important;
  }
  .min-w-sm-640 {
    min-width: 640% !important;
  }
  .max-h-sm-640 {
    max-height: 640% !important;
  }
  .min-h-sm-640 {
    min-height: 640% !important;
  }
  .min-sm-vw-640 {
    min-width: 640vw !important;
  }
  .min-sm-vh-640 {
    min-height: 640vh !important;
  }
  .vw-sm-640 {
    width: 640vw !important;
  }
  .vh-sm-640 {
    height: 640vh !important;
  }
  .width-sm-640 {
    width: 640px !important;
  }
  .height-sm-640 {
    height: 640px !important;
  }
  .max-width-sm-640 {
    max-width: 640 px !important;
  }
  .min-width-sm-640 {
    min-width: 640px !important;
  }
  .max-height-sm-640 {
    max-height: 640px !important;
  }
  .min-height-sm-640 {
    min-height: 640px !important;
  }
}
@media (max-width: 768px) {
  .w-md-640 {
    width: 640% !important;
  }
  .h-md-640 {
    height: 640% !important;
  }
  .max-w-md-640 {
    max-width: 640% !important;
  }
  .min-w-md-640 {
    min-width: 640% !important;
  }
  .max-h-md-640 {
    max-height: 640% !important;
  }
  .min-h-md-640 {
    min-height: 640% !important;
  }
  .min-md-vw-640 {
    min-width: 640vw !important;
  }
  .min-md-vh-640 {
    min-height: 640vh !important;
  }
  .vw-md-640 {
    width: 640vw !important;
  }
  .vh-md-640 {
    height: 640vh !important;
  }
  .width-md-640 {
    width: 640px !important;
  }
  .height-md-640 {
    height: 640px !important;
  }
  .max-width-md-640 {
    max-width: 640px !important;
  }
  .min-width-md-640 {
    min-width: 640px !important;
  }
  .max-height-md-640 {
    max-height: 640px !important;
  }
  .min-height-md-640 {
    min-height: 640px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-640 {
    width: 640% !important;
  }
  .h-lg-640 {
    height: 640% !important;
  }
  .max-w-lg-640 {
    max-width: 640% !important;
  }
  .min-w-lg-640 {
    min-width: 640% !important;
  }
  .max-h-lg-640 {
    max-height: 640% !important;
  }
  .min-h-lg-640 {
    min-height: 640% !important;
  }
  .min-lg-vw-640 {
    min-width: 640vw !important;
  }
  .min-lg-vh-640 {
    min-height: 640vh !important;
  }
  .vw-lg-640 {
    width: 640vw !important;
  }
  .vh-lg-640 {
    height: 640vh !important;
  }
  .width-lg-640 {
    width: 640px !important;
  }
  .height-lg-640 {
    height: 640px !important;
  }
  .max-width-lg-640 {
    max-width: 640px !important;
  }
  .min-width-lg-640 {
    min-width: 640px !important;
  }
  .max-height-lg-640 {
    max-height: 640px !important;
  }
  .min-height-lg-640 {
    min-height: 640px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-640 {
    width: 640% !important;
  }
  .h-xl-640 {
    height: 640% !important;
  }
  .max-w-xl-640 {
    max-width: 640% !important;
  }
  .min-w-xl-640 {
    min-width: 640% !important;
  }
  .max-h-xl-640 {
    max-height: 640% !important;
  }
  .min-h-xl-640 {
    min-height: 640% !important;
  }
  .min-xl-vw-640 {
    min-width: 640vw !important;
  }
  .min-xl-vh-640 {
    min-height: 640vh !important;
  }
  .vw-xl-640 {
    width: 640vw !important;
  }
  .vh-xl-640 {
    height: 640vh !important;
  }
  .width-xl-640 {
    width: 640px !important;
  }
  .height-xl-640 {
    height: 640px !important;
  }
  .max-width-xl-640 {
    max-width: 640px !important;
  }
  .min-width-xl-640 {
    min-width: 640px !important;
  }
  .max-height-xl-640 {
    max-height: 640px !important;
  }
  .min-height-xl-640 {
    min-height: 640px !important;
  }
}
.w-640 {
  width: 640% !important;
}

.h-640 {
  height: 640% !important;
}

.max-w-640 {
  max-width: 640% !important;
}

.min-w-640 {
  min-width: 640% !important;
}

.max-h-640 {
  max-height: 640% !important;
}

.min-h-640 {
  min-height: 640% !important;
}

.min-vw-640 {
  min-width: 640vw !important;
}

.min-vh-640 {
  min-height: 640vh !important;
}

.vw-640 {
  width: 640vw !important;
}

.vh-640 {
  height: 640vh !important;
}

.width-640 {
  width: 640px !important;
}

.height-640 {
  height: 640px !important;
}

.max-width-640 {
  max-width: 640px !important;
}

.min-width-640 {
  min-width: 640px !important;
}

.max-height-640 {
  max-height: 640px !important;
}

.min-height-640 {
  min-height: 640px !important;
}

@media (max-width: 576px) {
  .w-sm-650 {
    width: 650% !important;
  }
  .h-sm-650 {
    height: 650% !important;
  }
  .max-w-sm-650 {
    max-width: 650% !important;
  }
  .min-w-sm-650 {
    min-width: 650% !important;
  }
  .max-h-sm-650 {
    max-height: 650% !important;
  }
  .min-h-sm-650 {
    min-height: 650% !important;
  }
  .min-sm-vw-650 {
    min-width: 650vw !important;
  }
  .min-sm-vh-650 {
    min-height: 650vh !important;
  }
  .vw-sm-650 {
    width: 650vw !important;
  }
  .vh-sm-650 {
    height: 650vh !important;
  }
  .width-sm-650 {
    width: 650px !important;
  }
  .height-sm-650 {
    height: 650px !important;
  }
  .max-width-sm-650 {
    max-width: 650 px !important;
  }
  .min-width-sm-650 {
    min-width: 650px !important;
  }
  .max-height-sm-650 {
    max-height: 650px !important;
  }
  .min-height-sm-650 {
    min-height: 650px !important;
  }
}
@media (max-width: 768px) {
  .w-md-650 {
    width: 650% !important;
  }
  .h-md-650 {
    height: 650% !important;
  }
  .max-w-md-650 {
    max-width: 650% !important;
  }
  .min-w-md-650 {
    min-width: 650% !important;
  }
  .max-h-md-650 {
    max-height: 650% !important;
  }
  .min-h-md-650 {
    min-height: 650% !important;
  }
  .min-md-vw-650 {
    min-width: 650vw !important;
  }
  .min-md-vh-650 {
    min-height: 650vh !important;
  }
  .vw-md-650 {
    width: 650vw !important;
  }
  .vh-md-650 {
    height: 650vh !important;
  }
  .width-md-650 {
    width: 650px !important;
  }
  .height-md-650 {
    height: 650px !important;
  }
  .max-width-md-650 {
    max-width: 650px !important;
  }
  .min-width-md-650 {
    min-width: 650px !important;
  }
  .max-height-md-650 {
    max-height: 650px !important;
  }
  .min-height-md-650 {
    min-height: 650px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-650 {
    width: 650% !important;
  }
  .h-lg-650 {
    height: 650% !important;
  }
  .max-w-lg-650 {
    max-width: 650% !important;
  }
  .min-w-lg-650 {
    min-width: 650% !important;
  }
  .max-h-lg-650 {
    max-height: 650% !important;
  }
  .min-h-lg-650 {
    min-height: 650% !important;
  }
  .min-lg-vw-650 {
    min-width: 650vw !important;
  }
  .min-lg-vh-650 {
    min-height: 650vh !important;
  }
  .vw-lg-650 {
    width: 650vw !important;
  }
  .vh-lg-650 {
    height: 650vh !important;
  }
  .width-lg-650 {
    width: 650px !important;
  }
  .height-lg-650 {
    height: 650px !important;
  }
  .max-width-lg-650 {
    max-width: 650px !important;
  }
  .min-width-lg-650 {
    min-width: 650px !important;
  }
  .max-height-lg-650 {
    max-height: 650px !important;
  }
  .min-height-lg-650 {
    min-height: 650px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-650 {
    width: 650% !important;
  }
  .h-xl-650 {
    height: 650% !important;
  }
  .max-w-xl-650 {
    max-width: 650% !important;
  }
  .min-w-xl-650 {
    min-width: 650% !important;
  }
  .max-h-xl-650 {
    max-height: 650% !important;
  }
  .min-h-xl-650 {
    min-height: 650% !important;
  }
  .min-xl-vw-650 {
    min-width: 650vw !important;
  }
  .min-xl-vh-650 {
    min-height: 650vh !important;
  }
  .vw-xl-650 {
    width: 650vw !important;
  }
  .vh-xl-650 {
    height: 650vh !important;
  }
  .width-xl-650 {
    width: 650px !important;
  }
  .height-xl-650 {
    height: 650px !important;
  }
  .max-width-xl-650 {
    max-width: 650px !important;
  }
  .min-width-xl-650 {
    min-width: 650px !important;
  }
  .max-height-xl-650 {
    max-height: 650px !important;
  }
  .min-height-xl-650 {
    min-height: 650px !important;
  }
}
.w-650 {
  width: 650% !important;
}

.h-650 {
  height: 650% !important;
}

.max-w-650 {
  max-width: 650% !important;
}

.min-w-650 {
  min-width: 650% !important;
}

.max-h-650 {
  max-height: 650% !important;
}

.min-h-650 {
  min-height: 650% !important;
}

.min-vw-650 {
  min-width: 650vw !important;
}

.min-vh-650 {
  min-height: 650vh !important;
}

.vw-650 {
  width: 650vw !important;
}

.vh-650 {
  height: 650vh !important;
}

.width-650 {
  width: 650px !important;
}

.height-650 {
  height: 650px !important;
}

.max-width-650 {
  max-width: 650px !important;
}

.min-width-650 {
  min-width: 650px !important;
}

.max-height-650 {
  max-height: 650px !important;
}

.min-height-650 {
  min-height: 650px !important;
}

@media (max-width: 576px) {
  .w-sm-660 {
    width: 660% !important;
  }
  .h-sm-660 {
    height: 660% !important;
  }
  .max-w-sm-660 {
    max-width: 660% !important;
  }
  .min-w-sm-660 {
    min-width: 660% !important;
  }
  .max-h-sm-660 {
    max-height: 660% !important;
  }
  .min-h-sm-660 {
    min-height: 660% !important;
  }
  .min-sm-vw-660 {
    min-width: 660vw !important;
  }
  .min-sm-vh-660 {
    min-height: 660vh !important;
  }
  .vw-sm-660 {
    width: 660vw !important;
  }
  .vh-sm-660 {
    height: 660vh !important;
  }
  .width-sm-660 {
    width: 660px !important;
  }
  .height-sm-660 {
    height: 660px !important;
  }
  .max-width-sm-660 {
    max-width: 660 px !important;
  }
  .min-width-sm-660 {
    min-width: 660px !important;
  }
  .max-height-sm-660 {
    max-height: 660px !important;
  }
  .min-height-sm-660 {
    min-height: 660px !important;
  }
}
@media (max-width: 768px) {
  .w-md-660 {
    width: 660% !important;
  }
  .h-md-660 {
    height: 660% !important;
  }
  .max-w-md-660 {
    max-width: 660% !important;
  }
  .min-w-md-660 {
    min-width: 660% !important;
  }
  .max-h-md-660 {
    max-height: 660% !important;
  }
  .min-h-md-660 {
    min-height: 660% !important;
  }
  .min-md-vw-660 {
    min-width: 660vw !important;
  }
  .min-md-vh-660 {
    min-height: 660vh !important;
  }
  .vw-md-660 {
    width: 660vw !important;
  }
  .vh-md-660 {
    height: 660vh !important;
  }
  .width-md-660 {
    width: 660px !important;
  }
  .height-md-660 {
    height: 660px !important;
  }
  .max-width-md-660 {
    max-width: 660px !important;
  }
  .min-width-md-660 {
    min-width: 660px !important;
  }
  .max-height-md-660 {
    max-height: 660px !important;
  }
  .min-height-md-660 {
    min-height: 660px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-660 {
    width: 660% !important;
  }
  .h-lg-660 {
    height: 660% !important;
  }
  .max-w-lg-660 {
    max-width: 660% !important;
  }
  .min-w-lg-660 {
    min-width: 660% !important;
  }
  .max-h-lg-660 {
    max-height: 660% !important;
  }
  .min-h-lg-660 {
    min-height: 660% !important;
  }
  .min-lg-vw-660 {
    min-width: 660vw !important;
  }
  .min-lg-vh-660 {
    min-height: 660vh !important;
  }
  .vw-lg-660 {
    width: 660vw !important;
  }
  .vh-lg-660 {
    height: 660vh !important;
  }
  .width-lg-660 {
    width: 660px !important;
  }
  .height-lg-660 {
    height: 660px !important;
  }
  .max-width-lg-660 {
    max-width: 660px !important;
  }
  .min-width-lg-660 {
    min-width: 660px !important;
  }
  .max-height-lg-660 {
    max-height: 660px !important;
  }
  .min-height-lg-660 {
    min-height: 660px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-660 {
    width: 660% !important;
  }
  .h-xl-660 {
    height: 660% !important;
  }
  .max-w-xl-660 {
    max-width: 660% !important;
  }
  .min-w-xl-660 {
    min-width: 660% !important;
  }
  .max-h-xl-660 {
    max-height: 660% !important;
  }
  .min-h-xl-660 {
    min-height: 660% !important;
  }
  .min-xl-vw-660 {
    min-width: 660vw !important;
  }
  .min-xl-vh-660 {
    min-height: 660vh !important;
  }
  .vw-xl-660 {
    width: 660vw !important;
  }
  .vh-xl-660 {
    height: 660vh !important;
  }
  .width-xl-660 {
    width: 660px !important;
  }
  .height-xl-660 {
    height: 660px !important;
  }
  .max-width-xl-660 {
    max-width: 660px !important;
  }
  .min-width-xl-660 {
    min-width: 660px !important;
  }
  .max-height-xl-660 {
    max-height: 660px !important;
  }
  .min-height-xl-660 {
    min-height: 660px !important;
  }
}
.w-660 {
  width: 660% !important;
}

.h-660 {
  height: 660% !important;
}

.max-w-660 {
  max-width: 660% !important;
}

.min-w-660 {
  min-width: 660% !important;
}

.max-h-660 {
  max-height: 660% !important;
}

.min-h-660 {
  min-height: 660% !important;
}

.min-vw-660 {
  min-width: 660vw !important;
}

.min-vh-660 {
  min-height: 660vh !important;
}

.vw-660 {
  width: 660vw !important;
}

.vh-660 {
  height: 660vh !important;
}

.width-660 {
  width: 660px !important;
}

.height-660 {
  height: 660px !important;
}

.max-width-660 {
  max-width: 660px !important;
}

.min-width-660 {
  min-width: 660px !important;
}

.max-height-660 {
  max-height: 660px !important;
}

.min-height-660 {
  min-height: 660px !important;
}

@media (max-width: 576px) {
  .w-sm-670 {
    width: 670% !important;
  }
  .h-sm-670 {
    height: 670% !important;
  }
  .max-w-sm-670 {
    max-width: 670% !important;
  }
  .min-w-sm-670 {
    min-width: 670% !important;
  }
  .max-h-sm-670 {
    max-height: 670% !important;
  }
  .min-h-sm-670 {
    min-height: 670% !important;
  }
  .min-sm-vw-670 {
    min-width: 670vw !important;
  }
  .min-sm-vh-670 {
    min-height: 670vh !important;
  }
  .vw-sm-670 {
    width: 670vw !important;
  }
  .vh-sm-670 {
    height: 670vh !important;
  }
  .width-sm-670 {
    width: 670px !important;
  }
  .height-sm-670 {
    height: 670px !important;
  }
  .max-width-sm-670 {
    max-width: 670 px !important;
  }
  .min-width-sm-670 {
    min-width: 670px !important;
  }
  .max-height-sm-670 {
    max-height: 670px !important;
  }
  .min-height-sm-670 {
    min-height: 670px !important;
  }
}
@media (max-width: 768px) {
  .w-md-670 {
    width: 670% !important;
  }
  .h-md-670 {
    height: 670% !important;
  }
  .max-w-md-670 {
    max-width: 670% !important;
  }
  .min-w-md-670 {
    min-width: 670% !important;
  }
  .max-h-md-670 {
    max-height: 670% !important;
  }
  .min-h-md-670 {
    min-height: 670% !important;
  }
  .min-md-vw-670 {
    min-width: 670vw !important;
  }
  .min-md-vh-670 {
    min-height: 670vh !important;
  }
  .vw-md-670 {
    width: 670vw !important;
  }
  .vh-md-670 {
    height: 670vh !important;
  }
  .width-md-670 {
    width: 670px !important;
  }
  .height-md-670 {
    height: 670px !important;
  }
  .max-width-md-670 {
    max-width: 670px !important;
  }
  .min-width-md-670 {
    min-width: 670px !important;
  }
  .max-height-md-670 {
    max-height: 670px !important;
  }
  .min-height-md-670 {
    min-height: 670px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-670 {
    width: 670% !important;
  }
  .h-lg-670 {
    height: 670% !important;
  }
  .max-w-lg-670 {
    max-width: 670% !important;
  }
  .min-w-lg-670 {
    min-width: 670% !important;
  }
  .max-h-lg-670 {
    max-height: 670% !important;
  }
  .min-h-lg-670 {
    min-height: 670% !important;
  }
  .min-lg-vw-670 {
    min-width: 670vw !important;
  }
  .min-lg-vh-670 {
    min-height: 670vh !important;
  }
  .vw-lg-670 {
    width: 670vw !important;
  }
  .vh-lg-670 {
    height: 670vh !important;
  }
  .width-lg-670 {
    width: 670px !important;
  }
  .height-lg-670 {
    height: 670px !important;
  }
  .max-width-lg-670 {
    max-width: 670px !important;
  }
  .min-width-lg-670 {
    min-width: 670px !important;
  }
  .max-height-lg-670 {
    max-height: 670px !important;
  }
  .min-height-lg-670 {
    min-height: 670px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-670 {
    width: 670% !important;
  }
  .h-xl-670 {
    height: 670% !important;
  }
  .max-w-xl-670 {
    max-width: 670% !important;
  }
  .min-w-xl-670 {
    min-width: 670% !important;
  }
  .max-h-xl-670 {
    max-height: 670% !important;
  }
  .min-h-xl-670 {
    min-height: 670% !important;
  }
  .min-xl-vw-670 {
    min-width: 670vw !important;
  }
  .min-xl-vh-670 {
    min-height: 670vh !important;
  }
  .vw-xl-670 {
    width: 670vw !important;
  }
  .vh-xl-670 {
    height: 670vh !important;
  }
  .width-xl-670 {
    width: 670px !important;
  }
  .height-xl-670 {
    height: 670px !important;
  }
  .max-width-xl-670 {
    max-width: 670px !important;
  }
  .min-width-xl-670 {
    min-width: 670px !important;
  }
  .max-height-xl-670 {
    max-height: 670px !important;
  }
  .min-height-xl-670 {
    min-height: 670px !important;
  }
}
.w-670 {
  width: 670% !important;
}

.h-670 {
  height: 670% !important;
}

.max-w-670 {
  max-width: 670% !important;
}

.min-w-670 {
  min-width: 670% !important;
}

.max-h-670 {
  max-height: 670% !important;
}

.min-h-670 {
  min-height: 670% !important;
}

.min-vw-670 {
  min-width: 670vw !important;
}

.min-vh-670 {
  min-height: 670vh !important;
}

.vw-670 {
  width: 670vw !important;
}

.vh-670 {
  height: 670vh !important;
}

.width-670 {
  width: 670px !important;
}

.height-670 {
  height: 670px !important;
}

.max-width-670 {
  max-width: 670px !important;
}

.min-width-670 {
  min-width: 670px !important;
}

.max-height-670 {
  max-height: 670px !important;
}

.min-height-670 {
  min-height: 670px !important;
}

@media (max-width: 576px) {
  .w-sm-680 {
    width: 680% !important;
  }
  .h-sm-680 {
    height: 680% !important;
  }
  .max-w-sm-680 {
    max-width: 680% !important;
  }
  .min-w-sm-680 {
    min-width: 680% !important;
  }
  .max-h-sm-680 {
    max-height: 680% !important;
  }
  .min-h-sm-680 {
    min-height: 680% !important;
  }
  .min-sm-vw-680 {
    min-width: 680vw !important;
  }
  .min-sm-vh-680 {
    min-height: 680vh !important;
  }
  .vw-sm-680 {
    width: 680vw !important;
  }
  .vh-sm-680 {
    height: 680vh !important;
  }
  .width-sm-680 {
    width: 680px !important;
  }
  .height-sm-680 {
    height: 680px !important;
  }
  .max-width-sm-680 {
    max-width: 680 px !important;
  }
  .min-width-sm-680 {
    min-width: 680px !important;
  }
  .max-height-sm-680 {
    max-height: 680px !important;
  }
  .min-height-sm-680 {
    min-height: 680px !important;
  }
}
@media (max-width: 768px) {
  .w-md-680 {
    width: 680% !important;
  }
  .h-md-680 {
    height: 680% !important;
  }
  .max-w-md-680 {
    max-width: 680% !important;
  }
  .min-w-md-680 {
    min-width: 680% !important;
  }
  .max-h-md-680 {
    max-height: 680% !important;
  }
  .min-h-md-680 {
    min-height: 680% !important;
  }
  .min-md-vw-680 {
    min-width: 680vw !important;
  }
  .min-md-vh-680 {
    min-height: 680vh !important;
  }
  .vw-md-680 {
    width: 680vw !important;
  }
  .vh-md-680 {
    height: 680vh !important;
  }
  .width-md-680 {
    width: 680px !important;
  }
  .height-md-680 {
    height: 680px !important;
  }
  .max-width-md-680 {
    max-width: 680px !important;
  }
  .min-width-md-680 {
    min-width: 680px !important;
  }
  .max-height-md-680 {
    max-height: 680px !important;
  }
  .min-height-md-680 {
    min-height: 680px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-680 {
    width: 680% !important;
  }
  .h-lg-680 {
    height: 680% !important;
  }
  .max-w-lg-680 {
    max-width: 680% !important;
  }
  .min-w-lg-680 {
    min-width: 680% !important;
  }
  .max-h-lg-680 {
    max-height: 680% !important;
  }
  .min-h-lg-680 {
    min-height: 680% !important;
  }
  .min-lg-vw-680 {
    min-width: 680vw !important;
  }
  .min-lg-vh-680 {
    min-height: 680vh !important;
  }
  .vw-lg-680 {
    width: 680vw !important;
  }
  .vh-lg-680 {
    height: 680vh !important;
  }
  .width-lg-680 {
    width: 680px !important;
  }
  .height-lg-680 {
    height: 680px !important;
  }
  .max-width-lg-680 {
    max-width: 680px !important;
  }
  .min-width-lg-680 {
    min-width: 680px !important;
  }
  .max-height-lg-680 {
    max-height: 680px !important;
  }
  .min-height-lg-680 {
    min-height: 680px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-680 {
    width: 680% !important;
  }
  .h-xl-680 {
    height: 680% !important;
  }
  .max-w-xl-680 {
    max-width: 680% !important;
  }
  .min-w-xl-680 {
    min-width: 680% !important;
  }
  .max-h-xl-680 {
    max-height: 680% !important;
  }
  .min-h-xl-680 {
    min-height: 680% !important;
  }
  .min-xl-vw-680 {
    min-width: 680vw !important;
  }
  .min-xl-vh-680 {
    min-height: 680vh !important;
  }
  .vw-xl-680 {
    width: 680vw !important;
  }
  .vh-xl-680 {
    height: 680vh !important;
  }
  .width-xl-680 {
    width: 680px !important;
  }
  .height-xl-680 {
    height: 680px !important;
  }
  .max-width-xl-680 {
    max-width: 680px !important;
  }
  .min-width-xl-680 {
    min-width: 680px !important;
  }
  .max-height-xl-680 {
    max-height: 680px !important;
  }
  .min-height-xl-680 {
    min-height: 680px !important;
  }
}
.w-680 {
  width: 680% !important;
}

.h-680 {
  height: 680% !important;
}

.max-w-680 {
  max-width: 680% !important;
}

.min-w-680 {
  min-width: 680% !important;
}

.max-h-680 {
  max-height: 680% !important;
}

.min-h-680 {
  min-height: 680% !important;
}

.min-vw-680 {
  min-width: 680vw !important;
}

.min-vh-680 {
  min-height: 680vh !important;
}

.vw-680 {
  width: 680vw !important;
}

.vh-680 {
  height: 680vh !important;
}

.width-680 {
  width: 680px !important;
}

.height-680 {
  height: 680px !important;
}

.max-width-680 {
  max-width: 680px !important;
}

.min-width-680 {
  min-width: 680px !important;
}

.max-height-680 {
  max-height: 680px !important;
}

.min-height-680 {
  min-height: 680px !important;
}

@media (max-width: 576px) {
  .w-sm-690 {
    width: 690% !important;
  }
  .h-sm-690 {
    height: 690% !important;
  }
  .max-w-sm-690 {
    max-width: 690% !important;
  }
  .min-w-sm-690 {
    min-width: 690% !important;
  }
  .max-h-sm-690 {
    max-height: 690% !important;
  }
  .min-h-sm-690 {
    min-height: 690% !important;
  }
  .min-sm-vw-690 {
    min-width: 690vw !important;
  }
  .min-sm-vh-690 {
    min-height: 690vh !important;
  }
  .vw-sm-690 {
    width: 690vw !important;
  }
  .vh-sm-690 {
    height: 690vh !important;
  }
  .width-sm-690 {
    width: 690px !important;
  }
  .height-sm-690 {
    height: 690px !important;
  }
  .max-width-sm-690 {
    max-width: 690 px !important;
  }
  .min-width-sm-690 {
    min-width: 690px !important;
  }
  .max-height-sm-690 {
    max-height: 690px !important;
  }
  .min-height-sm-690 {
    min-height: 690px !important;
  }
}
@media (max-width: 768px) {
  .w-md-690 {
    width: 690% !important;
  }
  .h-md-690 {
    height: 690% !important;
  }
  .max-w-md-690 {
    max-width: 690% !important;
  }
  .min-w-md-690 {
    min-width: 690% !important;
  }
  .max-h-md-690 {
    max-height: 690% !important;
  }
  .min-h-md-690 {
    min-height: 690% !important;
  }
  .min-md-vw-690 {
    min-width: 690vw !important;
  }
  .min-md-vh-690 {
    min-height: 690vh !important;
  }
  .vw-md-690 {
    width: 690vw !important;
  }
  .vh-md-690 {
    height: 690vh !important;
  }
  .width-md-690 {
    width: 690px !important;
  }
  .height-md-690 {
    height: 690px !important;
  }
  .max-width-md-690 {
    max-width: 690px !important;
  }
  .min-width-md-690 {
    min-width: 690px !important;
  }
  .max-height-md-690 {
    max-height: 690px !important;
  }
  .min-height-md-690 {
    min-height: 690px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-690 {
    width: 690% !important;
  }
  .h-lg-690 {
    height: 690% !important;
  }
  .max-w-lg-690 {
    max-width: 690% !important;
  }
  .min-w-lg-690 {
    min-width: 690% !important;
  }
  .max-h-lg-690 {
    max-height: 690% !important;
  }
  .min-h-lg-690 {
    min-height: 690% !important;
  }
  .min-lg-vw-690 {
    min-width: 690vw !important;
  }
  .min-lg-vh-690 {
    min-height: 690vh !important;
  }
  .vw-lg-690 {
    width: 690vw !important;
  }
  .vh-lg-690 {
    height: 690vh !important;
  }
  .width-lg-690 {
    width: 690px !important;
  }
  .height-lg-690 {
    height: 690px !important;
  }
  .max-width-lg-690 {
    max-width: 690px !important;
  }
  .min-width-lg-690 {
    min-width: 690px !important;
  }
  .max-height-lg-690 {
    max-height: 690px !important;
  }
  .min-height-lg-690 {
    min-height: 690px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-690 {
    width: 690% !important;
  }
  .h-xl-690 {
    height: 690% !important;
  }
  .max-w-xl-690 {
    max-width: 690% !important;
  }
  .min-w-xl-690 {
    min-width: 690% !important;
  }
  .max-h-xl-690 {
    max-height: 690% !important;
  }
  .min-h-xl-690 {
    min-height: 690% !important;
  }
  .min-xl-vw-690 {
    min-width: 690vw !important;
  }
  .min-xl-vh-690 {
    min-height: 690vh !important;
  }
  .vw-xl-690 {
    width: 690vw !important;
  }
  .vh-xl-690 {
    height: 690vh !important;
  }
  .width-xl-690 {
    width: 690px !important;
  }
  .height-xl-690 {
    height: 690px !important;
  }
  .max-width-xl-690 {
    max-width: 690px !important;
  }
  .min-width-xl-690 {
    min-width: 690px !important;
  }
  .max-height-xl-690 {
    max-height: 690px !important;
  }
  .min-height-xl-690 {
    min-height: 690px !important;
  }
}
.w-690 {
  width: 690% !important;
}

.h-690 {
  height: 690% !important;
}

.max-w-690 {
  max-width: 690% !important;
}

.min-w-690 {
  min-width: 690% !important;
}

.max-h-690 {
  max-height: 690% !important;
}

.min-h-690 {
  min-height: 690% !important;
}

.min-vw-690 {
  min-width: 690vw !important;
}

.min-vh-690 {
  min-height: 690vh !important;
}

.vw-690 {
  width: 690vw !important;
}

.vh-690 {
  height: 690vh !important;
}

.width-690 {
  width: 690px !important;
}

.height-690 {
  height: 690px !important;
}

.max-width-690 {
  max-width: 690px !important;
}

.min-width-690 {
  min-width: 690px !important;
}

.max-height-690 {
  max-height: 690px !important;
}

.min-height-690 {
  min-height: 690px !important;
}

@media (max-width: 576px) {
  .w-sm-700 {
    width: 700% !important;
  }
  .h-sm-700 {
    height: 700% !important;
  }
  .max-w-sm-700 {
    max-width: 700% !important;
  }
  .min-w-sm-700 {
    min-width: 700% !important;
  }
  .max-h-sm-700 {
    max-height: 700% !important;
  }
  .min-h-sm-700 {
    min-height: 700% !important;
  }
  .min-sm-vw-700 {
    min-width: 700vw !important;
  }
  .min-sm-vh-700 {
    min-height: 700vh !important;
  }
  .vw-sm-700 {
    width: 700vw !important;
  }
  .vh-sm-700 {
    height: 700vh !important;
  }
  .width-sm-700 {
    width: 700px !important;
  }
  .height-sm-700 {
    height: 700px !important;
  }
  .max-width-sm-700 {
    max-width: 700 px !important;
  }
  .min-width-sm-700 {
    min-width: 700px !important;
  }
  .max-height-sm-700 {
    max-height: 700px !important;
  }
  .min-height-sm-700 {
    min-height: 700px !important;
  }
}
@media (max-width: 768px) {
  .w-md-700 {
    width: 700% !important;
  }
  .h-md-700 {
    height: 700% !important;
  }
  .max-w-md-700 {
    max-width: 700% !important;
  }
  .min-w-md-700 {
    min-width: 700% !important;
  }
  .max-h-md-700 {
    max-height: 700% !important;
  }
  .min-h-md-700 {
    min-height: 700% !important;
  }
  .min-md-vw-700 {
    min-width: 700vw !important;
  }
  .min-md-vh-700 {
    min-height: 700vh !important;
  }
  .vw-md-700 {
    width: 700vw !important;
  }
  .vh-md-700 {
    height: 700vh !important;
  }
  .width-md-700 {
    width: 700px !important;
  }
  .height-md-700 {
    height: 700px !important;
  }
  .max-width-md-700 {
    max-width: 700px !important;
  }
  .min-width-md-700 {
    min-width: 700px !important;
  }
  .max-height-md-700 {
    max-height: 700px !important;
  }
  .min-height-md-700 {
    min-height: 700px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-700 {
    width: 700% !important;
  }
  .h-lg-700 {
    height: 700% !important;
  }
  .max-w-lg-700 {
    max-width: 700% !important;
  }
  .min-w-lg-700 {
    min-width: 700% !important;
  }
  .max-h-lg-700 {
    max-height: 700% !important;
  }
  .min-h-lg-700 {
    min-height: 700% !important;
  }
  .min-lg-vw-700 {
    min-width: 700vw !important;
  }
  .min-lg-vh-700 {
    min-height: 700vh !important;
  }
  .vw-lg-700 {
    width: 700vw !important;
  }
  .vh-lg-700 {
    height: 700vh !important;
  }
  .width-lg-700 {
    width: 700px !important;
  }
  .height-lg-700 {
    height: 700px !important;
  }
  .max-width-lg-700 {
    max-width: 700px !important;
  }
  .min-width-lg-700 {
    min-width: 700px !important;
  }
  .max-height-lg-700 {
    max-height: 700px !important;
  }
  .min-height-lg-700 {
    min-height: 700px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-700 {
    width: 700% !important;
  }
  .h-xl-700 {
    height: 700% !important;
  }
  .max-w-xl-700 {
    max-width: 700% !important;
  }
  .min-w-xl-700 {
    min-width: 700% !important;
  }
  .max-h-xl-700 {
    max-height: 700% !important;
  }
  .min-h-xl-700 {
    min-height: 700% !important;
  }
  .min-xl-vw-700 {
    min-width: 700vw !important;
  }
  .min-xl-vh-700 {
    min-height: 700vh !important;
  }
  .vw-xl-700 {
    width: 700vw !important;
  }
  .vh-xl-700 {
    height: 700vh !important;
  }
  .width-xl-700 {
    width: 700px !important;
  }
  .height-xl-700 {
    height: 700px !important;
  }
  .max-width-xl-700 {
    max-width: 700px !important;
  }
  .min-width-xl-700 {
    min-width: 700px !important;
  }
  .max-height-xl-700 {
    max-height: 700px !important;
  }
  .min-height-xl-700 {
    min-height: 700px !important;
  }
}
.w-700 {
  width: 700% !important;
}

.h-700 {
  height: 700% !important;
}

.max-w-700 {
  max-width: 700% !important;
}

.min-w-700 {
  min-width: 700% !important;
}

.max-h-700 {
  max-height: 700% !important;
}

.min-h-700 {
  min-height: 700% !important;
}

.min-vw-700 {
  min-width: 700vw !important;
}

.min-vh-700 {
  min-height: 700vh !important;
}

.vw-700 {
  width: 700vw !important;
}

.vh-700 {
  height: 700vh !important;
}

.width-700 {
  width: 700px !important;
}

.height-700 {
  height: 700px !important;
}

.max-width-700 {
  max-width: 700px !important;
}

.min-width-700 {
  min-width: 700px !important;
}

.max-height-700 {
  max-height: 700px !important;
}

.min-height-700 {
  min-height: 700px !important;
}

@media (max-width: 576px) {
  .w-sm-710 {
    width: 710% !important;
  }
  .h-sm-710 {
    height: 710% !important;
  }
  .max-w-sm-710 {
    max-width: 710% !important;
  }
  .min-w-sm-710 {
    min-width: 710% !important;
  }
  .max-h-sm-710 {
    max-height: 710% !important;
  }
  .min-h-sm-710 {
    min-height: 710% !important;
  }
  .min-sm-vw-710 {
    min-width: 710vw !important;
  }
  .min-sm-vh-710 {
    min-height: 710vh !important;
  }
  .vw-sm-710 {
    width: 710vw !important;
  }
  .vh-sm-710 {
    height: 710vh !important;
  }
  .width-sm-710 {
    width: 710px !important;
  }
  .height-sm-710 {
    height: 710px !important;
  }
  .max-width-sm-710 {
    max-width: 710 px !important;
  }
  .min-width-sm-710 {
    min-width: 710px !important;
  }
  .max-height-sm-710 {
    max-height: 710px !important;
  }
  .min-height-sm-710 {
    min-height: 710px !important;
  }
}
@media (max-width: 768px) {
  .w-md-710 {
    width: 710% !important;
  }
  .h-md-710 {
    height: 710% !important;
  }
  .max-w-md-710 {
    max-width: 710% !important;
  }
  .min-w-md-710 {
    min-width: 710% !important;
  }
  .max-h-md-710 {
    max-height: 710% !important;
  }
  .min-h-md-710 {
    min-height: 710% !important;
  }
  .min-md-vw-710 {
    min-width: 710vw !important;
  }
  .min-md-vh-710 {
    min-height: 710vh !important;
  }
  .vw-md-710 {
    width: 710vw !important;
  }
  .vh-md-710 {
    height: 710vh !important;
  }
  .width-md-710 {
    width: 710px !important;
  }
  .height-md-710 {
    height: 710px !important;
  }
  .max-width-md-710 {
    max-width: 710px !important;
  }
  .min-width-md-710 {
    min-width: 710px !important;
  }
  .max-height-md-710 {
    max-height: 710px !important;
  }
  .min-height-md-710 {
    min-height: 710px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-710 {
    width: 710% !important;
  }
  .h-lg-710 {
    height: 710% !important;
  }
  .max-w-lg-710 {
    max-width: 710% !important;
  }
  .min-w-lg-710 {
    min-width: 710% !important;
  }
  .max-h-lg-710 {
    max-height: 710% !important;
  }
  .min-h-lg-710 {
    min-height: 710% !important;
  }
  .min-lg-vw-710 {
    min-width: 710vw !important;
  }
  .min-lg-vh-710 {
    min-height: 710vh !important;
  }
  .vw-lg-710 {
    width: 710vw !important;
  }
  .vh-lg-710 {
    height: 710vh !important;
  }
  .width-lg-710 {
    width: 710px !important;
  }
  .height-lg-710 {
    height: 710px !important;
  }
  .max-width-lg-710 {
    max-width: 710px !important;
  }
  .min-width-lg-710 {
    min-width: 710px !important;
  }
  .max-height-lg-710 {
    max-height: 710px !important;
  }
  .min-height-lg-710 {
    min-height: 710px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-710 {
    width: 710% !important;
  }
  .h-xl-710 {
    height: 710% !important;
  }
  .max-w-xl-710 {
    max-width: 710% !important;
  }
  .min-w-xl-710 {
    min-width: 710% !important;
  }
  .max-h-xl-710 {
    max-height: 710% !important;
  }
  .min-h-xl-710 {
    min-height: 710% !important;
  }
  .min-xl-vw-710 {
    min-width: 710vw !important;
  }
  .min-xl-vh-710 {
    min-height: 710vh !important;
  }
  .vw-xl-710 {
    width: 710vw !important;
  }
  .vh-xl-710 {
    height: 710vh !important;
  }
  .width-xl-710 {
    width: 710px !important;
  }
  .height-xl-710 {
    height: 710px !important;
  }
  .max-width-xl-710 {
    max-width: 710px !important;
  }
  .min-width-xl-710 {
    min-width: 710px !important;
  }
  .max-height-xl-710 {
    max-height: 710px !important;
  }
  .min-height-xl-710 {
    min-height: 710px !important;
  }
}
.w-710 {
  width: 710% !important;
}

.h-710 {
  height: 710% !important;
}

.max-w-710 {
  max-width: 710% !important;
}

.min-w-710 {
  min-width: 710% !important;
}

.max-h-710 {
  max-height: 710% !important;
}

.min-h-710 {
  min-height: 710% !important;
}

.min-vw-710 {
  min-width: 710vw !important;
}

.min-vh-710 {
  min-height: 710vh !important;
}

.vw-710 {
  width: 710vw !important;
}

.vh-710 {
  height: 710vh !important;
}

.width-710 {
  width: 710px !important;
}

.height-710 {
  height: 710px !important;
}

.max-width-710 {
  max-width: 710px !important;
}

.min-width-710 {
  min-width: 710px !important;
}

.max-height-710 {
  max-height: 710px !important;
}

.min-height-710 {
  min-height: 710px !important;
}

@media (max-width: 576px) {
  .w-sm-720 {
    width: 720% !important;
  }
  .h-sm-720 {
    height: 720% !important;
  }
  .max-w-sm-720 {
    max-width: 720% !important;
  }
  .min-w-sm-720 {
    min-width: 720% !important;
  }
  .max-h-sm-720 {
    max-height: 720% !important;
  }
  .min-h-sm-720 {
    min-height: 720% !important;
  }
  .min-sm-vw-720 {
    min-width: 720vw !important;
  }
  .min-sm-vh-720 {
    min-height: 720vh !important;
  }
  .vw-sm-720 {
    width: 720vw !important;
  }
  .vh-sm-720 {
    height: 720vh !important;
  }
  .width-sm-720 {
    width: 720px !important;
  }
  .height-sm-720 {
    height: 720px !important;
  }
  .max-width-sm-720 {
    max-width: 720 px !important;
  }
  .min-width-sm-720 {
    min-width: 720px !important;
  }
  .max-height-sm-720 {
    max-height: 720px !important;
  }
  .min-height-sm-720 {
    min-height: 720px !important;
  }
}
@media (max-width: 768px) {
  .w-md-720 {
    width: 720% !important;
  }
  .h-md-720 {
    height: 720% !important;
  }
  .max-w-md-720 {
    max-width: 720% !important;
  }
  .min-w-md-720 {
    min-width: 720% !important;
  }
  .max-h-md-720 {
    max-height: 720% !important;
  }
  .min-h-md-720 {
    min-height: 720% !important;
  }
  .min-md-vw-720 {
    min-width: 720vw !important;
  }
  .min-md-vh-720 {
    min-height: 720vh !important;
  }
  .vw-md-720 {
    width: 720vw !important;
  }
  .vh-md-720 {
    height: 720vh !important;
  }
  .width-md-720 {
    width: 720px !important;
  }
  .height-md-720 {
    height: 720px !important;
  }
  .max-width-md-720 {
    max-width: 720px !important;
  }
  .min-width-md-720 {
    min-width: 720px !important;
  }
  .max-height-md-720 {
    max-height: 720px !important;
  }
  .min-height-md-720 {
    min-height: 720px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-720 {
    width: 720% !important;
  }
  .h-lg-720 {
    height: 720% !important;
  }
  .max-w-lg-720 {
    max-width: 720% !important;
  }
  .min-w-lg-720 {
    min-width: 720% !important;
  }
  .max-h-lg-720 {
    max-height: 720% !important;
  }
  .min-h-lg-720 {
    min-height: 720% !important;
  }
  .min-lg-vw-720 {
    min-width: 720vw !important;
  }
  .min-lg-vh-720 {
    min-height: 720vh !important;
  }
  .vw-lg-720 {
    width: 720vw !important;
  }
  .vh-lg-720 {
    height: 720vh !important;
  }
  .width-lg-720 {
    width: 720px !important;
  }
  .height-lg-720 {
    height: 720px !important;
  }
  .max-width-lg-720 {
    max-width: 720px !important;
  }
  .min-width-lg-720 {
    min-width: 720px !important;
  }
  .max-height-lg-720 {
    max-height: 720px !important;
  }
  .min-height-lg-720 {
    min-height: 720px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-720 {
    width: 720% !important;
  }
  .h-xl-720 {
    height: 720% !important;
  }
  .max-w-xl-720 {
    max-width: 720% !important;
  }
  .min-w-xl-720 {
    min-width: 720% !important;
  }
  .max-h-xl-720 {
    max-height: 720% !important;
  }
  .min-h-xl-720 {
    min-height: 720% !important;
  }
  .min-xl-vw-720 {
    min-width: 720vw !important;
  }
  .min-xl-vh-720 {
    min-height: 720vh !important;
  }
  .vw-xl-720 {
    width: 720vw !important;
  }
  .vh-xl-720 {
    height: 720vh !important;
  }
  .width-xl-720 {
    width: 720px !important;
  }
  .height-xl-720 {
    height: 720px !important;
  }
  .max-width-xl-720 {
    max-width: 720px !important;
  }
  .min-width-xl-720 {
    min-width: 720px !important;
  }
  .max-height-xl-720 {
    max-height: 720px !important;
  }
  .min-height-xl-720 {
    min-height: 720px !important;
  }
}
.w-720 {
  width: 720% !important;
}

.h-720 {
  height: 720% !important;
}

.max-w-720 {
  max-width: 720% !important;
}

.min-w-720 {
  min-width: 720% !important;
}

.max-h-720 {
  max-height: 720% !important;
}

.min-h-720 {
  min-height: 720% !important;
}

.min-vw-720 {
  min-width: 720vw !important;
}

.min-vh-720 {
  min-height: 720vh !important;
}

.vw-720 {
  width: 720vw !important;
}

.vh-720 {
  height: 720vh !important;
}

.width-720 {
  width: 720px !important;
}

.height-720 {
  height: 720px !important;
}

.max-width-720 {
  max-width: 720px !important;
}

.min-width-720 {
  min-width: 720px !important;
}

.max-height-720 {
  max-height: 720px !important;
}

.min-height-720 {
  min-height: 720px !important;
}

@media (max-width: 576px) {
  .w-sm-730 {
    width: 730% !important;
  }
  .h-sm-730 {
    height: 730% !important;
  }
  .max-w-sm-730 {
    max-width: 730% !important;
  }
  .min-w-sm-730 {
    min-width: 730% !important;
  }
  .max-h-sm-730 {
    max-height: 730% !important;
  }
  .min-h-sm-730 {
    min-height: 730% !important;
  }
  .min-sm-vw-730 {
    min-width: 730vw !important;
  }
  .min-sm-vh-730 {
    min-height: 730vh !important;
  }
  .vw-sm-730 {
    width: 730vw !important;
  }
  .vh-sm-730 {
    height: 730vh !important;
  }
  .width-sm-730 {
    width: 730px !important;
  }
  .height-sm-730 {
    height: 730px !important;
  }
  .max-width-sm-730 {
    max-width: 730 px !important;
  }
  .min-width-sm-730 {
    min-width: 730px !important;
  }
  .max-height-sm-730 {
    max-height: 730px !important;
  }
  .min-height-sm-730 {
    min-height: 730px !important;
  }
}
@media (max-width: 768px) {
  .w-md-730 {
    width: 730% !important;
  }
  .h-md-730 {
    height: 730% !important;
  }
  .max-w-md-730 {
    max-width: 730% !important;
  }
  .min-w-md-730 {
    min-width: 730% !important;
  }
  .max-h-md-730 {
    max-height: 730% !important;
  }
  .min-h-md-730 {
    min-height: 730% !important;
  }
  .min-md-vw-730 {
    min-width: 730vw !important;
  }
  .min-md-vh-730 {
    min-height: 730vh !important;
  }
  .vw-md-730 {
    width: 730vw !important;
  }
  .vh-md-730 {
    height: 730vh !important;
  }
  .width-md-730 {
    width: 730px !important;
  }
  .height-md-730 {
    height: 730px !important;
  }
  .max-width-md-730 {
    max-width: 730px !important;
  }
  .min-width-md-730 {
    min-width: 730px !important;
  }
  .max-height-md-730 {
    max-height: 730px !important;
  }
  .min-height-md-730 {
    min-height: 730px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-730 {
    width: 730% !important;
  }
  .h-lg-730 {
    height: 730% !important;
  }
  .max-w-lg-730 {
    max-width: 730% !important;
  }
  .min-w-lg-730 {
    min-width: 730% !important;
  }
  .max-h-lg-730 {
    max-height: 730% !important;
  }
  .min-h-lg-730 {
    min-height: 730% !important;
  }
  .min-lg-vw-730 {
    min-width: 730vw !important;
  }
  .min-lg-vh-730 {
    min-height: 730vh !important;
  }
  .vw-lg-730 {
    width: 730vw !important;
  }
  .vh-lg-730 {
    height: 730vh !important;
  }
  .width-lg-730 {
    width: 730px !important;
  }
  .height-lg-730 {
    height: 730px !important;
  }
  .max-width-lg-730 {
    max-width: 730px !important;
  }
  .min-width-lg-730 {
    min-width: 730px !important;
  }
  .max-height-lg-730 {
    max-height: 730px !important;
  }
  .min-height-lg-730 {
    min-height: 730px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-730 {
    width: 730% !important;
  }
  .h-xl-730 {
    height: 730% !important;
  }
  .max-w-xl-730 {
    max-width: 730% !important;
  }
  .min-w-xl-730 {
    min-width: 730% !important;
  }
  .max-h-xl-730 {
    max-height: 730% !important;
  }
  .min-h-xl-730 {
    min-height: 730% !important;
  }
  .min-xl-vw-730 {
    min-width: 730vw !important;
  }
  .min-xl-vh-730 {
    min-height: 730vh !important;
  }
  .vw-xl-730 {
    width: 730vw !important;
  }
  .vh-xl-730 {
    height: 730vh !important;
  }
  .width-xl-730 {
    width: 730px !important;
  }
  .height-xl-730 {
    height: 730px !important;
  }
  .max-width-xl-730 {
    max-width: 730px !important;
  }
  .min-width-xl-730 {
    min-width: 730px !important;
  }
  .max-height-xl-730 {
    max-height: 730px !important;
  }
  .min-height-xl-730 {
    min-height: 730px !important;
  }
}
.w-730 {
  width: 730% !important;
}

.h-730 {
  height: 730% !important;
}

.max-w-730 {
  max-width: 730% !important;
}

.min-w-730 {
  min-width: 730% !important;
}

.max-h-730 {
  max-height: 730% !important;
}

.min-h-730 {
  min-height: 730% !important;
}

.min-vw-730 {
  min-width: 730vw !important;
}

.min-vh-730 {
  min-height: 730vh !important;
}

.vw-730 {
  width: 730vw !important;
}

.vh-730 {
  height: 730vh !important;
}

.width-730 {
  width: 730px !important;
}

.height-730 {
  height: 730px !important;
}

.max-width-730 {
  max-width: 730px !important;
}

.min-width-730 {
  min-width: 730px !important;
}

.max-height-730 {
  max-height: 730px !important;
}

.min-height-730 {
  min-height: 730px !important;
}

@media (max-width: 576px) {
  .w-sm-740 {
    width: 740% !important;
  }
  .h-sm-740 {
    height: 740% !important;
  }
  .max-w-sm-740 {
    max-width: 740% !important;
  }
  .min-w-sm-740 {
    min-width: 740% !important;
  }
  .max-h-sm-740 {
    max-height: 740% !important;
  }
  .min-h-sm-740 {
    min-height: 740% !important;
  }
  .min-sm-vw-740 {
    min-width: 740vw !important;
  }
  .min-sm-vh-740 {
    min-height: 740vh !important;
  }
  .vw-sm-740 {
    width: 740vw !important;
  }
  .vh-sm-740 {
    height: 740vh !important;
  }
  .width-sm-740 {
    width: 740px !important;
  }
  .height-sm-740 {
    height: 740px !important;
  }
  .max-width-sm-740 {
    max-width: 740 px !important;
  }
  .min-width-sm-740 {
    min-width: 740px !important;
  }
  .max-height-sm-740 {
    max-height: 740px !important;
  }
  .min-height-sm-740 {
    min-height: 740px !important;
  }
}
@media (max-width: 768px) {
  .w-md-740 {
    width: 740% !important;
  }
  .h-md-740 {
    height: 740% !important;
  }
  .max-w-md-740 {
    max-width: 740% !important;
  }
  .min-w-md-740 {
    min-width: 740% !important;
  }
  .max-h-md-740 {
    max-height: 740% !important;
  }
  .min-h-md-740 {
    min-height: 740% !important;
  }
  .min-md-vw-740 {
    min-width: 740vw !important;
  }
  .min-md-vh-740 {
    min-height: 740vh !important;
  }
  .vw-md-740 {
    width: 740vw !important;
  }
  .vh-md-740 {
    height: 740vh !important;
  }
  .width-md-740 {
    width: 740px !important;
  }
  .height-md-740 {
    height: 740px !important;
  }
  .max-width-md-740 {
    max-width: 740px !important;
  }
  .min-width-md-740 {
    min-width: 740px !important;
  }
  .max-height-md-740 {
    max-height: 740px !important;
  }
  .min-height-md-740 {
    min-height: 740px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-740 {
    width: 740% !important;
  }
  .h-lg-740 {
    height: 740% !important;
  }
  .max-w-lg-740 {
    max-width: 740% !important;
  }
  .min-w-lg-740 {
    min-width: 740% !important;
  }
  .max-h-lg-740 {
    max-height: 740% !important;
  }
  .min-h-lg-740 {
    min-height: 740% !important;
  }
  .min-lg-vw-740 {
    min-width: 740vw !important;
  }
  .min-lg-vh-740 {
    min-height: 740vh !important;
  }
  .vw-lg-740 {
    width: 740vw !important;
  }
  .vh-lg-740 {
    height: 740vh !important;
  }
  .width-lg-740 {
    width: 740px !important;
  }
  .height-lg-740 {
    height: 740px !important;
  }
  .max-width-lg-740 {
    max-width: 740px !important;
  }
  .min-width-lg-740 {
    min-width: 740px !important;
  }
  .max-height-lg-740 {
    max-height: 740px !important;
  }
  .min-height-lg-740 {
    min-height: 740px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-740 {
    width: 740% !important;
  }
  .h-xl-740 {
    height: 740% !important;
  }
  .max-w-xl-740 {
    max-width: 740% !important;
  }
  .min-w-xl-740 {
    min-width: 740% !important;
  }
  .max-h-xl-740 {
    max-height: 740% !important;
  }
  .min-h-xl-740 {
    min-height: 740% !important;
  }
  .min-xl-vw-740 {
    min-width: 740vw !important;
  }
  .min-xl-vh-740 {
    min-height: 740vh !important;
  }
  .vw-xl-740 {
    width: 740vw !important;
  }
  .vh-xl-740 {
    height: 740vh !important;
  }
  .width-xl-740 {
    width: 740px !important;
  }
  .height-xl-740 {
    height: 740px !important;
  }
  .max-width-xl-740 {
    max-width: 740px !important;
  }
  .min-width-xl-740 {
    min-width: 740px !important;
  }
  .max-height-xl-740 {
    max-height: 740px !important;
  }
  .min-height-xl-740 {
    min-height: 740px !important;
  }
}
.w-740 {
  width: 740% !important;
}

.h-740 {
  height: 740% !important;
}

.max-w-740 {
  max-width: 740% !important;
}

.min-w-740 {
  min-width: 740% !important;
}

.max-h-740 {
  max-height: 740% !important;
}

.min-h-740 {
  min-height: 740% !important;
}

.min-vw-740 {
  min-width: 740vw !important;
}

.min-vh-740 {
  min-height: 740vh !important;
}

.vw-740 {
  width: 740vw !important;
}

.vh-740 {
  height: 740vh !important;
}

.width-740 {
  width: 740px !important;
}

.height-740 {
  height: 740px !important;
}

.max-width-740 {
  max-width: 740px !important;
}

.min-width-740 {
  min-width: 740px !important;
}

.max-height-740 {
  max-height: 740px !important;
}

.min-height-740 {
  min-height: 740px !important;
}

@media (max-width: 576px) {
  .w-sm-750 {
    width: 750% !important;
  }
  .h-sm-750 {
    height: 750% !important;
  }
  .max-w-sm-750 {
    max-width: 750% !important;
  }
  .min-w-sm-750 {
    min-width: 750% !important;
  }
  .max-h-sm-750 {
    max-height: 750% !important;
  }
  .min-h-sm-750 {
    min-height: 750% !important;
  }
  .min-sm-vw-750 {
    min-width: 750vw !important;
  }
  .min-sm-vh-750 {
    min-height: 750vh !important;
  }
  .vw-sm-750 {
    width: 750vw !important;
  }
  .vh-sm-750 {
    height: 750vh !important;
  }
  .width-sm-750 {
    width: 750px !important;
  }
  .height-sm-750 {
    height: 750px !important;
  }
  .max-width-sm-750 {
    max-width: 750 px !important;
  }
  .min-width-sm-750 {
    min-width: 750px !important;
  }
  .max-height-sm-750 {
    max-height: 750px !important;
  }
  .min-height-sm-750 {
    min-height: 750px !important;
  }
}
@media (max-width: 768px) {
  .w-md-750 {
    width: 750% !important;
  }
  .h-md-750 {
    height: 750% !important;
  }
  .max-w-md-750 {
    max-width: 750% !important;
  }
  .min-w-md-750 {
    min-width: 750% !important;
  }
  .max-h-md-750 {
    max-height: 750% !important;
  }
  .min-h-md-750 {
    min-height: 750% !important;
  }
  .min-md-vw-750 {
    min-width: 750vw !important;
  }
  .min-md-vh-750 {
    min-height: 750vh !important;
  }
  .vw-md-750 {
    width: 750vw !important;
  }
  .vh-md-750 {
    height: 750vh !important;
  }
  .width-md-750 {
    width: 750px !important;
  }
  .height-md-750 {
    height: 750px !important;
  }
  .max-width-md-750 {
    max-width: 750px !important;
  }
  .min-width-md-750 {
    min-width: 750px !important;
  }
  .max-height-md-750 {
    max-height: 750px !important;
  }
  .min-height-md-750 {
    min-height: 750px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-750 {
    width: 750% !important;
  }
  .h-lg-750 {
    height: 750% !important;
  }
  .max-w-lg-750 {
    max-width: 750% !important;
  }
  .min-w-lg-750 {
    min-width: 750% !important;
  }
  .max-h-lg-750 {
    max-height: 750% !important;
  }
  .min-h-lg-750 {
    min-height: 750% !important;
  }
  .min-lg-vw-750 {
    min-width: 750vw !important;
  }
  .min-lg-vh-750 {
    min-height: 750vh !important;
  }
  .vw-lg-750 {
    width: 750vw !important;
  }
  .vh-lg-750 {
    height: 750vh !important;
  }
  .width-lg-750 {
    width: 750px !important;
  }
  .height-lg-750 {
    height: 750px !important;
  }
  .max-width-lg-750 {
    max-width: 750px !important;
  }
  .min-width-lg-750 {
    min-width: 750px !important;
  }
  .max-height-lg-750 {
    max-height: 750px !important;
  }
  .min-height-lg-750 {
    min-height: 750px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-750 {
    width: 750% !important;
  }
  .h-xl-750 {
    height: 750% !important;
  }
  .max-w-xl-750 {
    max-width: 750% !important;
  }
  .min-w-xl-750 {
    min-width: 750% !important;
  }
  .max-h-xl-750 {
    max-height: 750% !important;
  }
  .min-h-xl-750 {
    min-height: 750% !important;
  }
  .min-xl-vw-750 {
    min-width: 750vw !important;
  }
  .min-xl-vh-750 {
    min-height: 750vh !important;
  }
  .vw-xl-750 {
    width: 750vw !important;
  }
  .vh-xl-750 {
    height: 750vh !important;
  }
  .width-xl-750 {
    width: 750px !important;
  }
  .height-xl-750 {
    height: 750px !important;
  }
  .max-width-xl-750 {
    max-width: 750px !important;
  }
  .min-width-xl-750 {
    min-width: 750px !important;
  }
  .max-height-xl-750 {
    max-height: 750px !important;
  }
  .min-height-xl-750 {
    min-height: 750px !important;
  }
}
.w-750 {
  width: 750% !important;
}

.h-750 {
  height: 750% !important;
}

.max-w-750 {
  max-width: 750% !important;
}

.min-w-750 {
  min-width: 750% !important;
}

.max-h-750 {
  max-height: 750% !important;
}

.min-h-750 {
  min-height: 750% !important;
}

.min-vw-750 {
  min-width: 750vw !important;
}

.min-vh-750 {
  min-height: 750vh !important;
}

.vw-750 {
  width: 750vw !important;
}

.vh-750 {
  height: 750vh !important;
}

.width-750 {
  width: 750px !important;
}

.height-750 {
  height: 750px !important;
}

.max-width-750 {
  max-width: 750px !important;
}

.min-width-750 {
  min-width: 750px !important;
}

.max-height-750 {
  max-height: 750px !important;
}

.min-height-750 {
  min-height: 750px !important;
}

@media (max-width: 576px) {
  .w-sm-760 {
    width: 760% !important;
  }
  .h-sm-760 {
    height: 760% !important;
  }
  .max-w-sm-760 {
    max-width: 760% !important;
  }
  .min-w-sm-760 {
    min-width: 760% !important;
  }
  .max-h-sm-760 {
    max-height: 760% !important;
  }
  .min-h-sm-760 {
    min-height: 760% !important;
  }
  .min-sm-vw-760 {
    min-width: 760vw !important;
  }
  .min-sm-vh-760 {
    min-height: 760vh !important;
  }
  .vw-sm-760 {
    width: 760vw !important;
  }
  .vh-sm-760 {
    height: 760vh !important;
  }
  .width-sm-760 {
    width: 760px !important;
  }
  .height-sm-760 {
    height: 760px !important;
  }
  .max-width-sm-760 {
    max-width: 760 px !important;
  }
  .min-width-sm-760 {
    min-width: 760px !important;
  }
  .max-height-sm-760 {
    max-height: 760px !important;
  }
  .min-height-sm-760 {
    min-height: 760px !important;
  }
}
@media (max-width: 768px) {
  .w-md-760 {
    width: 760% !important;
  }
  .h-md-760 {
    height: 760% !important;
  }
  .max-w-md-760 {
    max-width: 760% !important;
  }
  .min-w-md-760 {
    min-width: 760% !important;
  }
  .max-h-md-760 {
    max-height: 760% !important;
  }
  .min-h-md-760 {
    min-height: 760% !important;
  }
  .min-md-vw-760 {
    min-width: 760vw !important;
  }
  .min-md-vh-760 {
    min-height: 760vh !important;
  }
  .vw-md-760 {
    width: 760vw !important;
  }
  .vh-md-760 {
    height: 760vh !important;
  }
  .width-md-760 {
    width: 760px !important;
  }
  .height-md-760 {
    height: 760px !important;
  }
  .max-width-md-760 {
    max-width: 760px !important;
  }
  .min-width-md-760 {
    min-width: 760px !important;
  }
  .max-height-md-760 {
    max-height: 760px !important;
  }
  .min-height-md-760 {
    min-height: 760px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-760 {
    width: 760% !important;
  }
  .h-lg-760 {
    height: 760% !important;
  }
  .max-w-lg-760 {
    max-width: 760% !important;
  }
  .min-w-lg-760 {
    min-width: 760% !important;
  }
  .max-h-lg-760 {
    max-height: 760% !important;
  }
  .min-h-lg-760 {
    min-height: 760% !important;
  }
  .min-lg-vw-760 {
    min-width: 760vw !important;
  }
  .min-lg-vh-760 {
    min-height: 760vh !important;
  }
  .vw-lg-760 {
    width: 760vw !important;
  }
  .vh-lg-760 {
    height: 760vh !important;
  }
  .width-lg-760 {
    width: 760px !important;
  }
  .height-lg-760 {
    height: 760px !important;
  }
  .max-width-lg-760 {
    max-width: 760px !important;
  }
  .min-width-lg-760 {
    min-width: 760px !important;
  }
  .max-height-lg-760 {
    max-height: 760px !important;
  }
  .min-height-lg-760 {
    min-height: 760px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-760 {
    width: 760% !important;
  }
  .h-xl-760 {
    height: 760% !important;
  }
  .max-w-xl-760 {
    max-width: 760% !important;
  }
  .min-w-xl-760 {
    min-width: 760% !important;
  }
  .max-h-xl-760 {
    max-height: 760% !important;
  }
  .min-h-xl-760 {
    min-height: 760% !important;
  }
  .min-xl-vw-760 {
    min-width: 760vw !important;
  }
  .min-xl-vh-760 {
    min-height: 760vh !important;
  }
  .vw-xl-760 {
    width: 760vw !important;
  }
  .vh-xl-760 {
    height: 760vh !important;
  }
  .width-xl-760 {
    width: 760px !important;
  }
  .height-xl-760 {
    height: 760px !important;
  }
  .max-width-xl-760 {
    max-width: 760px !important;
  }
  .min-width-xl-760 {
    min-width: 760px !important;
  }
  .max-height-xl-760 {
    max-height: 760px !important;
  }
  .min-height-xl-760 {
    min-height: 760px !important;
  }
}
.w-760 {
  width: 760% !important;
}

.h-760 {
  height: 760% !important;
}

.max-w-760 {
  max-width: 760% !important;
}

.min-w-760 {
  min-width: 760% !important;
}

.max-h-760 {
  max-height: 760% !important;
}

.min-h-760 {
  min-height: 760% !important;
}

.min-vw-760 {
  min-width: 760vw !important;
}

.min-vh-760 {
  min-height: 760vh !important;
}

.vw-760 {
  width: 760vw !important;
}

.vh-760 {
  height: 760vh !important;
}

.width-760 {
  width: 760px !important;
}

.height-760 {
  height: 760px !important;
}

.max-width-760 {
  max-width: 760px !important;
}

.min-width-760 {
  min-width: 760px !important;
}

.max-height-760 {
  max-height: 760px !important;
}

.min-height-760 {
  min-height: 760px !important;
}

@media (max-width: 576px) {
  .w-sm-770 {
    width: 770% !important;
  }
  .h-sm-770 {
    height: 770% !important;
  }
  .max-w-sm-770 {
    max-width: 770% !important;
  }
  .min-w-sm-770 {
    min-width: 770% !important;
  }
  .max-h-sm-770 {
    max-height: 770% !important;
  }
  .min-h-sm-770 {
    min-height: 770% !important;
  }
  .min-sm-vw-770 {
    min-width: 770vw !important;
  }
  .min-sm-vh-770 {
    min-height: 770vh !important;
  }
  .vw-sm-770 {
    width: 770vw !important;
  }
  .vh-sm-770 {
    height: 770vh !important;
  }
  .width-sm-770 {
    width: 770px !important;
  }
  .height-sm-770 {
    height: 770px !important;
  }
  .max-width-sm-770 {
    max-width: 770 px !important;
  }
  .min-width-sm-770 {
    min-width: 770px !important;
  }
  .max-height-sm-770 {
    max-height: 770px !important;
  }
  .min-height-sm-770 {
    min-height: 770px !important;
  }
}
@media (max-width: 768px) {
  .w-md-770 {
    width: 770% !important;
  }
  .h-md-770 {
    height: 770% !important;
  }
  .max-w-md-770 {
    max-width: 770% !important;
  }
  .min-w-md-770 {
    min-width: 770% !important;
  }
  .max-h-md-770 {
    max-height: 770% !important;
  }
  .min-h-md-770 {
    min-height: 770% !important;
  }
  .min-md-vw-770 {
    min-width: 770vw !important;
  }
  .min-md-vh-770 {
    min-height: 770vh !important;
  }
  .vw-md-770 {
    width: 770vw !important;
  }
  .vh-md-770 {
    height: 770vh !important;
  }
  .width-md-770 {
    width: 770px !important;
  }
  .height-md-770 {
    height: 770px !important;
  }
  .max-width-md-770 {
    max-width: 770px !important;
  }
  .min-width-md-770 {
    min-width: 770px !important;
  }
  .max-height-md-770 {
    max-height: 770px !important;
  }
  .min-height-md-770 {
    min-height: 770px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-770 {
    width: 770% !important;
  }
  .h-lg-770 {
    height: 770% !important;
  }
  .max-w-lg-770 {
    max-width: 770% !important;
  }
  .min-w-lg-770 {
    min-width: 770% !important;
  }
  .max-h-lg-770 {
    max-height: 770% !important;
  }
  .min-h-lg-770 {
    min-height: 770% !important;
  }
  .min-lg-vw-770 {
    min-width: 770vw !important;
  }
  .min-lg-vh-770 {
    min-height: 770vh !important;
  }
  .vw-lg-770 {
    width: 770vw !important;
  }
  .vh-lg-770 {
    height: 770vh !important;
  }
  .width-lg-770 {
    width: 770px !important;
  }
  .height-lg-770 {
    height: 770px !important;
  }
  .max-width-lg-770 {
    max-width: 770px !important;
  }
  .min-width-lg-770 {
    min-width: 770px !important;
  }
  .max-height-lg-770 {
    max-height: 770px !important;
  }
  .min-height-lg-770 {
    min-height: 770px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-770 {
    width: 770% !important;
  }
  .h-xl-770 {
    height: 770% !important;
  }
  .max-w-xl-770 {
    max-width: 770% !important;
  }
  .min-w-xl-770 {
    min-width: 770% !important;
  }
  .max-h-xl-770 {
    max-height: 770% !important;
  }
  .min-h-xl-770 {
    min-height: 770% !important;
  }
  .min-xl-vw-770 {
    min-width: 770vw !important;
  }
  .min-xl-vh-770 {
    min-height: 770vh !important;
  }
  .vw-xl-770 {
    width: 770vw !important;
  }
  .vh-xl-770 {
    height: 770vh !important;
  }
  .width-xl-770 {
    width: 770px !important;
  }
  .height-xl-770 {
    height: 770px !important;
  }
  .max-width-xl-770 {
    max-width: 770px !important;
  }
  .min-width-xl-770 {
    min-width: 770px !important;
  }
  .max-height-xl-770 {
    max-height: 770px !important;
  }
  .min-height-xl-770 {
    min-height: 770px !important;
  }
}
.w-770 {
  width: 770% !important;
}

.h-770 {
  height: 770% !important;
}

.max-w-770 {
  max-width: 770% !important;
}

.min-w-770 {
  min-width: 770% !important;
}

.max-h-770 {
  max-height: 770% !important;
}

.min-h-770 {
  min-height: 770% !important;
}

.min-vw-770 {
  min-width: 770vw !important;
}

.min-vh-770 {
  min-height: 770vh !important;
}

.vw-770 {
  width: 770vw !important;
}

.vh-770 {
  height: 770vh !important;
}

.width-770 {
  width: 770px !important;
}

.height-770 {
  height: 770px !important;
}

.max-width-770 {
  max-width: 770px !important;
}

.min-width-770 {
  min-width: 770px !important;
}

.max-height-770 {
  max-height: 770px !important;
}

.min-height-770 {
  min-height: 770px !important;
}

@media (max-width: 576px) {
  .w-sm-780 {
    width: 780% !important;
  }
  .h-sm-780 {
    height: 780% !important;
  }
  .max-w-sm-780 {
    max-width: 780% !important;
  }
  .min-w-sm-780 {
    min-width: 780% !important;
  }
  .max-h-sm-780 {
    max-height: 780% !important;
  }
  .min-h-sm-780 {
    min-height: 780% !important;
  }
  .min-sm-vw-780 {
    min-width: 780vw !important;
  }
  .min-sm-vh-780 {
    min-height: 780vh !important;
  }
  .vw-sm-780 {
    width: 780vw !important;
  }
  .vh-sm-780 {
    height: 780vh !important;
  }
  .width-sm-780 {
    width: 780px !important;
  }
  .height-sm-780 {
    height: 780px !important;
  }
  .max-width-sm-780 {
    max-width: 780 px !important;
  }
  .min-width-sm-780 {
    min-width: 780px !important;
  }
  .max-height-sm-780 {
    max-height: 780px !important;
  }
  .min-height-sm-780 {
    min-height: 780px !important;
  }
}
@media (max-width: 768px) {
  .w-md-780 {
    width: 780% !important;
  }
  .h-md-780 {
    height: 780% !important;
  }
  .max-w-md-780 {
    max-width: 780% !important;
  }
  .min-w-md-780 {
    min-width: 780% !important;
  }
  .max-h-md-780 {
    max-height: 780% !important;
  }
  .min-h-md-780 {
    min-height: 780% !important;
  }
  .min-md-vw-780 {
    min-width: 780vw !important;
  }
  .min-md-vh-780 {
    min-height: 780vh !important;
  }
  .vw-md-780 {
    width: 780vw !important;
  }
  .vh-md-780 {
    height: 780vh !important;
  }
  .width-md-780 {
    width: 780px !important;
  }
  .height-md-780 {
    height: 780px !important;
  }
  .max-width-md-780 {
    max-width: 780px !important;
  }
  .min-width-md-780 {
    min-width: 780px !important;
  }
  .max-height-md-780 {
    max-height: 780px !important;
  }
  .min-height-md-780 {
    min-height: 780px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-780 {
    width: 780% !important;
  }
  .h-lg-780 {
    height: 780% !important;
  }
  .max-w-lg-780 {
    max-width: 780% !important;
  }
  .min-w-lg-780 {
    min-width: 780% !important;
  }
  .max-h-lg-780 {
    max-height: 780% !important;
  }
  .min-h-lg-780 {
    min-height: 780% !important;
  }
  .min-lg-vw-780 {
    min-width: 780vw !important;
  }
  .min-lg-vh-780 {
    min-height: 780vh !important;
  }
  .vw-lg-780 {
    width: 780vw !important;
  }
  .vh-lg-780 {
    height: 780vh !important;
  }
  .width-lg-780 {
    width: 780px !important;
  }
  .height-lg-780 {
    height: 780px !important;
  }
  .max-width-lg-780 {
    max-width: 780px !important;
  }
  .min-width-lg-780 {
    min-width: 780px !important;
  }
  .max-height-lg-780 {
    max-height: 780px !important;
  }
  .min-height-lg-780 {
    min-height: 780px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-780 {
    width: 780% !important;
  }
  .h-xl-780 {
    height: 780% !important;
  }
  .max-w-xl-780 {
    max-width: 780% !important;
  }
  .min-w-xl-780 {
    min-width: 780% !important;
  }
  .max-h-xl-780 {
    max-height: 780% !important;
  }
  .min-h-xl-780 {
    min-height: 780% !important;
  }
  .min-xl-vw-780 {
    min-width: 780vw !important;
  }
  .min-xl-vh-780 {
    min-height: 780vh !important;
  }
  .vw-xl-780 {
    width: 780vw !important;
  }
  .vh-xl-780 {
    height: 780vh !important;
  }
  .width-xl-780 {
    width: 780px !important;
  }
  .height-xl-780 {
    height: 780px !important;
  }
  .max-width-xl-780 {
    max-width: 780px !important;
  }
  .min-width-xl-780 {
    min-width: 780px !important;
  }
  .max-height-xl-780 {
    max-height: 780px !important;
  }
  .min-height-xl-780 {
    min-height: 780px !important;
  }
}
.w-780 {
  width: 780% !important;
}

.h-780 {
  height: 780% !important;
}

.max-w-780 {
  max-width: 780% !important;
}

.min-w-780 {
  min-width: 780% !important;
}

.max-h-780 {
  max-height: 780% !important;
}

.min-h-780 {
  min-height: 780% !important;
}

.min-vw-780 {
  min-width: 780vw !important;
}

.min-vh-780 {
  min-height: 780vh !important;
}

.vw-780 {
  width: 780vw !important;
}

.vh-780 {
  height: 780vh !important;
}

.width-780 {
  width: 780px !important;
}

.height-780 {
  height: 780px !important;
}

.max-width-780 {
  max-width: 780px !important;
}

.min-width-780 {
  min-width: 780px !important;
}

.max-height-780 {
  max-height: 780px !important;
}

.min-height-780 {
  min-height: 780px !important;
}

@media (max-width: 576px) {
  .w-sm-790 {
    width: 790% !important;
  }
  .h-sm-790 {
    height: 790% !important;
  }
  .max-w-sm-790 {
    max-width: 790% !important;
  }
  .min-w-sm-790 {
    min-width: 790% !important;
  }
  .max-h-sm-790 {
    max-height: 790% !important;
  }
  .min-h-sm-790 {
    min-height: 790% !important;
  }
  .min-sm-vw-790 {
    min-width: 790vw !important;
  }
  .min-sm-vh-790 {
    min-height: 790vh !important;
  }
  .vw-sm-790 {
    width: 790vw !important;
  }
  .vh-sm-790 {
    height: 790vh !important;
  }
  .width-sm-790 {
    width: 790px !important;
  }
  .height-sm-790 {
    height: 790px !important;
  }
  .max-width-sm-790 {
    max-width: 790 px !important;
  }
  .min-width-sm-790 {
    min-width: 790px !important;
  }
  .max-height-sm-790 {
    max-height: 790px !important;
  }
  .min-height-sm-790 {
    min-height: 790px !important;
  }
}
@media (max-width: 768px) {
  .w-md-790 {
    width: 790% !important;
  }
  .h-md-790 {
    height: 790% !important;
  }
  .max-w-md-790 {
    max-width: 790% !important;
  }
  .min-w-md-790 {
    min-width: 790% !important;
  }
  .max-h-md-790 {
    max-height: 790% !important;
  }
  .min-h-md-790 {
    min-height: 790% !important;
  }
  .min-md-vw-790 {
    min-width: 790vw !important;
  }
  .min-md-vh-790 {
    min-height: 790vh !important;
  }
  .vw-md-790 {
    width: 790vw !important;
  }
  .vh-md-790 {
    height: 790vh !important;
  }
  .width-md-790 {
    width: 790px !important;
  }
  .height-md-790 {
    height: 790px !important;
  }
  .max-width-md-790 {
    max-width: 790px !important;
  }
  .min-width-md-790 {
    min-width: 790px !important;
  }
  .max-height-md-790 {
    max-height: 790px !important;
  }
  .min-height-md-790 {
    min-height: 790px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-790 {
    width: 790% !important;
  }
  .h-lg-790 {
    height: 790% !important;
  }
  .max-w-lg-790 {
    max-width: 790% !important;
  }
  .min-w-lg-790 {
    min-width: 790% !important;
  }
  .max-h-lg-790 {
    max-height: 790% !important;
  }
  .min-h-lg-790 {
    min-height: 790% !important;
  }
  .min-lg-vw-790 {
    min-width: 790vw !important;
  }
  .min-lg-vh-790 {
    min-height: 790vh !important;
  }
  .vw-lg-790 {
    width: 790vw !important;
  }
  .vh-lg-790 {
    height: 790vh !important;
  }
  .width-lg-790 {
    width: 790px !important;
  }
  .height-lg-790 {
    height: 790px !important;
  }
  .max-width-lg-790 {
    max-width: 790px !important;
  }
  .min-width-lg-790 {
    min-width: 790px !important;
  }
  .max-height-lg-790 {
    max-height: 790px !important;
  }
  .min-height-lg-790 {
    min-height: 790px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-790 {
    width: 790% !important;
  }
  .h-xl-790 {
    height: 790% !important;
  }
  .max-w-xl-790 {
    max-width: 790% !important;
  }
  .min-w-xl-790 {
    min-width: 790% !important;
  }
  .max-h-xl-790 {
    max-height: 790% !important;
  }
  .min-h-xl-790 {
    min-height: 790% !important;
  }
  .min-xl-vw-790 {
    min-width: 790vw !important;
  }
  .min-xl-vh-790 {
    min-height: 790vh !important;
  }
  .vw-xl-790 {
    width: 790vw !important;
  }
  .vh-xl-790 {
    height: 790vh !important;
  }
  .width-xl-790 {
    width: 790px !important;
  }
  .height-xl-790 {
    height: 790px !important;
  }
  .max-width-xl-790 {
    max-width: 790px !important;
  }
  .min-width-xl-790 {
    min-width: 790px !important;
  }
  .max-height-xl-790 {
    max-height: 790px !important;
  }
  .min-height-xl-790 {
    min-height: 790px !important;
  }
}
.w-790 {
  width: 790% !important;
}

.h-790 {
  height: 790% !important;
}

.max-w-790 {
  max-width: 790% !important;
}

.min-w-790 {
  min-width: 790% !important;
}

.max-h-790 {
  max-height: 790% !important;
}

.min-h-790 {
  min-height: 790% !important;
}

.min-vw-790 {
  min-width: 790vw !important;
}

.min-vh-790 {
  min-height: 790vh !important;
}

.vw-790 {
  width: 790vw !important;
}

.vh-790 {
  height: 790vh !important;
}

.width-790 {
  width: 790px !important;
}

.height-790 {
  height: 790px !important;
}

.max-width-790 {
  max-width: 790px !important;
}

.min-width-790 {
  min-width: 790px !important;
}

.max-height-790 {
  max-height: 790px !important;
}

.min-height-790 {
  min-height: 790px !important;
}

@media (max-width: 576px) {
  .w-sm-800 {
    width: 800% !important;
  }
  .h-sm-800 {
    height: 800% !important;
  }
  .max-w-sm-800 {
    max-width: 800% !important;
  }
  .min-w-sm-800 {
    min-width: 800% !important;
  }
  .max-h-sm-800 {
    max-height: 800% !important;
  }
  .min-h-sm-800 {
    min-height: 800% !important;
  }
  .min-sm-vw-800 {
    min-width: 800vw !important;
  }
  .min-sm-vh-800 {
    min-height: 800vh !important;
  }
  .vw-sm-800 {
    width: 800vw !important;
  }
  .vh-sm-800 {
    height: 800vh !important;
  }
  .width-sm-800 {
    width: 800px !important;
  }
  .height-sm-800 {
    height: 800px !important;
  }
  .max-width-sm-800 {
    max-width: 800 px !important;
  }
  .min-width-sm-800 {
    min-width: 800px !important;
  }
  .max-height-sm-800 {
    max-height: 800px !important;
  }
  .min-height-sm-800 {
    min-height: 800px !important;
  }
}
@media (max-width: 768px) {
  .w-md-800 {
    width: 800% !important;
  }
  .h-md-800 {
    height: 800% !important;
  }
  .max-w-md-800 {
    max-width: 800% !important;
  }
  .min-w-md-800 {
    min-width: 800% !important;
  }
  .max-h-md-800 {
    max-height: 800% !important;
  }
  .min-h-md-800 {
    min-height: 800% !important;
  }
  .min-md-vw-800 {
    min-width: 800vw !important;
  }
  .min-md-vh-800 {
    min-height: 800vh !important;
  }
  .vw-md-800 {
    width: 800vw !important;
  }
  .vh-md-800 {
    height: 800vh !important;
  }
  .width-md-800 {
    width: 800px !important;
  }
  .height-md-800 {
    height: 800px !important;
  }
  .max-width-md-800 {
    max-width: 800px !important;
  }
  .min-width-md-800 {
    min-width: 800px !important;
  }
  .max-height-md-800 {
    max-height: 800px !important;
  }
  .min-height-md-800 {
    min-height: 800px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-800 {
    width: 800% !important;
  }
  .h-lg-800 {
    height: 800% !important;
  }
  .max-w-lg-800 {
    max-width: 800% !important;
  }
  .min-w-lg-800 {
    min-width: 800% !important;
  }
  .max-h-lg-800 {
    max-height: 800% !important;
  }
  .min-h-lg-800 {
    min-height: 800% !important;
  }
  .min-lg-vw-800 {
    min-width: 800vw !important;
  }
  .min-lg-vh-800 {
    min-height: 800vh !important;
  }
  .vw-lg-800 {
    width: 800vw !important;
  }
  .vh-lg-800 {
    height: 800vh !important;
  }
  .width-lg-800 {
    width: 800px !important;
  }
  .height-lg-800 {
    height: 800px !important;
  }
  .max-width-lg-800 {
    max-width: 800px !important;
  }
  .min-width-lg-800 {
    min-width: 800px !important;
  }
  .max-height-lg-800 {
    max-height: 800px !important;
  }
  .min-height-lg-800 {
    min-height: 800px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-800 {
    width: 800% !important;
  }
  .h-xl-800 {
    height: 800% !important;
  }
  .max-w-xl-800 {
    max-width: 800% !important;
  }
  .min-w-xl-800 {
    min-width: 800% !important;
  }
  .max-h-xl-800 {
    max-height: 800% !important;
  }
  .min-h-xl-800 {
    min-height: 800% !important;
  }
  .min-xl-vw-800 {
    min-width: 800vw !important;
  }
  .min-xl-vh-800 {
    min-height: 800vh !important;
  }
  .vw-xl-800 {
    width: 800vw !important;
  }
  .vh-xl-800 {
    height: 800vh !important;
  }
  .width-xl-800 {
    width: 800px !important;
  }
  .height-xl-800 {
    height: 800px !important;
  }
  .max-width-xl-800 {
    max-width: 800px !important;
  }
  .min-width-xl-800 {
    min-width: 800px !important;
  }
  .max-height-xl-800 {
    max-height: 800px !important;
  }
  .min-height-xl-800 {
    min-height: 800px !important;
  }
}
.w-800 {
  width: 800% !important;
}

.h-800 {
  height: 800% !important;
}

.max-w-800 {
  max-width: 800% !important;
}

.min-w-800 {
  min-width: 800% !important;
}

.max-h-800 {
  max-height: 800% !important;
}

.min-h-800 {
  min-height: 800% !important;
}

.min-vw-800 {
  min-width: 800vw !important;
}

.min-vh-800 {
  min-height: 800vh !important;
}

.vw-800 {
  width: 800vw !important;
}

.vh-800 {
  height: 800vh !important;
}

.width-800 {
  width: 800px !important;
}

.height-800 {
  height: 800px !important;
}

.max-width-800 {
  max-width: 800px !important;
}

.min-width-800 {
  min-width: 800px !important;
}

.max-height-800 {
  max-height: 800px !important;
}

.min-height-800 {
  min-height: 800px !important;
}

@media (max-width: 576px) {
  .w-sm-810 {
    width: 810% !important;
  }
  .h-sm-810 {
    height: 810% !important;
  }
  .max-w-sm-810 {
    max-width: 810% !important;
  }
  .min-w-sm-810 {
    min-width: 810% !important;
  }
  .max-h-sm-810 {
    max-height: 810% !important;
  }
  .min-h-sm-810 {
    min-height: 810% !important;
  }
  .min-sm-vw-810 {
    min-width: 810vw !important;
  }
  .min-sm-vh-810 {
    min-height: 810vh !important;
  }
  .vw-sm-810 {
    width: 810vw !important;
  }
  .vh-sm-810 {
    height: 810vh !important;
  }
  .width-sm-810 {
    width: 810px !important;
  }
  .height-sm-810 {
    height: 810px !important;
  }
  .max-width-sm-810 {
    max-width: 810 px !important;
  }
  .min-width-sm-810 {
    min-width: 810px !important;
  }
  .max-height-sm-810 {
    max-height: 810px !important;
  }
  .min-height-sm-810 {
    min-height: 810px !important;
  }
}
@media (max-width: 768px) {
  .w-md-810 {
    width: 810% !important;
  }
  .h-md-810 {
    height: 810% !important;
  }
  .max-w-md-810 {
    max-width: 810% !important;
  }
  .min-w-md-810 {
    min-width: 810% !important;
  }
  .max-h-md-810 {
    max-height: 810% !important;
  }
  .min-h-md-810 {
    min-height: 810% !important;
  }
  .min-md-vw-810 {
    min-width: 810vw !important;
  }
  .min-md-vh-810 {
    min-height: 810vh !important;
  }
  .vw-md-810 {
    width: 810vw !important;
  }
  .vh-md-810 {
    height: 810vh !important;
  }
  .width-md-810 {
    width: 810px !important;
  }
  .height-md-810 {
    height: 810px !important;
  }
  .max-width-md-810 {
    max-width: 810px !important;
  }
  .min-width-md-810 {
    min-width: 810px !important;
  }
  .max-height-md-810 {
    max-height: 810px !important;
  }
  .min-height-md-810 {
    min-height: 810px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-810 {
    width: 810% !important;
  }
  .h-lg-810 {
    height: 810% !important;
  }
  .max-w-lg-810 {
    max-width: 810% !important;
  }
  .min-w-lg-810 {
    min-width: 810% !important;
  }
  .max-h-lg-810 {
    max-height: 810% !important;
  }
  .min-h-lg-810 {
    min-height: 810% !important;
  }
  .min-lg-vw-810 {
    min-width: 810vw !important;
  }
  .min-lg-vh-810 {
    min-height: 810vh !important;
  }
  .vw-lg-810 {
    width: 810vw !important;
  }
  .vh-lg-810 {
    height: 810vh !important;
  }
  .width-lg-810 {
    width: 810px !important;
  }
  .height-lg-810 {
    height: 810px !important;
  }
  .max-width-lg-810 {
    max-width: 810px !important;
  }
  .min-width-lg-810 {
    min-width: 810px !important;
  }
  .max-height-lg-810 {
    max-height: 810px !important;
  }
  .min-height-lg-810 {
    min-height: 810px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-810 {
    width: 810% !important;
  }
  .h-xl-810 {
    height: 810% !important;
  }
  .max-w-xl-810 {
    max-width: 810% !important;
  }
  .min-w-xl-810 {
    min-width: 810% !important;
  }
  .max-h-xl-810 {
    max-height: 810% !important;
  }
  .min-h-xl-810 {
    min-height: 810% !important;
  }
  .min-xl-vw-810 {
    min-width: 810vw !important;
  }
  .min-xl-vh-810 {
    min-height: 810vh !important;
  }
  .vw-xl-810 {
    width: 810vw !important;
  }
  .vh-xl-810 {
    height: 810vh !important;
  }
  .width-xl-810 {
    width: 810px !important;
  }
  .height-xl-810 {
    height: 810px !important;
  }
  .max-width-xl-810 {
    max-width: 810px !important;
  }
  .min-width-xl-810 {
    min-width: 810px !important;
  }
  .max-height-xl-810 {
    max-height: 810px !important;
  }
  .min-height-xl-810 {
    min-height: 810px !important;
  }
}
.w-810 {
  width: 810% !important;
}

.h-810 {
  height: 810% !important;
}

.max-w-810 {
  max-width: 810% !important;
}

.min-w-810 {
  min-width: 810% !important;
}

.max-h-810 {
  max-height: 810% !important;
}

.min-h-810 {
  min-height: 810% !important;
}

.min-vw-810 {
  min-width: 810vw !important;
}

.min-vh-810 {
  min-height: 810vh !important;
}

.vw-810 {
  width: 810vw !important;
}

.vh-810 {
  height: 810vh !important;
}

.width-810 {
  width: 810px !important;
}

.height-810 {
  height: 810px !important;
}

.max-width-810 {
  max-width: 810px !important;
}

.min-width-810 {
  min-width: 810px !important;
}

.max-height-810 {
  max-height: 810px !important;
}

.min-height-810 {
  min-height: 810px !important;
}

@media (max-width: 576px) {
  .w-sm-820 {
    width: 820% !important;
  }
  .h-sm-820 {
    height: 820% !important;
  }
  .max-w-sm-820 {
    max-width: 820% !important;
  }
  .min-w-sm-820 {
    min-width: 820% !important;
  }
  .max-h-sm-820 {
    max-height: 820% !important;
  }
  .min-h-sm-820 {
    min-height: 820% !important;
  }
  .min-sm-vw-820 {
    min-width: 820vw !important;
  }
  .min-sm-vh-820 {
    min-height: 820vh !important;
  }
  .vw-sm-820 {
    width: 820vw !important;
  }
  .vh-sm-820 {
    height: 820vh !important;
  }
  .width-sm-820 {
    width: 820px !important;
  }
  .height-sm-820 {
    height: 820px !important;
  }
  .max-width-sm-820 {
    max-width: 820 px !important;
  }
  .min-width-sm-820 {
    min-width: 820px !important;
  }
  .max-height-sm-820 {
    max-height: 820px !important;
  }
  .min-height-sm-820 {
    min-height: 820px !important;
  }
}
@media (max-width: 768px) {
  .w-md-820 {
    width: 820% !important;
  }
  .h-md-820 {
    height: 820% !important;
  }
  .max-w-md-820 {
    max-width: 820% !important;
  }
  .min-w-md-820 {
    min-width: 820% !important;
  }
  .max-h-md-820 {
    max-height: 820% !important;
  }
  .min-h-md-820 {
    min-height: 820% !important;
  }
  .min-md-vw-820 {
    min-width: 820vw !important;
  }
  .min-md-vh-820 {
    min-height: 820vh !important;
  }
  .vw-md-820 {
    width: 820vw !important;
  }
  .vh-md-820 {
    height: 820vh !important;
  }
  .width-md-820 {
    width: 820px !important;
  }
  .height-md-820 {
    height: 820px !important;
  }
  .max-width-md-820 {
    max-width: 820px !important;
  }
  .min-width-md-820 {
    min-width: 820px !important;
  }
  .max-height-md-820 {
    max-height: 820px !important;
  }
  .min-height-md-820 {
    min-height: 820px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-820 {
    width: 820% !important;
  }
  .h-lg-820 {
    height: 820% !important;
  }
  .max-w-lg-820 {
    max-width: 820% !important;
  }
  .min-w-lg-820 {
    min-width: 820% !important;
  }
  .max-h-lg-820 {
    max-height: 820% !important;
  }
  .min-h-lg-820 {
    min-height: 820% !important;
  }
  .min-lg-vw-820 {
    min-width: 820vw !important;
  }
  .min-lg-vh-820 {
    min-height: 820vh !important;
  }
  .vw-lg-820 {
    width: 820vw !important;
  }
  .vh-lg-820 {
    height: 820vh !important;
  }
  .width-lg-820 {
    width: 820px !important;
  }
  .height-lg-820 {
    height: 820px !important;
  }
  .max-width-lg-820 {
    max-width: 820px !important;
  }
  .min-width-lg-820 {
    min-width: 820px !important;
  }
  .max-height-lg-820 {
    max-height: 820px !important;
  }
  .min-height-lg-820 {
    min-height: 820px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-820 {
    width: 820% !important;
  }
  .h-xl-820 {
    height: 820% !important;
  }
  .max-w-xl-820 {
    max-width: 820% !important;
  }
  .min-w-xl-820 {
    min-width: 820% !important;
  }
  .max-h-xl-820 {
    max-height: 820% !important;
  }
  .min-h-xl-820 {
    min-height: 820% !important;
  }
  .min-xl-vw-820 {
    min-width: 820vw !important;
  }
  .min-xl-vh-820 {
    min-height: 820vh !important;
  }
  .vw-xl-820 {
    width: 820vw !important;
  }
  .vh-xl-820 {
    height: 820vh !important;
  }
  .width-xl-820 {
    width: 820px !important;
  }
  .height-xl-820 {
    height: 820px !important;
  }
  .max-width-xl-820 {
    max-width: 820px !important;
  }
  .min-width-xl-820 {
    min-width: 820px !important;
  }
  .max-height-xl-820 {
    max-height: 820px !important;
  }
  .min-height-xl-820 {
    min-height: 820px !important;
  }
}
.w-820 {
  width: 820% !important;
}

.h-820 {
  height: 820% !important;
}

.max-w-820 {
  max-width: 820% !important;
}

.min-w-820 {
  min-width: 820% !important;
}

.max-h-820 {
  max-height: 820% !important;
}

.min-h-820 {
  min-height: 820% !important;
}

.min-vw-820 {
  min-width: 820vw !important;
}

.min-vh-820 {
  min-height: 820vh !important;
}

.vw-820 {
  width: 820vw !important;
}

.vh-820 {
  height: 820vh !important;
}

.width-820 {
  width: 820px !important;
}

.height-820 {
  height: 820px !important;
}

.max-width-820 {
  max-width: 820px !important;
}

.min-width-820 {
  min-width: 820px !important;
}

.max-height-820 {
  max-height: 820px !important;
}

.min-height-820 {
  min-height: 820px !important;
}

@media (max-width: 576px) {
  .w-sm-830 {
    width: 830% !important;
  }
  .h-sm-830 {
    height: 830% !important;
  }
  .max-w-sm-830 {
    max-width: 830% !important;
  }
  .min-w-sm-830 {
    min-width: 830% !important;
  }
  .max-h-sm-830 {
    max-height: 830% !important;
  }
  .min-h-sm-830 {
    min-height: 830% !important;
  }
  .min-sm-vw-830 {
    min-width: 830vw !important;
  }
  .min-sm-vh-830 {
    min-height: 830vh !important;
  }
  .vw-sm-830 {
    width: 830vw !important;
  }
  .vh-sm-830 {
    height: 830vh !important;
  }
  .width-sm-830 {
    width: 830px !important;
  }
  .height-sm-830 {
    height: 830px !important;
  }
  .max-width-sm-830 {
    max-width: 830 px !important;
  }
  .min-width-sm-830 {
    min-width: 830px !important;
  }
  .max-height-sm-830 {
    max-height: 830px !important;
  }
  .min-height-sm-830 {
    min-height: 830px !important;
  }
}
@media (max-width: 768px) {
  .w-md-830 {
    width: 830% !important;
  }
  .h-md-830 {
    height: 830% !important;
  }
  .max-w-md-830 {
    max-width: 830% !important;
  }
  .min-w-md-830 {
    min-width: 830% !important;
  }
  .max-h-md-830 {
    max-height: 830% !important;
  }
  .min-h-md-830 {
    min-height: 830% !important;
  }
  .min-md-vw-830 {
    min-width: 830vw !important;
  }
  .min-md-vh-830 {
    min-height: 830vh !important;
  }
  .vw-md-830 {
    width: 830vw !important;
  }
  .vh-md-830 {
    height: 830vh !important;
  }
  .width-md-830 {
    width: 830px !important;
  }
  .height-md-830 {
    height: 830px !important;
  }
  .max-width-md-830 {
    max-width: 830px !important;
  }
  .min-width-md-830 {
    min-width: 830px !important;
  }
  .max-height-md-830 {
    max-height: 830px !important;
  }
  .min-height-md-830 {
    min-height: 830px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-830 {
    width: 830% !important;
  }
  .h-lg-830 {
    height: 830% !important;
  }
  .max-w-lg-830 {
    max-width: 830% !important;
  }
  .min-w-lg-830 {
    min-width: 830% !important;
  }
  .max-h-lg-830 {
    max-height: 830% !important;
  }
  .min-h-lg-830 {
    min-height: 830% !important;
  }
  .min-lg-vw-830 {
    min-width: 830vw !important;
  }
  .min-lg-vh-830 {
    min-height: 830vh !important;
  }
  .vw-lg-830 {
    width: 830vw !important;
  }
  .vh-lg-830 {
    height: 830vh !important;
  }
  .width-lg-830 {
    width: 830px !important;
  }
  .height-lg-830 {
    height: 830px !important;
  }
  .max-width-lg-830 {
    max-width: 830px !important;
  }
  .min-width-lg-830 {
    min-width: 830px !important;
  }
  .max-height-lg-830 {
    max-height: 830px !important;
  }
  .min-height-lg-830 {
    min-height: 830px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-830 {
    width: 830% !important;
  }
  .h-xl-830 {
    height: 830% !important;
  }
  .max-w-xl-830 {
    max-width: 830% !important;
  }
  .min-w-xl-830 {
    min-width: 830% !important;
  }
  .max-h-xl-830 {
    max-height: 830% !important;
  }
  .min-h-xl-830 {
    min-height: 830% !important;
  }
  .min-xl-vw-830 {
    min-width: 830vw !important;
  }
  .min-xl-vh-830 {
    min-height: 830vh !important;
  }
  .vw-xl-830 {
    width: 830vw !important;
  }
  .vh-xl-830 {
    height: 830vh !important;
  }
  .width-xl-830 {
    width: 830px !important;
  }
  .height-xl-830 {
    height: 830px !important;
  }
  .max-width-xl-830 {
    max-width: 830px !important;
  }
  .min-width-xl-830 {
    min-width: 830px !important;
  }
  .max-height-xl-830 {
    max-height: 830px !important;
  }
  .min-height-xl-830 {
    min-height: 830px !important;
  }
}
.w-830 {
  width: 830% !important;
}

.h-830 {
  height: 830% !important;
}

.max-w-830 {
  max-width: 830% !important;
}

.min-w-830 {
  min-width: 830% !important;
}

.max-h-830 {
  max-height: 830% !important;
}

.min-h-830 {
  min-height: 830% !important;
}

.min-vw-830 {
  min-width: 830vw !important;
}

.min-vh-830 {
  min-height: 830vh !important;
}

.vw-830 {
  width: 830vw !important;
}

.vh-830 {
  height: 830vh !important;
}

.width-830 {
  width: 830px !important;
}

.height-830 {
  height: 830px !important;
}

.max-width-830 {
  max-width: 830px !important;
}

.min-width-830 {
  min-width: 830px !important;
}

.max-height-830 {
  max-height: 830px !important;
}

.min-height-830 {
  min-height: 830px !important;
}

@media (max-width: 576px) {
  .w-sm-840 {
    width: 840% !important;
  }
  .h-sm-840 {
    height: 840% !important;
  }
  .max-w-sm-840 {
    max-width: 840% !important;
  }
  .min-w-sm-840 {
    min-width: 840% !important;
  }
  .max-h-sm-840 {
    max-height: 840% !important;
  }
  .min-h-sm-840 {
    min-height: 840% !important;
  }
  .min-sm-vw-840 {
    min-width: 840vw !important;
  }
  .min-sm-vh-840 {
    min-height: 840vh !important;
  }
  .vw-sm-840 {
    width: 840vw !important;
  }
  .vh-sm-840 {
    height: 840vh !important;
  }
  .width-sm-840 {
    width: 840px !important;
  }
  .height-sm-840 {
    height: 840px !important;
  }
  .max-width-sm-840 {
    max-width: 840 px !important;
  }
  .min-width-sm-840 {
    min-width: 840px !important;
  }
  .max-height-sm-840 {
    max-height: 840px !important;
  }
  .min-height-sm-840 {
    min-height: 840px !important;
  }
}
@media (max-width: 768px) {
  .w-md-840 {
    width: 840% !important;
  }
  .h-md-840 {
    height: 840% !important;
  }
  .max-w-md-840 {
    max-width: 840% !important;
  }
  .min-w-md-840 {
    min-width: 840% !important;
  }
  .max-h-md-840 {
    max-height: 840% !important;
  }
  .min-h-md-840 {
    min-height: 840% !important;
  }
  .min-md-vw-840 {
    min-width: 840vw !important;
  }
  .min-md-vh-840 {
    min-height: 840vh !important;
  }
  .vw-md-840 {
    width: 840vw !important;
  }
  .vh-md-840 {
    height: 840vh !important;
  }
  .width-md-840 {
    width: 840px !important;
  }
  .height-md-840 {
    height: 840px !important;
  }
  .max-width-md-840 {
    max-width: 840px !important;
  }
  .min-width-md-840 {
    min-width: 840px !important;
  }
  .max-height-md-840 {
    max-height: 840px !important;
  }
  .min-height-md-840 {
    min-height: 840px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-840 {
    width: 840% !important;
  }
  .h-lg-840 {
    height: 840% !important;
  }
  .max-w-lg-840 {
    max-width: 840% !important;
  }
  .min-w-lg-840 {
    min-width: 840% !important;
  }
  .max-h-lg-840 {
    max-height: 840% !important;
  }
  .min-h-lg-840 {
    min-height: 840% !important;
  }
  .min-lg-vw-840 {
    min-width: 840vw !important;
  }
  .min-lg-vh-840 {
    min-height: 840vh !important;
  }
  .vw-lg-840 {
    width: 840vw !important;
  }
  .vh-lg-840 {
    height: 840vh !important;
  }
  .width-lg-840 {
    width: 840px !important;
  }
  .height-lg-840 {
    height: 840px !important;
  }
  .max-width-lg-840 {
    max-width: 840px !important;
  }
  .min-width-lg-840 {
    min-width: 840px !important;
  }
  .max-height-lg-840 {
    max-height: 840px !important;
  }
  .min-height-lg-840 {
    min-height: 840px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-840 {
    width: 840% !important;
  }
  .h-xl-840 {
    height: 840% !important;
  }
  .max-w-xl-840 {
    max-width: 840% !important;
  }
  .min-w-xl-840 {
    min-width: 840% !important;
  }
  .max-h-xl-840 {
    max-height: 840% !important;
  }
  .min-h-xl-840 {
    min-height: 840% !important;
  }
  .min-xl-vw-840 {
    min-width: 840vw !important;
  }
  .min-xl-vh-840 {
    min-height: 840vh !important;
  }
  .vw-xl-840 {
    width: 840vw !important;
  }
  .vh-xl-840 {
    height: 840vh !important;
  }
  .width-xl-840 {
    width: 840px !important;
  }
  .height-xl-840 {
    height: 840px !important;
  }
  .max-width-xl-840 {
    max-width: 840px !important;
  }
  .min-width-xl-840 {
    min-width: 840px !important;
  }
  .max-height-xl-840 {
    max-height: 840px !important;
  }
  .min-height-xl-840 {
    min-height: 840px !important;
  }
}
.w-840 {
  width: 840% !important;
}

.h-840 {
  height: 840% !important;
}

.max-w-840 {
  max-width: 840% !important;
}

.min-w-840 {
  min-width: 840% !important;
}

.max-h-840 {
  max-height: 840% !important;
}

.min-h-840 {
  min-height: 840% !important;
}

.min-vw-840 {
  min-width: 840vw !important;
}

.min-vh-840 {
  min-height: 840vh !important;
}

.vw-840 {
  width: 840vw !important;
}

.vh-840 {
  height: 840vh !important;
}

.width-840 {
  width: 840px !important;
}

.height-840 {
  height: 840px !important;
}

.max-width-840 {
  max-width: 840px !important;
}

.min-width-840 {
  min-width: 840px !important;
}

.max-height-840 {
  max-height: 840px !important;
}

.min-height-840 {
  min-height: 840px !important;
}

@media (max-width: 576px) {
  .w-sm-850 {
    width: 850% !important;
  }
  .h-sm-850 {
    height: 850% !important;
  }
  .max-w-sm-850 {
    max-width: 850% !important;
  }
  .min-w-sm-850 {
    min-width: 850% !important;
  }
  .max-h-sm-850 {
    max-height: 850% !important;
  }
  .min-h-sm-850 {
    min-height: 850% !important;
  }
  .min-sm-vw-850 {
    min-width: 850vw !important;
  }
  .min-sm-vh-850 {
    min-height: 850vh !important;
  }
  .vw-sm-850 {
    width: 850vw !important;
  }
  .vh-sm-850 {
    height: 850vh !important;
  }
  .width-sm-850 {
    width: 850px !important;
  }
  .height-sm-850 {
    height: 850px !important;
  }
  .max-width-sm-850 {
    max-width: 850 px !important;
  }
  .min-width-sm-850 {
    min-width: 850px !important;
  }
  .max-height-sm-850 {
    max-height: 850px !important;
  }
  .min-height-sm-850 {
    min-height: 850px !important;
  }
}
@media (max-width: 768px) {
  .w-md-850 {
    width: 850% !important;
  }
  .h-md-850 {
    height: 850% !important;
  }
  .max-w-md-850 {
    max-width: 850% !important;
  }
  .min-w-md-850 {
    min-width: 850% !important;
  }
  .max-h-md-850 {
    max-height: 850% !important;
  }
  .min-h-md-850 {
    min-height: 850% !important;
  }
  .min-md-vw-850 {
    min-width: 850vw !important;
  }
  .min-md-vh-850 {
    min-height: 850vh !important;
  }
  .vw-md-850 {
    width: 850vw !important;
  }
  .vh-md-850 {
    height: 850vh !important;
  }
  .width-md-850 {
    width: 850px !important;
  }
  .height-md-850 {
    height: 850px !important;
  }
  .max-width-md-850 {
    max-width: 850px !important;
  }
  .min-width-md-850 {
    min-width: 850px !important;
  }
  .max-height-md-850 {
    max-height: 850px !important;
  }
  .min-height-md-850 {
    min-height: 850px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-850 {
    width: 850% !important;
  }
  .h-lg-850 {
    height: 850% !important;
  }
  .max-w-lg-850 {
    max-width: 850% !important;
  }
  .min-w-lg-850 {
    min-width: 850% !important;
  }
  .max-h-lg-850 {
    max-height: 850% !important;
  }
  .min-h-lg-850 {
    min-height: 850% !important;
  }
  .min-lg-vw-850 {
    min-width: 850vw !important;
  }
  .min-lg-vh-850 {
    min-height: 850vh !important;
  }
  .vw-lg-850 {
    width: 850vw !important;
  }
  .vh-lg-850 {
    height: 850vh !important;
  }
  .width-lg-850 {
    width: 850px !important;
  }
  .height-lg-850 {
    height: 850px !important;
  }
  .max-width-lg-850 {
    max-width: 850px !important;
  }
  .min-width-lg-850 {
    min-width: 850px !important;
  }
  .max-height-lg-850 {
    max-height: 850px !important;
  }
  .min-height-lg-850 {
    min-height: 850px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-850 {
    width: 850% !important;
  }
  .h-xl-850 {
    height: 850% !important;
  }
  .max-w-xl-850 {
    max-width: 850% !important;
  }
  .min-w-xl-850 {
    min-width: 850% !important;
  }
  .max-h-xl-850 {
    max-height: 850% !important;
  }
  .min-h-xl-850 {
    min-height: 850% !important;
  }
  .min-xl-vw-850 {
    min-width: 850vw !important;
  }
  .min-xl-vh-850 {
    min-height: 850vh !important;
  }
  .vw-xl-850 {
    width: 850vw !important;
  }
  .vh-xl-850 {
    height: 850vh !important;
  }
  .width-xl-850 {
    width: 850px !important;
  }
  .height-xl-850 {
    height: 850px !important;
  }
  .max-width-xl-850 {
    max-width: 850px !important;
  }
  .min-width-xl-850 {
    min-width: 850px !important;
  }
  .max-height-xl-850 {
    max-height: 850px !important;
  }
  .min-height-xl-850 {
    min-height: 850px !important;
  }
}
.w-850 {
  width: 850% !important;
}

.h-850 {
  height: 850% !important;
}

.max-w-850 {
  max-width: 850% !important;
}

.min-w-850 {
  min-width: 850% !important;
}

.max-h-850 {
  max-height: 850% !important;
}

.min-h-850 {
  min-height: 850% !important;
}

.min-vw-850 {
  min-width: 850vw !important;
}

.min-vh-850 {
  min-height: 850vh !important;
}

.vw-850 {
  width: 850vw !important;
}

.vh-850 {
  height: 850vh !important;
}

.width-850 {
  width: 850px !important;
}

.height-850 {
  height: 850px !important;
}

.max-width-850 {
  max-width: 850px !important;
}

.min-width-850 {
  min-width: 850px !important;
}

.max-height-850 {
  max-height: 850px !important;
}

.min-height-850 {
  min-height: 850px !important;
}

@media (max-width: 576px) {
  .w-sm-860 {
    width: 860% !important;
  }
  .h-sm-860 {
    height: 860% !important;
  }
  .max-w-sm-860 {
    max-width: 860% !important;
  }
  .min-w-sm-860 {
    min-width: 860% !important;
  }
  .max-h-sm-860 {
    max-height: 860% !important;
  }
  .min-h-sm-860 {
    min-height: 860% !important;
  }
  .min-sm-vw-860 {
    min-width: 860vw !important;
  }
  .min-sm-vh-860 {
    min-height: 860vh !important;
  }
  .vw-sm-860 {
    width: 860vw !important;
  }
  .vh-sm-860 {
    height: 860vh !important;
  }
  .width-sm-860 {
    width: 860px !important;
  }
  .height-sm-860 {
    height: 860px !important;
  }
  .max-width-sm-860 {
    max-width: 860 px !important;
  }
  .min-width-sm-860 {
    min-width: 860px !important;
  }
  .max-height-sm-860 {
    max-height: 860px !important;
  }
  .min-height-sm-860 {
    min-height: 860px !important;
  }
}
@media (max-width: 768px) {
  .w-md-860 {
    width: 860% !important;
  }
  .h-md-860 {
    height: 860% !important;
  }
  .max-w-md-860 {
    max-width: 860% !important;
  }
  .min-w-md-860 {
    min-width: 860% !important;
  }
  .max-h-md-860 {
    max-height: 860% !important;
  }
  .min-h-md-860 {
    min-height: 860% !important;
  }
  .min-md-vw-860 {
    min-width: 860vw !important;
  }
  .min-md-vh-860 {
    min-height: 860vh !important;
  }
  .vw-md-860 {
    width: 860vw !important;
  }
  .vh-md-860 {
    height: 860vh !important;
  }
  .width-md-860 {
    width: 860px !important;
  }
  .height-md-860 {
    height: 860px !important;
  }
  .max-width-md-860 {
    max-width: 860px !important;
  }
  .min-width-md-860 {
    min-width: 860px !important;
  }
  .max-height-md-860 {
    max-height: 860px !important;
  }
  .min-height-md-860 {
    min-height: 860px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-860 {
    width: 860% !important;
  }
  .h-lg-860 {
    height: 860% !important;
  }
  .max-w-lg-860 {
    max-width: 860% !important;
  }
  .min-w-lg-860 {
    min-width: 860% !important;
  }
  .max-h-lg-860 {
    max-height: 860% !important;
  }
  .min-h-lg-860 {
    min-height: 860% !important;
  }
  .min-lg-vw-860 {
    min-width: 860vw !important;
  }
  .min-lg-vh-860 {
    min-height: 860vh !important;
  }
  .vw-lg-860 {
    width: 860vw !important;
  }
  .vh-lg-860 {
    height: 860vh !important;
  }
  .width-lg-860 {
    width: 860px !important;
  }
  .height-lg-860 {
    height: 860px !important;
  }
  .max-width-lg-860 {
    max-width: 860px !important;
  }
  .min-width-lg-860 {
    min-width: 860px !important;
  }
  .max-height-lg-860 {
    max-height: 860px !important;
  }
  .min-height-lg-860 {
    min-height: 860px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-860 {
    width: 860% !important;
  }
  .h-xl-860 {
    height: 860% !important;
  }
  .max-w-xl-860 {
    max-width: 860% !important;
  }
  .min-w-xl-860 {
    min-width: 860% !important;
  }
  .max-h-xl-860 {
    max-height: 860% !important;
  }
  .min-h-xl-860 {
    min-height: 860% !important;
  }
  .min-xl-vw-860 {
    min-width: 860vw !important;
  }
  .min-xl-vh-860 {
    min-height: 860vh !important;
  }
  .vw-xl-860 {
    width: 860vw !important;
  }
  .vh-xl-860 {
    height: 860vh !important;
  }
  .width-xl-860 {
    width: 860px !important;
  }
  .height-xl-860 {
    height: 860px !important;
  }
  .max-width-xl-860 {
    max-width: 860px !important;
  }
  .min-width-xl-860 {
    min-width: 860px !important;
  }
  .max-height-xl-860 {
    max-height: 860px !important;
  }
  .min-height-xl-860 {
    min-height: 860px !important;
  }
}
.w-860 {
  width: 860% !important;
}

.h-860 {
  height: 860% !important;
}

.max-w-860 {
  max-width: 860% !important;
}

.min-w-860 {
  min-width: 860% !important;
}

.max-h-860 {
  max-height: 860% !important;
}

.min-h-860 {
  min-height: 860% !important;
}

.min-vw-860 {
  min-width: 860vw !important;
}

.min-vh-860 {
  min-height: 860vh !important;
}

.vw-860 {
  width: 860vw !important;
}

.vh-860 {
  height: 860vh !important;
}

.width-860 {
  width: 860px !important;
}

.height-860 {
  height: 860px !important;
}

.max-width-860 {
  max-width: 860px !important;
}

.min-width-860 {
  min-width: 860px !important;
}

.max-height-860 {
  max-height: 860px !important;
}

.min-height-860 {
  min-height: 860px !important;
}

@media (max-width: 576px) {
  .w-sm-870 {
    width: 870% !important;
  }
  .h-sm-870 {
    height: 870% !important;
  }
  .max-w-sm-870 {
    max-width: 870% !important;
  }
  .min-w-sm-870 {
    min-width: 870% !important;
  }
  .max-h-sm-870 {
    max-height: 870% !important;
  }
  .min-h-sm-870 {
    min-height: 870% !important;
  }
  .min-sm-vw-870 {
    min-width: 870vw !important;
  }
  .min-sm-vh-870 {
    min-height: 870vh !important;
  }
  .vw-sm-870 {
    width: 870vw !important;
  }
  .vh-sm-870 {
    height: 870vh !important;
  }
  .width-sm-870 {
    width: 870px !important;
  }
  .height-sm-870 {
    height: 870px !important;
  }
  .max-width-sm-870 {
    max-width: 870 px !important;
  }
  .min-width-sm-870 {
    min-width: 870px !important;
  }
  .max-height-sm-870 {
    max-height: 870px !important;
  }
  .min-height-sm-870 {
    min-height: 870px !important;
  }
}
@media (max-width: 768px) {
  .w-md-870 {
    width: 870% !important;
  }
  .h-md-870 {
    height: 870% !important;
  }
  .max-w-md-870 {
    max-width: 870% !important;
  }
  .min-w-md-870 {
    min-width: 870% !important;
  }
  .max-h-md-870 {
    max-height: 870% !important;
  }
  .min-h-md-870 {
    min-height: 870% !important;
  }
  .min-md-vw-870 {
    min-width: 870vw !important;
  }
  .min-md-vh-870 {
    min-height: 870vh !important;
  }
  .vw-md-870 {
    width: 870vw !important;
  }
  .vh-md-870 {
    height: 870vh !important;
  }
  .width-md-870 {
    width: 870px !important;
  }
  .height-md-870 {
    height: 870px !important;
  }
  .max-width-md-870 {
    max-width: 870px !important;
  }
  .min-width-md-870 {
    min-width: 870px !important;
  }
  .max-height-md-870 {
    max-height: 870px !important;
  }
  .min-height-md-870 {
    min-height: 870px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-870 {
    width: 870% !important;
  }
  .h-lg-870 {
    height: 870% !important;
  }
  .max-w-lg-870 {
    max-width: 870% !important;
  }
  .min-w-lg-870 {
    min-width: 870% !important;
  }
  .max-h-lg-870 {
    max-height: 870% !important;
  }
  .min-h-lg-870 {
    min-height: 870% !important;
  }
  .min-lg-vw-870 {
    min-width: 870vw !important;
  }
  .min-lg-vh-870 {
    min-height: 870vh !important;
  }
  .vw-lg-870 {
    width: 870vw !important;
  }
  .vh-lg-870 {
    height: 870vh !important;
  }
  .width-lg-870 {
    width: 870px !important;
  }
  .height-lg-870 {
    height: 870px !important;
  }
  .max-width-lg-870 {
    max-width: 870px !important;
  }
  .min-width-lg-870 {
    min-width: 870px !important;
  }
  .max-height-lg-870 {
    max-height: 870px !important;
  }
  .min-height-lg-870 {
    min-height: 870px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-870 {
    width: 870% !important;
  }
  .h-xl-870 {
    height: 870% !important;
  }
  .max-w-xl-870 {
    max-width: 870% !important;
  }
  .min-w-xl-870 {
    min-width: 870% !important;
  }
  .max-h-xl-870 {
    max-height: 870% !important;
  }
  .min-h-xl-870 {
    min-height: 870% !important;
  }
  .min-xl-vw-870 {
    min-width: 870vw !important;
  }
  .min-xl-vh-870 {
    min-height: 870vh !important;
  }
  .vw-xl-870 {
    width: 870vw !important;
  }
  .vh-xl-870 {
    height: 870vh !important;
  }
  .width-xl-870 {
    width: 870px !important;
  }
  .height-xl-870 {
    height: 870px !important;
  }
  .max-width-xl-870 {
    max-width: 870px !important;
  }
  .min-width-xl-870 {
    min-width: 870px !important;
  }
  .max-height-xl-870 {
    max-height: 870px !important;
  }
  .min-height-xl-870 {
    min-height: 870px !important;
  }
}
.w-870 {
  width: 870% !important;
}

.h-870 {
  height: 870% !important;
}

.max-w-870 {
  max-width: 870% !important;
}

.min-w-870 {
  min-width: 870% !important;
}

.max-h-870 {
  max-height: 870% !important;
}

.min-h-870 {
  min-height: 870% !important;
}

.min-vw-870 {
  min-width: 870vw !important;
}

.min-vh-870 {
  min-height: 870vh !important;
}

.vw-870 {
  width: 870vw !important;
}

.vh-870 {
  height: 870vh !important;
}

.width-870 {
  width: 870px !important;
}

.height-870 {
  height: 870px !important;
}

.max-width-870 {
  max-width: 870px !important;
}

.min-width-870 {
  min-width: 870px !important;
}

.max-height-870 {
  max-height: 870px !important;
}

.min-height-870 {
  min-height: 870px !important;
}

@media (max-width: 576px) {
  .w-sm-880 {
    width: 880% !important;
  }
  .h-sm-880 {
    height: 880% !important;
  }
  .max-w-sm-880 {
    max-width: 880% !important;
  }
  .min-w-sm-880 {
    min-width: 880% !important;
  }
  .max-h-sm-880 {
    max-height: 880% !important;
  }
  .min-h-sm-880 {
    min-height: 880% !important;
  }
  .min-sm-vw-880 {
    min-width: 880vw !important;
  }
  .min-sm-vh-880 {
    min-height: 880vh !important;
  }
  .vw-sm-880 {
    width: 880vw !important;
  }
  .vh-sm-880 {
    height: 880vh !important;
  }
  .width-sm-880 {
    width: 880px !important;
  }
  .height-sm-880 {
    height: 880px !important;
  }
  .max-width-sm-880 {
    max-width: 880 px !important;
  }
  .min-width-sm-880 {
    min-width: 880px !important;
  }
  .max-height-sm-880 {
    max-height: 880px !important;
  }
  .min-height-sm-880 {
    min-height: 880px !important;
  }
}
@media (max-width: 768px) {
  .w-md-880 {
    width: 880% !important;
  }
  .h-md-880 {
    height: 880% !important;
  }
  .max-w-md-880 {
    max-width: 880% !important;
  }
  .min-w-md-880 {
    min-width: 880% !important;
  }
  .max-h-md-880 {
    max-height: 880% !important;
  }
  .min-h-md-880 {
    min-height: 880% !important;
  }
  .min-md-vw-880 {
    min-width: 880vw !important;
  }
  .min-md-vh-880 {
    min-height: 880vh !important;
  }
  .vw-md-880 {
    width: 880vw !important;
  }
  .vh-md-880 {
    height: 880vh !important;
  }
  .width-md-880 {
    width: 880px !important;
  }
  .height-md-880 {
    height: 880px !important;
  }
  .max-width-md-880 {
    max-width: 880px !important;
  }
  .min-width-md-880 {
    min-width: 880px !important;
  }
  .max-height-md-880 {
    max-height: 880px !important;
  }
  .min-height-md-880 {
    min-height: 880px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-880 {
    width: 880% !important;
  }
  .h-lg-880 {
    height: 880% !important;
  }
  .max-w-lg-880 {
    max-width: 880% !important;
  }
  .min-w-lg-880 {
    min-width: 880% !important;
  }
  .max-h-lg-880 {
    max-height: 880% !important;
  }
  .min-h-lg-880 {
    min-height: 880% !important;
  }
  .min-lg-vw-880 {
    min-width: 880vw !important;
  }
  .min-lg-vh-880 {
    min-height: 880vh !important;
  }
  .vw-lg-880 {
    width: 880vw !important;
  }
  .vh-lg-880 {
    height: 880vh !important;
  }
  .width-lg-880 {
    width: 880px !important;
  }
  .height-lg-880 {
    height: 880px !important;
  }
  .max-width-lg-880 {
    max-width: 880px !important;
  }
  .min-width-lg-880 {
    min-width: 880px !important;
  }
  .max-height-lg-880 {
    max-height: 880px !important;
  }
  .min-height-lg-880 {
    min-height: 880px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-880 {
    width: 880% !important;
  }
  .h-xl-880 {
    height: 880% !important;
  }
  .max-w-xl-880 {
    max-width: 880% !important;
  }
  .min-w-xl-880 {
    min-width: 880% !important;
  }
  .max-h-xl-880 {
    max-height: 880% !important;
  }
  .min-h-xl-880 {
    min-height: 880% !important;
  }
  .min-xl-vw-880 {
    min-width: 880vw !important;
  }
  .min-xl-vh-880 {
    min-height: 880vh !important;
  }
  .vw-xl-880 {
    width: 880vw !important;
  }
  .vh-xl-880 {
    height: 880vh !important;
  }
  .width-xl-880 {
    width: 880px !important;
  }
  .height-xl-880 {
    height: 880px !important;
  }
  .max-width-xl-880 {
    max-width: 880px !important;
  }
  .min-width-xl-880 {
    min-width: 880px !important;
  }
  .max-height-xl-880 {
    max-height: 880px !important;
  }
  .min-height-xl-880 {
    min-height: 880px !important;
  }
}
.w-880 {
  width: 880% !important;
}

.h-880 {
  height: 880% !important;
}

.max-w-880 {
  max-width: 880% !important;
}

.min-w-880 {
  min-width: 880% !important;
}

.max-h-880 {
  max-height: 880% !important;
}

.min-h-880 {
  min-height: 880% !important;
}

.min-vw-880 {
  min-width: 880vw !important;
}

.min-vh-880 {
  min-height: 880vh !important;
}

.vw-880 {
  width: 880vw !important;
}

.vh-880 {
  height: 880vh !important;
}

.width-880 {
  width: 880px !important;
}

.height-880 {
  height: 880px !important;
}

.max-width-880 {
  max-width: 880px !important;
}

.min-width-880 {
  min-width: 880px !important;
}

.max-height-880 {
  max-height: 880px !important;
}

.min-height-880 {
  min-height: 880px !important;
}

@media (max-width: 576px) {
  .w-sm-890 {
    width: 890% !important;
  }
  .h-sm-890 {
    height: 890% !important;
  }
  .max-w-sm-890 {
    max-width: 890% !important;
  }
  .min-w-sm-890 {
    min-width: 890% !important;
  }
  .max-h-sm-890 {
    max-height: 890% !important;
  }
  .min-h-sm-890 {
    min-height: 890% !important;
  }
  .min-sm-vw-890 {
    min-width: 890vw !important;
  }
  .min-sm-vh-890 {
    min-height: 890vh !important;
  }
  .vw-sm-890 {
    width: 890vw !important;
  }
  .vh-sm-890 {
    height: 890vh !important;
  }
  .width-sm-890 {
    width: 890px !important;
  }
  .height-sm-890 {
    height: 890px !important;
  }
  .max-width-sm-890 {
    max-width: 890 px !important;
  }
  .min-width-sm-890 {
    min-width: 890px !important;
  }
  .max-height-sm-890 {
    max-height: 890px !important;
  }
  .min-height-sm-890 {
    min-height: 890px !important;
  }
}
@media (max-width: 768px) {
  .w-md-890 {
    width: 890% !important;
  }
  .h-md-890 {
    height: 890% !important;
  }
  .max-w-md-890 {
    max-width: 890% !important;
  }
  .min-w-md-890 {
    min-width: 890% !important;
  }
  .max-h-md-890 {
    max-height: 890% !important;
  }
  .min-h-md-890 {
    min-height: 890% !important;
  }
  .min-md-vw-890 {
    min-width: 890vw !important;
  }
  .min-md-vh-890 {
    min-height: 890vh !important;
  }
  .vw-md-890 {
    width: 890vw !important;
  }
  .vh-md-890 {
    height: 890vh !important;
  }
  .width-md-890 {
    width: 890px !important;
  }
  .height-md-890 {
    height: 890px !important;
  }
  .max-width-md-890 {
    max-width: 890px !important;
  }
  .min-width-md-890 {
    min-width: 890px !important;
  }
  .max-height-md-890 {
    max-height: 890px !important;
  }
  .min-height-md-890 {
    min-height: 890px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-890 {
    width: 890% !important;
  }
  .h-lg-890 {
    height: 890% !important;
  }
  .max-w-lg-890 {
    max-width: 890% !important;
  }
  .min-w-lg-890 {
    min-width: 890% !important;
  }
  .max-h-lg-890 {
    max-height: 890% !important;
  }
  .min-h-lg-890 {
    min-height: 890% !important;
  }
  .min-lg-vw-890 {
    min-width: 890vw !important;
  }
  .min-lg-vh-890 {
    min-height: 890vh !important;
  }
  .vw-lg-890 {
    width: 890vw !important;
  }
  .vh-lg-890 {
    height: 890vh !important;
  }
  .width-lg-890 {
    width: 890px !important;
  }
  .height-lg-890 {
    height: 890px !important;
  }
  .max-width-lg-890 {
    max-width: 890px !important;
  }
  .min-width-lg-890 {
    min-width: 890px !important;
  }
  .max-height-lg-890 {
    max-height: 890px !important;
  }
  .min-height-lg-890 {
    min-height: 890px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-890 {
    width: 890% !important;
  }
  .h-xl-890 {
    height: 890% !important;
  }
  .max-w-xl-890 {
    max-width: 890% !important;
  }
  .min-w-xl-890 {
    min-width: 890% !important;
  }
  .max-h-xl-890 {
    max-height: 890% !important;
  }
  .min-h-xl-890 {
    min-height: 890% !important;
  }
  .min-xl-vw-890 {
    min-width: 890vw !important;
  }
  .min-xl-vh-890 {
    min-height: 890vh !important;
  }
  .vw-xl-890 {
    width: 890vw !important;
  }
  .vh-xl-890 {
    height: 890vh !important;
  }
  .width-xl-890 {
    width: 890px !important;
  }
  .height-xl-890 {
    height: 890px !important;
  }
  .max-width-xl-890 {
    max-width: 890px !important;
  }
  .min-width-xl-890 {
    min-width: 890px !important;
  }
  .max-height-xl-890 {
    max-height: 890px !important;
  }
  .min-height-xl-890 {
    min-height: 890px !important;
  }
}
.w-890 {
  width: 890% !important;
}

.h-890 {
  height: 890% !important;
}

.max-w-890 {
  max-width: 890% !important;
}

.min-w-890 {
  min-width: 890% !important;
}

.max-h-890 {
  max-height: 890% !important;
}

.min-h-890 {
  min-height: 890% !important;
}

.min-vw-890 {
  min-width: 890vw !important;
}

.min-vh-890 {
  min-height: 890vh !important;
}

.vw-890 {
  width: 890vw !important;
}

.vh-890 {
  height: 890vh !important;
}

.width-890 {
  width: 890px !important;
}

.height-890 {
  height: 890px !important;
}

.max-width-890 {
  max-width: 890px !important;
}

.min-width-890 {
  min-width: 890px !important;
}

.max-height-890 {
  max-height: 890px !important;
}

.min-height-890 {
  min-height: 890px !important;
}

@media (max-width: 576px) {
  .w-sm-900 {
    width: 900% !important;
  }
  .h-sm-900 {
    height: 900% !important;
  }
  .max-w-sm-900 {
    max-width: 900% !important;
  }
  .min-w-sm-900 {
    min-width: 900% !important;
  }
  .max-h-sm-900 {
    max-height: 900% !important;
  }
  .min-h-sm-900 {
    min-height: 900% !important;
  }
  .min-sm-vw-900 {
    min-width: 900vw !important;
  }
  .min-sm-vh-900 {
    min-height: 900vh !important;
  }
  .vw-sm-900 {
    width: 900vw !important;
  }
  .vh-sm-900 {
    height: 900vh !important;
  }
  .width-sm-900 {
    width: 900px !important;
  }
  .height-sm-900 {
    height: 900px !important;
  }
  .max-width-sm-900 {
    max-width: 900 px !important;
  }
  .min-width-sm-900 {
    min-width: 900px !important;
  }
  .max-height-sm-900 {
    max-height: 900px !important;
  }
  .min-height-sm-900 {
    min-height: 900px !important;
  }
}
@media (max-width: 768px) {
  .w-md-900 {
    width: 900% !important;
  }
  .h-md-900 {
    height: 900% !important;
  }
  .max-w-md-900 {
    max-width: 900% !important;
  }
  .min-w-md-900 {
    min-width: 900% !important;
  }
  .max-h-md-900 {
    max-height: 900% !important;
  }
  .min-h-md-900 {
    min-height: 900% !important;
  }
  .min-md-vw-900 {
    min-width: 900vw !important;
  }
  .min-md-vh-900 {
    min-height: 900vh !important;
  }
  .vw-md-900 {
    width: 900vw !important;
  }
  .vh-md-900 {
    height: 900vh !important;
  }
  .width-md-900 {
    width: 900px !important;
  }
  .height-md-900 {
    height: 900px !important;
  }
  .max-width-md-900 {
    max-width: 900px !important;
  }
  .min-width-md-900 {
    min-width: 900px !important;
  }
  .max-height-md-900 {
    max-height: 900px !important;
  }
  .min-height-md-900 {
    min-height: 900px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-900 {
    width: 900% !important;
  }
  .h-lg-900 {
    height: 900% !important;
  }
  .max-w-lg-900 {
    max-width: 900% !important;
  }
  .min-w-lg-900 {
    min-width: 900% !important;
  }
  .max-h-lg-900 {
    max-height: 900% !important;
  }
  .min-h-lg-900 {
    min-height: 900% !important;
  }
  .min-lg-vw-900 {
    min-width: 900vw !important;
  }
  .min-lg-vh-900 {
    min-height: 900vh !important;
  }
  .vw-lg-900 {
    width: 900vw !important;
  }
  .vh-lg-900 {
    height: 900vh !important;
  }
  .width-lg-900 {
    width: 900px !important;
  }
  .height-lg-900 {
    height: 900px !important;
  }
  .max-width-lg-900 {
    max-width: 900px !important;
  }
  .min-width-lg-900 {
    min-width: 900px !important;
  }
  .max-height-lg-900 {
    max-height: 900px !important;
  }
  .min-height-lg-900 {
    min-height: 900px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-900 {
    width: 900% !important;
  }
  .h-xl-900 {
    height: 900% !important;
  }
  .max-w-xl-900 {
    max-width: 900% !important;
  }
  .min-w-xl-900 {
    min-width: 900% !important;
  }
  .max-h-xl-900 {
    max-height: 900% !important;
  }
  .min-h-xl-900 {
    min-height: 900% !important;
  }
  .min-xl-vw-900 {
    min-width: 900vw !important;
  }
  .min-xl-vh-900 {
    min-height: 900vh !important;
  }
  .vw-xl-900 {
    width: 900vw !important;
  }
  .vh-xl-900 {
    height: 900vh !important;
  }
  .width-xl-900 {
    width: 900px !important;
  }
  .height-xl-900 {
    height: 900px !important;
  }
  .max-width-xl-900 {
    max-width: 900px !important;
  }
  .min-width-xl-900 {
    min-width: 900px !important;
  }
  .max-height-xl-900 {
    max-height: 900px !important;
  }
  .min-height-xl-900 {
    min-height: 900px !important;
  }
}
.w-900 {
  width: 900% !important;
}

.h-900 {
  height: 900% !important;
}

.max-w-900 {
  max-width: 900% !important;
}

.min-w-900 {
  min-width: 900% !important;
}

.max-h-900 {
  max-height: 900% !important;
}

.min-h-900 {
  min-height: 900% !important;
}

.min-vw-900 {
  min-width: 900vw !important;
}

.min-vh-900 {
  min-height: 900vh !important;
}

.vw-900 {
  width: 900vw !important;
}

.vh-900 {
  height: 900vh !important;
}

.width-900 {
  width: 900px !important;
}

.height-900 {
  height: 900px !important;
}

.max-width-900 {
  max-width: 900px !important;
}

.min-width-900 {
  min-width: 900px !important;
}

.max-height-900 {
  max-height: 900px !important;
}

.min-height-900 {
  min-height: 900px !important;
}

@media (max-width: 576px) {
  .w-sm-910 {
    width: 910% !important;
  }
  .h-sm-910 {
    height: 910% !important;
  }
  .max-w-sm-910 {
    max-width: 910% !important;
  }
  .min-w-sm-910 {
    min-width: 910% !important;
  }
  .max-h-sm-910 {
    max-height: 910% !important;
  }
  .min-h-sm-910 {
    min-height: 910% !important;
  }
  .min-sm-vw-910 {
    min-width: 910vw !important;
  }
  .min-sm-vh-910 {
    min-height: 910vh !important;
  }
  .vw-sm-910 {
    width: 910vw !important;
  }
  .vh-sm-910 {
    height: 910vh !important;
  }
  .width-sm-910 {
    width: 910px !important;
  }
  .height-sm-910 {
    height: 910px !important;
  }
  .max-width-sm-910 {
    max-width: 910 px !important;
  }
  .min-width-sm-910 {
    min-width: 910px !important;
  }
  .max-height-sm-910 {
    max-height: 910px !important;
  }
  .min-height-sm-910 {
    min-height: 910px !important;
  }
}
@media (max-width: 768px) {
  .w-md-910 {
    width: 910% !important;
  }
  .h-md-910 {
    height: 910% !important;
  }
  .max-w-md-910 {
    max-width: 910% !important;
  }
  .min-w-md-910 {
    min-width: 910% !important;
  }
  .max-h-md-910 {
    max-height: 910% !important;
  }
  .min-h-md-910 {
    min-height: 910% !important;
  }
  .min-md-vw-910 {
    min-width: 910vw !important;
  }
  .min-md-vh-910 {
    min-height: 910vh !important;
  }
  .vw-md-910 {
    width: 910vw !important;
  }
  .vh-md-910 {
    height: 910vh !important;
  }
  .width-md-910 {
    width: 910px !important;
  }
  .height-md-910 {
    height: 910px !important;
  }
  .max-width-md-910 {
    max-width: 910px !important;
  }
  .min-width-md-910 {
    min-width: 910px !important;
  }
  .max-height-md-910 {
    max-height: 910px !important;
  }
  .min-height-md-910 {
    min-height: 910px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-910 {
    width: 910% !important;
  }
  .h-lg-910 {
    height: 910% !important;
  }
  .max-w-lg-910 {
    max-width: 910% !important;
  }
  .min-w-lg-910 {
    min-width: 910% !important;
  }
  .max-h-lg-910 {
    max-height: 910% !important;
  }
  .min-h-lg-910 {
    min-height: 910% !important;
  }
  .min-lg-vw-910 {
    min-width: 910vw !important;
  }
  .min-lg-vh-910 {
    min-height: 910vh !important;
  }
  .vw-lg-910 {
    width: 910vw !important;
  }
  .vh-lg-910 {
    height: 910vh !important;
  }
  .width-lg-910 {
    width: 910px !important;
  }
  .height-lg-910 {
    height: 910px !important;
  }
  .max-width-lg-910 {
    max-width: 910px !important;
  }
  .min-width-lg-910 {
    min-width: 910px !important;
  }
  .max-height-lg-910 {
    max-height: 910px !important;
  }
  .min-height-lg-910 {
    min-height: 910px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-910 {
    width: 910% !important;
  }
  .h-xl-910 {
    height: 910% !important;
  }
  .max-w-xl-910 {
    max-width: 910% !important;
  }
  .min-w-xl-910 {
    min-width: 910% !important;
  }
  .max-h-xl-910 {
    max-height: 910% !important;
  }
  .min-h-xl-910 {
    min-height: 910% !important;
  }
  .min-xl-vw-910 {
    min-width: 910vw !important;
  }
  .min-xl-vh-910 {
    min-height: 910vh !important;
  }
  .vw-xl-910 {
    width: 910vw !important;
  }
  .vh-xl-910 {
    height: 910vh !important;
  }
  .width-xl-910 {
    width: 910px !important;
  }
  .height-xl-910 {
    height: 910px !important;
  }
  .max-width-xl-910 {
    max-width: 910px !important;
  }
  .min-width-xl-910 {
    min-width: 910px !important;
  }
  .max-height-xl-910 {
    max-height: 910px !important;
  }
  .min-height-xl-910 {
    min-height: 910px !important;
  }
}
.w-910 {
  width: 910% !important;
}

.h-910 {
  height: 910% !important;
}

.max-w-910 {
  max-width: 910% !important;
}

.min-w-910 {
  min-width: 910% !important;
}

.max-h-910 {
  max-height: 910% !important;
}

.min-h-910 {
  min-height: 910% !important;
}

.min-vw-910 {
  min-width: 910vw !important;
}

.min-vh-910 {
  min-height: 910vh !important;
}

.vw-910 {
  width: 910vw !important;
}

.vh-910 {
  height: 910vh !important;
}

.width-910 {
  width: 910px !important;
}

.height-910 {
  height: 910px !important;
}

.max-width-910 {
  max-width: 910px !important;
}

.min-width-910 {
  min-width: 910px !important;
}

.max-height-910 {
  max-height: 910px !important;
}

.min-height-910 {
  min-height: 910px !important;
}

@media (max-width: 576px) {
  .w-sm-920 {
    width: 920% !important;
  }
  .h-sm-920 {
    height: 920% !important;
  }
  .max-w-sm-920 {
    max-width: 920% !important;
  }
  .min-w-sm-920 {
    min-width: 920% !important;
  }
  .max-h-sm-920 {
    max-height: 920% !important;
  }
  .min-h-sm-920 {
    min-height: 920% !important;
  }
  .min-sm-vw-920 {
    min-width: 920vw !important;
  }
  .min-sm-vh-920 {
    min-height: 920vh !important;
  }
  .vw-sm-920 {
    width: 920vw !important;
  }
  .vh-sm-920 {
    height: 920vh !important;
  }
  .width-sm-920 {
    width: 920px !important;
  }
  .height-sm-920 {
    height: 920px !important;
  }
  .max-width-sm-920 {
    max-width: 920 px !important;
  }
  .min-width-sm-920 {
    min-width: 920px !important;
  }
  .max-height-sm-920 {
    max-height: 920px !important;
  }
  .min-height-sm-920 {
    min-height: 920px !important;
  }
}
@media (max-width: 768px) {
  .w-md-920 {
    width: 920% !important;
  }
  .h-md-920 {
    height: 920% !important;
  }
  .max-w-md-920 {
    max-width: 920% !important;
  }
  .min-w-md-920 {
    min-width: 920% !important;
  }
  .max-h-md-920 {
    max-height: 920% !important;
  }
  .min-h-md-920 {
    min-height: 920% !important;
  }
  .min-md-vw-920 {
    min-width: 920vw !important;
  }
  .min-md-vh-920 {
    min-height: 920vh !important;
  }
  .vw-md-920 {
    width: 920vw !important;
  }
  .vh-md-920 {
    height: 920vh !important;
  }
  .width-md-920 {
    width: 920px !important;
  }
  .height-md-920 {
    height: 920px !important;
  }
  .max-width-md-920 {
    max-width: 920px !important;
  }
  .min-width-md-920 {
    min-width: 920px !important;
  }
  .max-height-md-920 {
    max-height: 920px !important;
  }
  .min-height-md-920 {
    min-height: 920px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-920 {
    width: 920% !important;
  }
  .h-lg-920 {
    height: 920% !important;
  }
  .max-w-lg-920 {
    max-width: 920% !important;
  }
  .min-w-lg-920 {
    min-width: 920% !important;
  }
  .max-h-lg-920 {
    max-height: 920% !important;
  }
  .min-h-lg-920 {
    min-height: 920% !important;
  }
  .min-lg-vw-920 {
    min-width: 920vw !important;
  }
  .min-lg-vh-920 {
    min-height: 920vh !important;
  }
  .vw-lg-920 {
    width: 920vw !important;
  }
  .vh-lg-920 {
    height: 920vh !important;
  }
  .width-lg-920 {
    width: 920px !important;
  }
  .height-lg-920 {
    height: 920px !important;
  }
  .max-width-lg-920 {
    max-width: 920px !important;
  }
  .min-width-lg-920 {
    min-width: 920px !important;
  }
  .max-height-lg-920 {
    max-height: 920px !important;
  }
  .min-height-lg-920 {
    min-height: 920px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-920 {
    width: 920% !important;
  }
  .h-xl-920 {
    height: 920% !important;
  }
  .max-w-xl-920 {
    max-width: 920% !important;
  }
  .min-w-xl-920 {
    min-width: 920% !important;
  }
  .max-h-xl-920 {
    max-height: 920% !important;
  }
  .min-h-xl-920 {
    min-height: 920% !important;
  }
  .min-xl-vw-920 {
    min-width: 920vw !important;
  }
  .min-xl-vh-920 {
    min-height: 920vh !important;
  }
  .vw-xl-920 {
    width: 920vw !important;
  }
  .vh-xl-920 {
    height: 920vh !important;
  }
  .width-xl-920 {
    width: 920px !important;
  }
  .height-xl-920 {
    height: 920px !important;
  }
  .max-width-xl-920 {
    max-width: 920px !important;
  }
  .min-width-xl-920 {
    min-width: 920px !important;
  }
  .max-height-xl-920 {
    max-height: 920px !important;
  }
  .min-height-xl-920 {
    min-height: 920px !important;
  }
}
.w-920 {
  width: 920% !important;
}

.h-920 {
  height: 920% !important;
}

.max-w-920 {
  max-width: 920% !important;
}

.min-w-920 {
  min-width: 920% !important;
}

.max-h-920 {
  max-height: 920% !important;
}

.min-h-920 {
  min-height: 920% !important;
}

.min-vw-920 {
  min-width: 920vw !important;
}

.min-vh-920 {
  min-height: 920vh !important;
}

.vw-920 {
  width: 920vw !important;
}

.vh-920 {
  height: 920vh !important;
}

.width-920 {
  width: 920px !important;
}

.height-920 {
  height: 920px !important;
}

.max-width-920 {
  max-width: 920px !important;
}

.min-width-920 {
  min-width: 920px !important;
}

.max-height-920 {
  max-height: 920px !important;
}

.min-height-920 {
  min-height: 920px !important;
}

@media (max-width: 576px) {
  .w-sm-930 {
    width: 930% !important;
  }
  .h-sm-930 {
    height: 930% !important;
  }
  .max-w-sm-930 {
    max-width: 930% !important;
  }
  .min-w-sm-930 {
    min-width: 930% !important;
  }
  .max-h-sm-930 {
    max-height: 930% !important;
  }
  .min-h-sm-930 {
    min-height: 930% !important;
  }
  .min-sm-vw-930 {
    min-width: 930vw !important;
  }
  .min-sm-vh-930 {
    min-height: 930vh !important;
  }
  .vw-sm-930 {
    width: 930vw !important;
  }
  .vh-sm-930 {
    height: 930vh !important;
  }
  .width-sm-930 {
    width: 930px !important;
  }
  .height-sm-930 {
    height: 930px !important;
  }
  .max-width-sm-930 {
    max-width: 930 px !important;
  }
  .min-width-sm-930 {
    min-width: 930px !important;
  }
  .max-height-sm-930 {
    max-height: 930px !important;
  }
  .min-height-sm-930 {
    min-height: 930px !important;
  }
}
@media (max-width: 768px) {
  .w-md-930 {
    width: 930% !important;
  }
  .h-md-930 {
    height: 930% !important;
  }
  .max-w-md-930 {
    max-width: 930% !important;
  }
  .min-w-md-930 {
    min-width: 930% !important;
  }
  .max-h-md-930 {
    max-height: 930% !important;
  }
  .min-h-md-930 {
    min-height: 930% !important;
  }
  .min-md-vw-930 {
    min-width: 930vw !important;
  }
  .min-md-vh-930 {
    min-height: 930vh !important;
  }
  .vw-md-930 {
    width: 930vw !important;
  }
  .vh-md-930 {
    height: 930vh !important;
  }
  .width-md-930 {
    width: 930px !important;
  }
  .height-md-930 {
    height: 930px !important;
  }
  .max-width-md-930 {
    max-width: 930px !important;
  }
  .min-width-md-930 {
    min-width: 930px !important;
  }
  .max-height-md-930 {
    max-height: 930px !important;
  }
  .min-height-md-930 {
    min-height: 930px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-930 {
    width: 930% !important;
  }
  .h-lg-930 {
    height: 930% !important;
  }
  .max-w-lg-930 {
    max-width: 930% !important;
  }
  .min-w-lg-930 {
    min-width: 930% !important;
  }
  .max-h-lg-930 {
    max-height: 930% !important;
  }
  .min-h-lg-930 {
    min-height: 930% !important;
  }
  .min-lg-vw-930 {
    min-width: 930vw !important;
  }
  .min-lg-vh-930 {
    min-height: 930vh !important;
  }
  .vw-lg-930 {
    width: 930vw !important;
  }
  .vh-lg-930 {
    height: 930vh !important;
  }
  .width-lg-930 {
    width: 930px !important;
  }
  .height-lg-930 {
    height: 930px !important;
  }
  .max-width-lg-930 {
    max-width: 930px !important;
  }
  .min-width-lg-930 {
    min-width: 930px !important;
  }
  .max-height-lg-930 {
    max-height: 930px !important;
  }
  .min-height-lg-930 {
    min-height: 930px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-930 {
    width: 930% !important;
  }
  .h-xl-930 {
    height: 930% !important;
  }
  .max-w-xl-930 {
    max-width: 930% !important;
  }
  .min-w-xl-930 {
    min-width: 930% !important;
  }
  .max-h-xl-930 {
    max-height: 930% !important;
  }
  .min-h-xl-930 {
    min-height: 930% !important;
  }
  .min-xl-vw-930 {
    min-width: 930vw !important;
  }
  .min-xl-vh-930 {
    min-height: 930vh !important;
  }
  .vw-xl-930 {
    width: 930vw !important;
  }
  .vh-xl-930 {
    height: 930vh !important;
  }
  .width-xl-930 {
    width: 930px !important;
  }
  .height-xl-930 {
    height: 930px !important;
  }
  .max-width-xl-930 {
    max-width: 930px !important;
  }
  .min-width-xl-930 {
    min-width: 930px !important;
  }
  .max-height-xl-930 {
    max-height: 930px !important;
  }
  .min-height-xl-930 {
    min-height: 930px !important;
  }
}
.w-930 {
  width: 930% !important;
}

.h-930 {
  height: 930% !important;
}

.max-w-930 {
  max-width: 930% !important;
}

.min-w-930 {
  min-width: 930% !important;
}

.max-h-930 {
  max-height: 930% !important;
}

.min-h-930 {
  min-height: 930% !important;
}

.min-vw-930 {
  min-width: 930vw !important;
}

.min-vh-930 {
  min-height: 930vh !important;
}

.vw-930 {
  width: 930vw !important;
}

.vh-930 {
  height: 930vh !important;
}

.width-930 {
  width: 930px !important;
}

.height-930 {
  height: 930px !important;
}

.max-width-930 {
  max-width: 930px !important;
}

.min-width-930 {
  min-width: 930px !important;
}

.max-height-930 {
  max-height: 930px !important;
}

.min-height-930 {
  min-height: 930px !important;
}

@media (max-width: 576px) {
  .w-sm-940 {
    width: 940% !important;
  }
  .h-sm-940 {
    height: 940% !important;
  }
  .max-w-sm-940 {
    max-width: 940% !important;
  }
  .min-w-sm-940 {
    min-width: 940% !important;
  }
  .max-h-sm-940 {
    max-height: 940% !important;
  }
  .min-h-sm-940 {
    min-height: 940% !important;
  }
  .min-sm-vw-940 {
    min-width: 940vw !important;
  }
  .min-sm-vh-940 {
    min-height: 940vh !important;
  }
  .vw-sm-940 {
    width: 940vw !important;
  }
  .vh-sm-940 {
    height: 940vh !important;
  }
  .width-sm-940 {
    width: 940px !important;
  }
  .height-sm-940 {
    height: 940px !important;
  }
  .max-width-sm-940 {
    max-width: 940 px !important;
  }
  .min-width-sm-940 {
    min-width: 940px !important;
  }
  .max-height-sm-940 {
    max-height: 940px !important;
  }
  .min-height-sm-940 {
    min-height: 940px !important;
  }
}
@media (max-width: 768px) {
  .w-md-940 {
    width: 940% !important;
  }
  .h-md-940 {
    height: 940% !important;
  }
  .max-w-md-940 {
    max-width: 940% !important;
  }
  .min-w-md-940 {
    min-width: 940% !important;
  }
  .max-h-md-940 {
    max-height: 940% !important;
  }
  .min-h-md-940 {
    min-height: 940% !important;
  }
  .min-md-vw-940 {
    min-width: 940vw !important;
  }
  .min-md-vh-940 {
    min-height: 940vh !important;
  }
  .vw-md-940 {
    width: 940vw !important;
  }
  .vh-md-940 {
    height: 940vh !important;
  }
  .width-md-940 {
    width: 940px !important;
  }
  .height-md-940 {
    height: 940px !important;
  }
  .max-width-md-940 {
    max-width: 940px !important;
  }
  .min-width-md-940 {
    min-width: 940px !important;
  }
  .max-height-md-940 {
    max-height: 940px !important;
  }
  .min-height-md-940 {
    min-height: 940px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-940 {
    width: 940% !important;
  }
  .h-lg-940 {
    height: 940% !important;
  }
  .max-w-lg-940 {
    max-width: 940% !important;
  }
  .min-w-lg-940 {
    min-width: 940% !important;
  }
  .max-h-lg-940 {
    max-height: 940% !important;
  }
  .min-h-lg-940 {
    min-height: 940% !important;
  }
  .min-lg-vw-940 {
    min-width: 940vw !important;
  }
  .min-lg-vh-940 {
    min-height: 940vh !important;
  }
  .vw-lg-940 {
    width: 940vw !important;
  }
  .vh-lg-940 {
    height: 940vh !important;
  }
  .width-lg-940 {
    width: 940px !important;
  }
  .height-lg-940 {
    height: 940px !important;
  }
  .max-width-lg-940 {
    max-width: 940px !important;
  }
  .min-width-lg-940 {
    min-width: 940px !important;
  }
  .max-height-lg-940 {
    max-height: 940px !important;
  }
  .min-height-lg-940 {
    min-height: 940px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-940 {
    width: 940% !important;
  }
  .h-xl-940 {
    height: 940% !important;
  }
  .max-w-xl-940 {
    max-width: 940% !important;
  }
  .min-w-xl-940 {
    min-width: 940% !important;
  }
  .max-h-xl-940 {
    max-height: 940% !important;
  }
  .min-h-xl-940 {
    min-height: 940% !important;
  }
  .min-xl-vw-940 {
    min-width: 940vw !important;
  }
  .min-xl-vh-940 {
    min-height: 940vh !important;
  }
  .vw-xl-940 {
    width: 940vw !important;
  }
  .vh-xl-940 {
    height: 940vh !important;
  }
  .width-xl-940 {
    width: 940px !important;
  }
  .height-xl-940 {
    height: 940px !important;
  }
  .max-width-xl-940 {
    max-width: 940px !important;
  }
  .min-width-xl-940 {
    min-width: 940px !important;
  }
  .max-height-xl-940 {
    max-height: 940px !important;
  }
  .min-height-xl-940 {
    min-height: 940px !important;
  }
}
.w-940 {
  width: 940% !important;
}

.h-940 {
  height: 940% !important;
}

.max-w-940 {
  max-width: 940% !important;
}

.min-w-940 {
  min-width: 940% !important;
}

.max-h-940 {
  max-height: 940% !important;
}

.min-h-940 {
  min-height: 940% !important;
}

.min-vw-940 {
  min-width: 940vw !important;
}

.min-vh-940 {
  min-height: 940vh !important;
}

.vw-940 {
  width: 940vw !important;
}

.vh-940 {
  height: 940vh !important;
}

.width-940 {
  width: 940px !important;
}

.height-940 {
  height: 940px !important;
}

.max-width-940 {
  max-width: 940px !important;
}

.min-width-940 {
  min-width: 940px !important;
}

.max-height-940 {
  max-height: 940px !important;
}

.min-height-940 {
  min-height: 940px !important;
}

@media (max-width: 576px) {
  .w-sm-950 {
    width: 950% !important;
  }
  .h-sm-950 {
    height: 950% !important;
  }
  .max-w-sm-950 {
    max-width: 950% !important;
  }
  .min-w-sm-950 {
    min-width: 950% !important;
  }
  .max-h-sm-950 {
    max-height: 950% !important;
  }
  .min-h-sm-950 {
    min-height: 950% !important;
  }
  .min-sm-vw-950 {
    min-width: 950vw !important;
  }
  .min-sm-vh-950 {
    min-height: 950vh !important;
  }
  .vw-sm-950 {
    width: 950vw !important;
  }
  .vh-sm-950 {
    height: 950vh !important;
  }
  .width-sm-950 {
    width: 950px !important;
  }
  .height-sm-950 {
    height: 950px !important;
  }
  .max-width-sm-950 {
    max-width: 950 px !important;
  }
  .min-width-sm-950 {
    min-width: 950px !important;
  }
  .max-height-sm-950 {
    max-height: 950px !important;
  }
  .min-height-sm-950 {
    min-height: 950px !important;
  }
}
@media (max-width: 768px) {
  .w-md-950 {
    width: 950% !important;
  }
  .h-md-950 {
    height: 950% !important;
  }
  .max-w-md-950 {
    max-width: 950% !important;
  }
  .min-w-md-950 {
    min-width: 950% !important;
  }
  .max-h-md-950 {
    max-height: 950% !important;
  }
  .min-h-md-950 {
    min-height: 950% !important;
  }
  .min-md-vw-950 {
    min-width: 950vw !important;
  }
  .min-md-vh-950 {
    min-height: 950vh !important;
  }
  .vw-md-950 {
    width: 950vw !important;
  }
  .vh-md-950 {
    height: 950vh !important;
  }
  .width-md-950 {
    width: 950px !important;
  }
  .height-md-950 {
    height: 950px !important;
  }
  .max-width-md-950 {
    max-width: 950px !important;
  }
  .min-width-md-950 {
    min-width: 950px !important;
  }
  .max-height-md-950 {
    max-height: 950px !important;
  }
  .min-height-md-950 {
    min-height: 950px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-950 {
    width: 950% !important;
  }
  .h-lg-950 {
    height: 950% !important;
  }
  .max-w-lg-950 {
    max-width: 950% !important;
  }
  .min-w-lg-950 {
    min-width: 950% !important;
  }
  .max-h-lg-950 {
    max-height: 950% !important;
  }
  .min-h-lg-950 {
    min-height: 950% !important;
  }
  .min-lg-vw-950 {
    min-width: 950vw !important;
  }
  .min-lg-vh-950 {
    min-height: 950vh !important;
  }
  .vw-lg-950 {
    width: 950vw !important;
  }
  .vh-lg-950 {
    height: 950vh !important;
  }
  .width-lg-950 {
    width: 950px !important;
  }
  .height-lg-950 {
    height: 950px !important;
  }
  .max-width-lg-950 {
    max-width: 950px !important;
  }
  .min-width-lg-950 {
    min-width: 950px !important;
  }
  .max-height-lg-950 {
    max-height: 950px !important;
  }
  .min-height-lg-950 {
    min-height: 950px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-950 {
    width: 950% !important;
  }
  .h-xl-950 {
    height: 950% !important;
  }
  .max-w-xl-950 {
    max-width: 950% !important;
  }
  .min-w-xl-950 {
    min-width: 950% !important;
  }
  .max-h-xl-950 {
    max-height: 950% !important;
  }
  .min-h-xl-950 {
    min-height: 950% !important;
  }
  .min-xl-vw-950 {
    min-width: 950vw !important;
  }
  .min-xl-vh-950 {
    min-height: 950vh !important;
  }
  .vw-xl-950 {
    width: 950vw !important;
  }
  .vh-xl-950 {
    height: 950vh !important;
  }
  .width-xl-950 {
    width: 950px !important;
  }
  .height-xl-950 {
    height: 950px !important;
  }
  .max-width-xl-950 {
    max-width: 950px !important;
  }
  .min-width-xl-950 {
    min-width: 950px !important;
  }
  .max-height-xl-950 {
    max-height: 950px !important;
  }
  .min-height-xl-950 {
    min-height: 950px !important;
  }
}
.w-950 {
  width: 950% !important;
}

.h-950 {
  height: 950% !important;
}

.max-w-950 {
  max-width: 950% !important;
}

.min-w-950 {
  min-width: 950% !important;
}

.max-h-950 {
  max-height: 950% !important;
}

.min-h-950 {
  min-height: 950% !important;
}

.min-vw-950 {
  min-width: 950vw !important;
}

.min-vh-950 {
  min-height: 950vh !important;
}

.vw-950 {
  width: 950vw !important;
}

.vh-950 {
  height: 950vh !important;
}

.width-950 {
  width: 950px !important;
}

.height-950 {
  height: 950px !important;
}

.max-width-950 {
  max-width: 950px !important;
}

.min-width-950 {
  min-width: 950px !important;
}

.max-height-950 {
  max-height: 950px !important;
}

.min-height-950 {
  min-height: 950px !important;
}

@media (max-width: 576px) {
  .w-sm-960 {
    width: 960% !important;
  }
  .h-sm-960 {
    height: 960% !important;
  }
  .max-w-sm-960 {
    max-width: 960% !important;
  }
  .min-w-sm-960 {
    min-width: 960% !important;
  }
  .max-h-sm-960 {
    max-height: 960% !important;
  }
  .min-h-sm-960 {
    min-height: 960% !important;
  }
  .min-sm-vw-960 {
    min-width: 960vw !important;
  }
  .min-sm-vh-960 {
    min-height: 960vh !important;
  }
  .vw-sm-960 {
    width: 960vw !important;
  }
  .vh-sm-960 {
    height: 960vh !important;
  }
  .width-sm-960 {
    width: 960px !important;
  }
  .height-sm-960 {
    height: 960px !important;
  }
  .max-width-sm-960 {
    max-width: 960 px !important;
  }
  .min-width-sm-960 {
    min-width: 960px !important;
  }
  .max-height-sm-960 {
    max-height: 960px !important;
  }
  .min-height-sm-960 {
    min-height: 960px !important;
  }
}
@media (max-width: 768px) {
  .w-md-960 {
    width: 960% !important;
  }
  .h-md-960 {
    height: 960% !important;
  }
  .max-w-md-960 {
    max-width: 960% !important;
  }
  .min-w-md-960 {
    min-width: 960% !important;
  }
  .max-h-md-960 {
    max-height: 960% !important;
  }
  .min-h-md-960 {
    min-height: 960% !important;
  }
  .min-md-vw-960 {
    min-width: 960vw !important;
  }
  .min-md-vh-960 {
    min-height: 960vh !important;
  }
  .vw-md-960 {
    width: 960vw !important;
  }
  .vh-md-960 {
    height: 960vh !important;
  }
  .width-md-960 {
    width: 960px !important;
  }
  .height-md-960 {
    height: 960px !important;
  }
  .max-width-md-960 {
    max-width: 960px !important;
  }
  .min-width-md-960 {
    min-width: 960px !important;
  }
  .max-height-md-960 {
    max-height: 960px !important;
  }
  .min-height-md-960 {
    min-height: 960px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-960 {
    width: 960% !important;
  }
  .h-lg-960 {
    height: 960% !important;
  }
  .max-w-lg-960 {
    max-width: 960% !important;
  }
  .min-w-lg-960 {
    min-width: 960% !important;
  }
  .max-h-lg-960 {
    max-height: 960% !important;
  }
  .min-h-lg-960 {
    min-height: 960% !important;
  }
  .min-lg-vw-960 {
    min-width: 960vw !important;
  }
  .min-lg-vh-960 {
    min-height: 960vh !important;
  }
  .vw-lg-960 {
    width: 960vw !important;
  }
  .vh-lg-960 {
    height: 960vh !important;
  }
  .width-lg-960 {
    width: 960px !important;
  }
  .height-lg-960 {
    height: 960px !important;
  }
  .max-width-lg-960 {
    max-width: 960px !important;
  }
  .min-width-lg-960 {
    min-width: 960px !important;
  }
  .max-height-lg-960 {
    max-height: 960px !important;
  }
  .min-height-lg-960 {
    min-height: 960px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-960 {
    width: 960% !important;
  }
  .h-xl-960 {
    height: 960% !important;
  }
  .max-w-xl-960 {
    max-width: 960% !important;
  }
  .min-w-xl-960 {
    min-width: 960% !important;
  }
  .max-h-xl-960 {
    max-height: 960% !important;
  }
  .min-h-xl-960 {
    min-height: 960% !important;
  }
  .min-xl-vw-960 {
    min-width: 960vw !important;
  }
  .min-xl-vh-960 {
    min-height: 960vh !important;
  }
  .vw-xl-960 {
    width: 960vw !important;
  }
  .vh-xl-960 {
    height: 960vh !important;
  }
  .width-xl-960 {
    width: 960px !important;
  }
  .height-xl-960 {
    height: 960px !important;
  }
  .max-width-xl-960 {
    max-width: 960px !important;
  }
  .min-width-xl-960 {
    min-width: 960px !important;
  }
  .max-height-xl-960 {
    max-height: 960px !important;
  }
  .min-height-xl-960 {
    min-height: 960px !important;
  }
}
.w-960 {
  width: 960% !important;
}

.h-960 {
  height: 960% !important;
}

.max-w-960 {
  max-width: 960% !important;
}

.min-w-960 {
  min-width: 960% !important;
}

.max-h-960 {
  max-height: 960% !important;
}

.min-h-960 {
  min-height: 960% !important;
}

.min-vw-960 {
  min-width: 960vw !important;
}

.min-vh-960 {
  min-height: 960vh !important;
}

.vw-960 {
  width: 960vw !important;
}

.vh-960 {
  height: 960vh !important;
}

.width-960 {
  width: 960px !important;
}

.height-960 {
  height: 960px !important;
}

.max-width-960 {
  max-width: 960px !important;
}

.min-width-960 {
  min-width: 960px !important;
}

.max-height-960 {
  max-height: 960px !important;
}

.min-height-960 {
  min-height: 960px !important;
}

@media (max-width: 576px) {
  .w-sm-970 {
    width: 970% !important;
  }
  .h-sm-970 {
    height: 970% !important;
  }
  .max-w-sm-970 {
    max-width: 970% !important;
  }
  .min-w-sm-970 {
    min-width: 970% !important;
  }
  .max-h-sm-970 {
    max-height: 970% !important;
  }
  .min-h-sm-970 {
    min-height: 970% !important;
  }
  .min-sm-vw-970 {
    min-width: 970vw !important;
  }
  .min-sm-vh-970 {
    min-height: 970vh !important;
  }
  .vw-sm-970 {
    width: 970vw !important;
  }
  .vh-sm-970 {
    height: 970vh !important;
  }
  .width-sm-970 {
    width: 970px !important;
  }
  .height-sm-970 {
    height: 970px !important;
  }
  .max-width-sm-970 {
    max-width: 970 px !important;
  }
  .min-width-sm-970 {
    min-width: 970px !important;
  }
  .max-height-sm-970 {
    max-height: 970px !important;
  }
  .min-height-sm-970 {
    min-height: 970px !important;
  }
}
@media (max-width: 768px) {
  .w-md-970 {
    width: 970% !important;
  }
  .h-md-970 {
    height: 970% !important;
  }
  .max-w-md-970 {
    max-width: 970% !important;
  }
  .min-w-md-970 {
    min-width: 970% !important;
  }
  .max-h-md-970 {
    max-height: 970% !important;
  }
  .min-h-md-970 {
    min-height: 970% !important;
  }
  .min-md-vw-970 {
    min-width: 970vw !important;
  }
  .min-md-vh-970 {
    min-height: 970vh !important;
  }
  .vw-md-970 {
    width: 970vw !important;
  }
  .vh-md-970 {
    height: 970vh !important;
  }
  .width-md-970 {
    width: 970px !important;
  }
  .height-md-970 {
    height: 970px !important;
  }
  .max-width-md-970 {
    max-width: 970px !important;
  }
  .min-width-md-970 {
    min-width: 970px !important;
  }
  .max-height-md-970 {
    max-height: 970px !important;
  }
  .min-height-md-970 {
    min-height: 970px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-970 {
    width: 970% !important;
  }
  .h-lg-970 {
    height: 970% !important;
  }
  .max-w-lg-970 {
    max-width: 970% !important;
  }
  .min-w-lg-970 {
    min-width: 970% !important;
  }
  .max-h-lg-970 {
    max-height: 970% !important;
  }
  .min-h-lg-970 {
    min-height: 970% !important;
  }
  .min-lg-vw-970 {
    min-width: 970vw !important;
  }
  .min-lg-vh-970 {
    min-height: 970vh !important;
  }
  .vw-lg-970 {
    width: 970vw !important;
  }
  .vh-lg-970 {
    height: 970vh !important;
  }
  .width-lg-970 {
    width: 970px !important;
  }
  .height-lg-970 {
    height: 970px !important;
  }
  .max-width-lg-970 {
    max-width: 970px !important;
  }
  .min-width-lg-970 {
    min-width: 970px !important;
  }
  .max-height-lg-970 {
    max-height: 970px !important;
  }
  .min-height-lg-970 {
    min-height: 970px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-970 {
    width: 970% !important;
  }
  .h-xl-970 {
    height: 970% !important;
  }
  .max-w-xl-970 {
    max-width: 970% !important;
  }
  .min-w-xl-970 {
    min-width: 970% !important;
  }
  .max-h-xl-970 {
    max-height: 970% !important;
  }
  .min-h-xl-970 {
    min-height: 970% !important;
  }
  .min-xl-vw-970 {
    min-width: 970vw !important;
  }
  .min-xl-vh-970 {
    min-height: 970vh !important;
  }
  .vw-xl-970 {
    width: 970vw !important;
  }
  .vh-xl-970 {
    height: 970vh !important;
  }
  .width-xl-970 {
    width: 970px !important;
  }
  .height-xl-970 {
    height: 970px !important;
  }
  .max-width-xl-970 {
    max-width: 970px !important;
  }
  .min-width-xl-970 {
    min-width: 970px !important;
  }
  .max-height-xl-970 {
    max-height: 970px !important;
  }
  .min-height-xl-970 {
    min-height: 970px !important;
  }
}
.w-970 {
  width: 970% !important;
}

.h-970 {
  height: 970% !important;
}

.max-w-970 {
  max-width: 970% !important;
}

.min-w-970 {
  min-width: 970% !important;
}

.max-h-970 {
  max-height: 970% !important;
}

.min-h-970 {
  min-height: 970% !important;
}

.min-vw-970 {
  min-width: 970vw !important;
}

.min-vh-970 {
  min-height: 970vh !important;
}

.vw-970 {
  width: 970vw !important;
}

.vh-970 {
  height: 970vh !important;
}

.width-970 {
  width: 970px !important;
}

.height-970 {
  height: 970px !important;
}

.max-width-970 {
  max-width: 970px !important;
}

.min-width-970 {
  min-width: 970px !important;
}

.max-height-970 {
  max-height: 970px !important;
}

.min-height-970 {
  min-height: 970px !important;
}

@media (max-width: 576px) {
  .w-sm-980 {
    width: 980% !important;
  }
  .h-sm-980 {
    height: 980% !important;
  }
  .max-w-sm-980 {
    max-width: 980% !important;
  }
  .min-w-sm-980 {
    min-width: 980% !important;
  }
  .max-h-sm-980 {
    max-height: 980% !important;
  }
  .min-h-sm-980 {
    min-height: 980% !important;
  }
  .min-sm-vw-980 {
    min-width: 980vw !important;
  }
  .min-sm-vh-980 {
    min-height: 980vh !important;
  }
  .vw-sm-980 {
    width: 980vw !important;
  }
  .vh-sm-980 {
    height: 980vh !important;
  }
  .width-sm-980 {
    width: 980px !important;
  }
  .height-sm-980 {
    height: 980px !important;
  }
  .max-width-sm-980 {
    max-width: 980 px !important;
  }
  .min-width-sm-980 {
    min-width: 980px !important;
  }
  .max-height-sm-980 {
    max-height: 980px !important;
  }
  .min-height-sm-980 {
    min-height: 980px !important;
  }
}
@media (max-width: 768px) {
  .w-md-980 {
    width: 980% !important;
  }
  .h-md-980 {
    height: 980% !important;
  }
  .max-w-md-980 {
    max-width: 980% !important;
  }
  .min-w-md-980 {
    min-width: 980% !important;
  }
  .max-h-md-980 {
    max-height: 980% !important;
  }
  .min-h-md-980 {
    min-height: 980% !important;
  }
  .min-md-vw-980 {
    min-width: 980vw !important;
  }
  .min-md-vh-980 {
    min-height: 980vh !important;
  }
  .vw-md-980 {
    width: 980vw !important;
  }
  .vh-md-980 {
    height: 980vh !important;
  }
  .width-md-980 {
    width: 980px !important;
  }
  .height-md-980 {
    height: 980px !important;
  }
  .max-width-md-980 {
    max-width: 980px !important;
  }
  .min-width-md-980 {
    min-width: 980px !important;
  }
  .max-height-md-980 {
    max-height: 980px !important;
  }
  .min-height-md-980 {
    min-height: 980px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-980 {
    width: 980% !important;
  }
  .h-lg-980 {
    height: 980% !important;
  }
  .max-w-lg-980 {
    max-width: 980% !important;
  }
  .min-w-lg-980 {
    min-width: 980% !important;
  }
  .max-h-lg-980 {
    max-height: 980% !important;
  }
  .min-h-lg-980 {
    min-height: 980% !important;
  }
  .min-lg-vw-980 {
    min-width: 980vw !important;
  }
  .min-lg-vh-980 {
    min-height: 980vh !important;
  }
  .vw-lg-980 {
    width: 980vw !important;
  }
  .vh-lg-980 {
    height: 980vh !important;
  }
  .width-lg-980 {
    width: 980px !important;
  }
  .height-lg-980 {
    height: 980px !important;
  }
  .max-width-lg-980 {
    max-width: 980px !important;
  }
  .min-width-lg-980 {
    min-width: 980px !important;
  }
  .max-height-lg-980 {
    max-height: 980px !important;
  }
  .min-height-lg-980 {
    min-height: 980px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-980 {
    width: 980% !important;
  }
  .h-xl-980 {
    height: 980% !important;
  }
  .max-w-xl-980 {
    max-width: 980% !important;
  }
  .min-w-xl-980 {
    min-width: 980% !important;
  }
  .max-h-xl-980 {
    max-height: 980% !important;
  }
  .min-h-xl-980 {
    min-height: 980% !important;
  }
  .min-xl-vw-980 {
    min-width: 980vw !important;
  }
  .min-xl-vh-980 {
    min-height: 980vh !important;
  }
  .vw-xl-980 {
    width: 980vw !important;
  }
  .vh-xl-980 {
    height: 980vh !important;
  }
  .width-xl-980 {
    width: 980px !important;
  }
  .height-xl-980 {
    height: 980px !important;
  }
  .max-width-xl-980 {
    max-width: 980px !important;
  }
  .min-width-xl-980 {
    min-width: 980px !important;
  }
  .max-height-xl-980 {
    max-height: 980px !important;
  }
  .min-height-xl-980 {
    min-height: 980px !important;
  }
}
.w-980 {
  width: 980% !important;
}

.h-980 {
  height: 980% !important;
}

.max-w-980 {
  max-width: 980% !important;
}

.min-w-980 {
  min-width: 980% !important;
}

.max-h-980 {
  max-height: 980% !important;
}

.min-h-980 {
  min-height: 980% !important;
}

.min-vw-980 {
  min-width: 980vw !important;
}

.min-vh-980 {
  min-height: 980vh !important;
}

.vw-980 {
  width: 980vw !important;
}

.vh-980 {
  height: 980vh !important;
}

.width-980 {
  width: 980px !important;
}

.height-980 {
  height: 980px !important;
}

.max-width-980 {
  max-width: 980px !important;
}

.min-width-980 {
  min-width: 980px !important;
}

.max-height-980 {
  max-height: 980px !important;
}

.min-height-980 {
  min-height: 980px !important;
}

@media (max-width: 576px) {
  .w-sm-990 {
    width: 990% !important;
  }
  .h-sm-990 {
    height: 990% !important;
  }
  .max-w-sm-990 {
    max-width: 990% !important;
  }
  .min-w-sm-990 {
    min-width: 990% !important;
  }
  .max-h-sm-990 {
    max-height: 990% !important;
  }
  .min-h-sm-990 {
    min-height: 990% !important;
  }
  .min-sm-vw-990 {
    min-width: 990vw !important;
  }
  .min-sm-vh-990 {
    min-height: 990vh !important;
  }
  .vw-sm-990 {
    width: 990vw !important;
  }
  .vh-sm-990 {
    height: 990vh !important;
  }
  .width-sm-990 {
    width: 990px !important;
  }
  .height-sm-990 {
    height: 990px !important;
  }
  .max-width-sm-990 {
    max-width: 990 px !important;
  }
  .min-width-sm-990 {
    min-width: 990px !important;
  }
  .max-height-sm-990 {
    max-height: 990px !important;
  }
  .min-height-sm-990 {
    min-height: 990px !important;
  }
}
@media (max-width: 768px) {
  .w-md-990 {
    width: 990% !important;
  }
  .h-md-990 {
    height: 990% !important;
  }
  .max-w-md-990 {
    max-width: 990% !important;
  }
  .min-w-md-990 {
    min-width: 990% !important;
  }
  .max-h-md-990 {
    max-height: 990% !important;
  }
  .min-h-md-990 {
    min-height: 990% !important;
  }
  .min-md-vw-990 {
    min-width: 990vw !important;
  }
  .min-md-vh-990 {
    min-height: 990vh !important;
  }
  .vw-md-990 {
    width: 990vw !important;
  }
  .vh-md-990 {
    height: 990vh !important;
  }
  .width-md-990 {
    width: 990px !important;
  }
  .height-md-990 {
    height: 990px !important;
  }
  .max-width-md-990 {
    max-width: 990px !important;
  }
  .min-width-md-990 {
    min-width: 990px !important;
  }
  .max-height-md-990 {
    max-height: 990px !important;
  }
  .min-height-md-990 {
    min-height: 990px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-990 {
    width: 990% !important;
  }
  .h-lg-990 {
    height: 990% !important;
  }
  .max-w-lg-990 {
    max-width: 990% !important;
  }
  .min-w-lg-990 {
    min-width: 990% !important;
  }
  .max-h-lg-990 {
    max-height: 990% !important;
  }
  .min-h-lg-990 {
    min-height: 990% !important;
  }
  .min-lg-vw-990 {
    min-width: 990vw !important;
  }
  .min-lg-vh-990 {
    min-height: 990vh !important;
  }
  .vw-lg-990 {
    width: 990vw !important;
  }
  .vh-lg-990 {
    height: 990vh !important;
  }
  .width-lg-990 {
    width: 990px !important;
  }
  .height-lg-990 {
    height: 990px !important;
  }
  .max-width-lg-990 {
    max-width: 990px !important;
  }
  .min-width-lg-990 {
    min-width: 990px !important;
  }
  .max-height-lg-990 {
    max-height: 990px !important;
  }
  .min-height-lg-990 {
    min-height: 990px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-990 {
    width: 990% !important;
  }
  .h-xl-990 {
    height: 990% !important;
  }
  .max-w-xl-990 {
    max-width: 990% !important;
  }
  .min-w-xl-990 {
    min-width: 990% !important;
  }
  .max-h-xl-990 {
    max-height: 990% !important;
  }
  .min-h-xl-990 {
    min-height: 990% !important;
  }
  .min-xl-vw-990 {
    min-width: 990vw !important;
  }
  .min-xl-vh-990 {
    min-height: 990vh !important;
  }
  .vw-xl-990 {
    width: 990vw !important;
  }
  .vh-xl-990 {
    height: 990vh !important;
  }
  .width-xl-990 {
    width: 990px !important;
  }
  .height-xl-990 {
    height: 990px !important;
  }
  .max-width-xl-990 {
    max-width: 990px !important;
  }
  .min-width-xl-990 {
    min-width: 990px !important;
  }
  .max-height-xl-990 {
    max-height: 990px !important;
  }
  .min-height-xl-990 {
    min-height: 990px !important;
  }
}
.w-990 {
  width: 990% !important;
}

.h-990 {
  height: 990% !important;
}

.max-w-990 {
  max-width: 990% !important;
}

.min-w-990 {
  min-width: 990% !important;
}

.max-h-990 {
  max-height: 990% !important;
}

.min-h-990 {
  min-height: 990% !important;
}

.min-vw-990 {
  min-width: 990vw !important;
}

.min-vh-990 {
  min-height: 990vh !important;
}

.vw-990 {
  width: 990vw !important;
}

.vh-990 {
  height: 990vh !important;
}

.width-990 {
  width: 990px !important;
}

.height-990 {
  height: 990px !important;
}

.max-width-990 {
  max-width: 990px !important;
}

.min-width-990 {
  min-width: 990px !important;
}

.max-height-990 {
  max-height: 990px !important;
}

.min-height-990 {
  min-height: 990px !important;
}

@media (max-width: 576px) {
  .w-sm-1000 {
    width: 1000% !important;
  }
  .h-sm-1000 {
    height: 1000% !important;
  }
  .max-w-sm-1000 {
    max-width: 1000% !important;
  }
  .min-w-sm-1000 {
    min-width: 1000% !important;
  }
  .max-h-sm-1000 {
    max-height: 1000% !important;
  }
  .min-h-sm-1000 {
    min-height: 1000% !important;
  }
  .min-sm-vw-1000 {
    min-width: 1000vw !important;
  }
  .min-sm-vh-1000 {
    min-height: 1000vh !important;
  }
  .vw-sm-1000 {
    width: 1000vw !important;
  }
  .vh-sm-1000 {
    height: 1000vh !important;
  }
  .width-sm-1000 {
    width: 1000px !important;
  }
  .height-sm-1000 {
    height: 1000px !important;
  }
  .max-width-sm-1000 {
    max-width: 1000 px !important;
  }
  .min-width-sm-1000 {
    min-width: 1000px !important;
  }
  .max-height-sm-1000 {
    max-height: 1000px !important;
  }
  .min-height-sm-1000 {
    min-height: 1000px !important;
  }
}
@media (max-width: 768px) {
  .w-md-1000 {
    width: 1000% !important;
  }
  .h-md-1000 {
    height: 1000% !important;
  }
  .max-w-md-1000 {
    max-width: 1000% !important;
  }
  .min-w-md-1000 {
    min-width: 1000% !important;
  }
  .max-h-md-1000 {
    max-height: 1000% !important;
  }
  .min-h-md-1000 {
    min-height: 1000% !important;
  }
  .min-md-vw-1000 {
    min-width: 1000vw !important;
  }
  .min-md-vh-1000 {
    min-height: 1000vh !important;
  }
  .vw-md-1000 {
    width: 1000vw !important;
  }
  .vh-md-1000 {
    height: 1000vh !important;
  }
  .width-md-1000 {
    width: 1000px !important;
  }
  .height-md-1000 {
    height: 1000px !important;
  }
  .max-width-md-1000 {
    max-width: 1000px !important;
  }
  .min-width-md-1000 {
    min-width: 1000px !important;
  }
  .max-height-md-1000 {
    max-height: 1000px !important;
  }
  .min-height-md-1000 {
    min-height: 1000px !important;
  }
}
@media (max-width: 992px) {
  .w-lg-1000 {
    width: 1000% !important;
  }
  .h-lg-1000 {
    height: 1000% !important;
  }
  .max-w-lg-1000 {
    max-width: 1000% !important;
  }
  .min-w-lg-1000 {
    min-width: 1000% !important;
  }
  .max-h-lg-1000 {
    max-height: 1000% !important;
  }
  .min-h-lg-1000 {
    min-height: 1000% !important;
  }
  .min-lg-vw-1000 {
    min-width: 1000vw !important;
  }
  .min-lg-vh-1000 {
    min-height: 1000vh !important;
  }
  .vw-lg-1000 {
    width: 1000vw !important;
  }
  .vh-lg-1000 {
    height: 1000vh !important;
  }
  .width-lg-1000 {
    width: 1000px !important;
  }
  .height-lg-1000 {
    height: 1000px !important;
  }
  .max-width-lg-1000 {
    max-width: 1000px !important;
  }
  .min-width-lg-1000 {
    min-width: 1000px !important;
  }
  .max-height-lg-1000 {
    max-height: 1000px !important;
  }
  .min-height-lg-1000 {
    min-height: 1000px !important;
  }
}
@media (max-width: 1200px) {
  .w-xl-1000 {
    width: 1000% !important;
  }
  .h-xl-1000 {
    height: 1000% !important;
  }
  .max-w-xl-1000 {
    max-width: 1000% !important;
  }
  .min-w-xl-1000 {
    min-width: 1000% !important;
  }
  .max-h-xl-1000 {
    max-height: 1000% !important;
  }
  .min-h-xl-1000 {
    min-height: 1000% !important;
  }
  .min-xl-vw-1000 {
    min-width: 1000vw !important;
  }
  .min-xl-vh-1000 {
    min-height: 1000vh !important;
  }
  .vw-xl-1000 {
    width: 1000vw !important;
  }
  .vh-xl-1000 {
    height: 1000vh !important;
  }
  .width-xl-1000 {
    width: 1000px !important;
  }
  .height-xl-1000 {
    height: 1000px !important;
  }
  .max-width-xl-1000 {
    max-width: 1000px !important;
  }
  .min-width-xl-1000 {
    min-width: 1000px !important;
  }
  .max-height-xl-1000 {
    max-height: 1000px !important;
  }
  .min-height-xl-1000 {
    min-height: 1000px !important;
  }
}
.w-1000 {
  width: 1000% !important;
}

.h-1000 {
  height: 1000% !important;
}

.max-w-1000 {
  max-width: 1000% !important;
}

.min-w-1000 {
  min-width: 1000% !important;
}

.max-h-1000 {
  max-height: 1000% !important;
}

.min-h-1000 {
  min-height: 1000% !important;
}

.min-vw-1000 {
  min-width: 1000vw !important;
}

.min-vh-1000 {
  min-height: 1000vh !important;
}

.vw-1000 {
  width: 1000vw !important;
}

.vh-1000 {
  height: 1000vh !important;
}

.width-1000 {
  width: 1000px !important;
}

.height-1000 {
  height: 1000px !important;
}

.max-width-1000 {
  max-width: 1000px !important;
}

.min-width-1000 {
  min-width: 1000px !important;
}

.max-height-1000 {
  max-height: 1000px !important;
}

.min-height-1000 {
  min-height: 1000px !important;
}

.w-auto {
  width: auto;
}

.min-w-auto {
  min-width: auto !important;
}

.max-w-auto {
  max-width: auto !important;
}

.h-auto {
  height: auto;
}

.min-h-auto {
  min-height: auto !important;
}

.max-h-auto {
  max-height: auto !important;
}

@media (max-width: 576px) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .ml-sm-0 {
    margin-left: 0px !important;
  }
  .mr-sm-0 {
    margin-right: 0px !important;
  }
  .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mx-sm-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .p-sm-0 {
    padding: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .pl-sm-0 {
    padding-left: 0px !important;
  }
  .pr-sm-0 {
    padding-right: 0px !important;
  }
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .px-sm-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (max-width: 768px) {
  .m-md-0 {
    margin: 0px !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .ml-md-0 {
    margin-left: 0px !important;
  }
  .mr-md-0 {
    margin-right: 0px !important;
  }
  .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mx-md-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .p-md-0 {
    padding: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .pl-md-0 {
    padding-left: 0px !important;
  }
  .pr-md-0 {
    padding-right: 0px !important;
  }
  .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .px-md-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-0 {
    margin: 0px !important;
  }
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .ml-lg-0 {
    margin-left: 0px !important;
  }
  .mr-lg-0 {
    margin-right: 0px !important;
  }
  .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mx-lg-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .p-lg-0 {
    padding: 0px !important;
  }
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .pl-lg-0 {
    padding-left: 0px !important;
  }
  .pr-lg-0 {
    padding-right: 0px !important;
  }
  .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .px-lg-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-0 {
    margin: 0px !important;
  }
  .mt-xl-0 {
    margin-top: 0px !important;
  }
  .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .ml-xl-0 {
    margin-left: 0px !important;
  }
  .mr-xl-0 {
    margin-right: 0px !important;
  }
  .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mx-xl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .p-xl-0 {
    padding: 0px !important;
  }
  .pt-xl-0 {
    padding-top: 0px !important;
  }
  .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .pl-xl-0 {
    padding-left: 0px !important;
  }
  .pr-xl-0 {
    padding-right: 0px !important;
  }
  .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .px-xl-0 {
    padding-left: 0px !important;
    padding-right: 0px !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;
}

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

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !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;
}

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

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

@media (max-width: 576px) {
  .m-sm-1 {
    margin: 1px !important;
  }
  .mt-sm-1 {
    margin-top: 1px !important;
  }
  .mb-sm-1 {
    margin-bottom: 1px !important;
  }
  .ml-sm-1 {
    margin-left: 1px !important;
  }
  .mr-sm-1 {
    margin-right: 1px !important;
  }
  .my-sm-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .mx-sm-1 {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .p-sm-1 {
    padding: 1px !important;
  }
  .pt-sm-1 {
    padding-top: 1px !important;
  }
  .pb-sm-1 {
    padding-bottom: 1px !important;
  }
  .pl-sm-1 {
    padding-left: 1px !important;
  }
  .pr-sm-1 {
    padding-right: 1px !important;
  }
  .py-sm-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }
  .px-sm-1 {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}
@media (max-width: 768px) {
  .m-md-1 {
    margin: 1px !important;
  }
  .mt-md-1 {
    margin-top: 1px !important;
  }
  .mb-md-1 {
    margin-bottom: 1px !important;
  }
  .ml-md-1 {
    margin-left: 1px !important;
  }
  .mr-md-1 {
    margin-right: 1px !important;
  }
  .my-md-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .mx-md-1 {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .p-md-1 {
    padding: 1px !important;
  }
  .pt-md-1 {
    padding-top: 1px !important;
  }
  .pb-md-1 {
    padding-bottom: 1px !important;
  }
  .pl-md-1 {
    padding-left: 1px !important;
  }
  .pr-md-1 {
    padding-right: 1px !important;
  }
  .py-md-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }
  .px-md-1 {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-1 {
    margin: 1px !important;
  }
  .mt-lg-1 {
    margin-top: 1px !important;
  }
  .mb-lg-1 {
    margin-bottom: 1px !important;
  }
  .ml-lg-1 {
    margin-left: 1px !important;
  }
  .mr-lg-1 {
    margin-right: 1px !important;
  }
  .my-lg-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .mx-lg-1 {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .p-lg-1 {
    padding: 1px !important;
  }
  .pt-lg-1 {
    padding-top: 1px !important;
  }
  .pb-lg-1 {
    padding-bottom: 1px !important;
  }
  .pl-lg-1 {
    padding-left: 1px !important;
  }
  .pr-lg-1 {
    padding-right: 1px !important;
  }
  .py-lg-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }
  .px-lg-1 {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-1 {
    margin: 1px !important;
  }
  .mt-xl-1 {
    margin-top: 1px !important;
  }
  .mb-xl-1 {
    margin-bottom: 1px !important;
  }
  .ml-xl-1 {
    margin-left: 1px !important;
  }
  .mr-xl-1 {
    margin-right: 1px !important;
  }
  .my-xl-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .mx-xl-1 {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .p-xl-1 {
    padding: 1px !important;
  }
  .pt-xl-1 {
    padding-top: 1px !important;
  }
  .pb-xl-1 {
    padding-bottom: 1px !important;
  }
  .pl-xl-1 {
    padding-left: 1px !important;
  }
  .pr-xl-1 {
    padding-right: 1px !important;
  }
  .py-xl-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }
  .px-xl-1 {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}
.m-1 {
  margin: 1px !important;
}

.mt-1 {
  margin-top: 1px !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.ml-1 {
  margin-left: 1px !important;
}

.mr-1 {
  margin-right: 1px !important;
}

.my-1 {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.mx-1 {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.p-1 {
  padding: 1px !important;
}

.pt-1 {
  padding-top: 1px !important;
}

.pb-1 {
  padding-bottom: 1px !important;
}

.pl-1 {
  padding-left: 1px !important;
}

.pr-1 {
  padding-right: 1px !important;
}

.py-1 {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

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

@media (max-width: 576px) {
  .m-sm-2 {
    margin: 2px !important;
  }
  .mt-sm-2 {
    margin-top: 2px !important;
  }
  .mb-sm-2 {
    margin-bottom: 2px !important;
  }
  .ml-sm-2 {
    margin-left: 2px !important;
  }
  .mr-sm-2 {
    margin-right: 2px !important;
  }
  .my-sm-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }
  .mx-sm-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .p-sm-2 {
    padding: 2px !important;
  }
  .pt-sm-2 {
    padding-top: 2px !important;
  }
  .pb-sm-2 {
    padding-bottom: 2px !important;
  }
  .pl-sm-2 {
    padding-left: 2px !important;
  }
  .pr-sm-2 {
    padding-right: 2px !important;
  }
  .py-sm-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .px-sm-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}
@media (max-width: 768px) {
  .m-md-2 {
    margin: 2px !important;
  }
  .mt-md-2 {
    margin-top: 2px !important;
  }
  .mb-md-2 {
    margin-bottom: 2px !important;
  }
  .ml-md-2 {
    margin-left: 2px !important;
  }
  .mr-md-2 {
    margin-right: 2px !important;
  }
  .my-md-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }
  .mx-md-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .p-md-2 {
    padding: 2px !important;
  }
  .pt-md-2 {
    padding-top: 2px !important;
  }
  .pb-md-2 {
    padding-bottom: 2px !important;
  }
  .pl-md-2 {
    padding-left: 2px !important;
  }
  .pr-md-2 {
    padding-right: 2px !important;
  }
  .py-md-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .px-md-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-2 {
    margin: 2px !important;
  }
  .mt-lg-2 {
    margin-top: 2px !important;
  }
  .mb-lg-2 {
    margin-bottom: 2px !important;
  }
  .ml-lg-2 {
    margin-left: 2px !important;
  }
  .mr-lg-2 {
    margin-right: 2px !important;
  }
  .my-lg-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }
  .mx-lg-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .p-lg-2 {
    padding: 2px !important;
  }
  .pt-lg-2 {
    padding-top: 2px !important;
  }
  .pb-lg-2 {
    padding-bottom: 2px !important;
  }
  .pl-lg-2 {
    padding-left: 2px !important;
  }
  .pr-lg-2 {
    padding-right: 2px !important;
  }
  .py-lg-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .px-lg-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-2 {
    margin: 2px !important;
  }
  .mt-xl-2 {
    margin-top: 2px !important;
  }
  .mb-xl-2 {
    margin-bottom: 2px !important;
  }
  .ml-xl-2 {
    margin-left: 2px !important;
  }
  .mr-xl-2 {
    margin-right: 2px !important;
  }
  .my-xl-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }
  .mx-xl-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .p-xl-2 {
    padding: 2px !important;
  }
  .pt-xl-2 {
    padding-top: 2px !important;
  }
  .pb-xl-2 {
    padding-bottom: 2px !important;
  }
  .pl-xl-2 {
    padding-left: 2px !important;
  }
  .pr-xl-2 {
    padding-right: 2px !important;
  }
  .py-xl-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .px-xl-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}
.m-2 {
  margin: 2px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.my-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.mx-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}

.p-2 {
  padding: 2px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.py-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

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

@media (max-width: 576px) {
  .m-sm-3 {
    margin: 3px !important;
  }
  .mt-sm-3 {
    margin-top: 3px !important;
  }
  .mb-sm-3 {
    margin-bottom: 3px !important;
  }
  .ml-sm-3 {
    margin-left: 3px !important;
  }
  .mr-sm-3 {
    margin-right: 3px !important;
  }
  .my-sm-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .mx-sm-3 {
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
  .p-sm-3 {
    padding: 3px !important;
  }
  .pt-sm-3 {
    padding-top: 3px !important;
  }
  .pb-sm-3 {
    padding-bottom: 3px !important;
  }
  .pl-sm-3 {
    padding-left: 3px !important;
  }
  .pr-sm-3 {
    padding-right: 3px !important;
  }
  .py-sm-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .px-sm-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
}
@media (max-width: 768px) {
  .m-md-3 {
    margin: 3px !important;
  }
  .mt-md-3 {
    margin-top: 3px !important;
  }
  .mb-md-3 {
    margin-bottom: 3px !important;
  }
  .ml-md-3 {
    margin-left: 3px !important;
  }
  .mr-md-3 {
    margin-right: 3px !important;
  }
  .my-md-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .mx-md-3 {
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
  .p-md-3 {
    padding: 3px !important;
  }
  .pt-md-3 {
    padding-top: 3px !important;
  }
  .pb-md-3 {
    padding-bottom: 3px !important;
  }
  .pl-md-3 {
    padding-left: 3px !important;
  }
  .pr-md-3 {
    padding-right: 3px !important;
  }
  .py-md-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .px-md-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-3 {
    margin: 3px !important;
  }
  .mt-lg-3 {
    margin-top: 3px !important;
  }
  .mb-lg-3 {
    margin-bottom: 3px !important;
  }
  .ml-lg-3 {
    margin-left: 3px !important;
  }
  .mr-lg-3 {
    margin-right: 3px !important;
  }
  .my-lg-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .mx-lg-3 {
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
  .p-lg-3 {
    padding: 3px !important;
  }
  .pt-lg-3 {
    padding-top: 3px !important;
  }
  .pb-lg-3 {
    padding-bottom: 3px !important;
  }
  .pl-lg-3 {
    padding-left: 3px !important;
  }
  .pr-lg-3 {
    padding-right: 3px !important;
  }
  .py-lg-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .px-lg-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-3 {
    margin: 3px !important;
  }
  .mt-xl-3 {
    margin-top: 3px !important;
  }
  .mb-xl-3 {
    margin-bottom: 3px !important;
  }
  .ml-xl-3 {
    margin-left: 3px !important;
  }
  .mr-xl-3 {
    margin-right: 3px !important;
  }
  .my-xl-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  .mx-xl-3 {
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
  .p-xl-3 {
    padding: 3px !important;
  }
  .pt-xl-3 {
    padding-top: 3px !important;
  }
  .pb-xl-3 {
    padding-bottom: 3px !important;
  }
  .pl-xl-3 {
    padding-left: 3px !important;
  }
  .pr-xl-3 {
    padding-right: 3px !important;
  }
  .py-xl-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }
  .px-xl-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
}
.m-3 {
  margin: 3px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.my-3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}

.mx-3 {
  margin-left: 3px !important;
  margin-right: 3px !important;
}

.p-3 {
  padding: 3px !important;
}

.pt-3 {
  padding-top: 3px !important;
}

.pb-3 {
  padding-bottom: 3px !important;
}

.pl-3 {
  padding-left: 3px !important;
}

.pr-3 {
  padding-right: 3px !important;
}

.py-3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

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

@media (max-width: 576px) {
  .m-sm-4 {
    margin: 4px !important;
  }
  .mt-sm-4 {
    margin-top: 4px !important;
  }
  .mb-sm-4 {
    margin-bottom: 4px !important;
  }
  .ml-sm-4 {
    margin-left: 4px !important;
  }
  .mr-sm-4 {
    margin-right: 4px !important;
  }
  .my-sm-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .mx-sm-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .p-sm-4 {
    padding: 4px !important;
  }
  .pt-sm-4 {
    padding-top: 4px !important;
  }
  .pb-sm-4 {
    padding-bottom: 4px !important;
  }
  .pl-sm-4 {
    padding-left: 4px !important;
  }
  .pr-sm-4 {
    padding-right: 4px !important;
  }
  .py-sm-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .px-sm-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}
@media (max-width: 768px) {
  .m-md-4 {
    margin: 4px !important;
  }
  .mt-md-4 {
    margin-top: 4px !important;
  }
  .mb-md-4 {
    margin-bottom: 4px !important;
  }
  .ml-md-4 {
    margin-left: 4px !important;
  }
  .mr-md-4 {
    margin-right: 4px !important;
  }
  .my-md-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .mx-md-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .p-md-4 {
    padding: 4px !important;
  }
  .pt-md-4 {
    padding-top: 4px !important;
  }
  .pb-md-4 {
    padding-bottom: 4px !important;
  }
  .pl-md-4 {
    padding-left: 4px !important;
  }
  .pr-md-4 {
    padding-right: 4px !important;
  }
  .py-md-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .px-md-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-4 {
    margin: 4px !important;
  }
  .mt-lg-4 {
    margin-top: 4px !important;
  }
  .mb-lg-4 {
    margin-bottom: 4px !important;
  }
  .ml-lg-4 {
    margin-left: 4px !important;
  }
  .mr-lg-4 {
    margin-right: 4px !important;
  }
  .my-lg-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .mx-lg-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .p-lg-4 {
    padding: 4px !important;
  }
  .pt-lg-4 {
    padding-top: 4px !important;
  }
  .pb-lg-4 {
    padding-bottom: 4px !important;
  }
  .pl-lg-4 {
    padding-left: 4px !important;
  }
  .pr-lg-4 {
    padding-right: 4px !important;
  }
  .py-lg-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .px-lg-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-4 {
    margin: 4px !important;
  }
  .mt-xl-4 {
    margin-top: 4px !important;
  }
  .mb-xl-4 {
    margin-bottom: 4px !important;
  }
  .ml-xl-4 {
    margin-left: 4px !important;
  }
  .mr-xl-4 {
    margin-right: 4px !important;
  }
  .my-xl-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .mx-xl-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .p-xl-4 {
    padding: 4px !important;
  }
  .pt-xl-4 {
    padding-top: 4px !important;
  }
  .pb-xl-4 {
    padding-bottom: 4px !important;
  }
  .pl-xl-4 {
    padding-left: 4px !important;
  }
  .pr-xl-4 {
    padding-right: 4px !important;
  }
  .py-xl-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .px-xl-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}
.m-4 {
  margin: 4px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.p-4 {
  padding: 4px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

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

@media (max-width: 576px) {
  .m-sm-5 {
    margin: 5px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .ml-sm-5 {
    margin-left: 5px !important;
  }
  .mr-sm-5 {
    margin-right: 5px !important;
  }
  .my-sm-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mx-sm-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .p-sm-5 {
    padding: 5px !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .pl-sm-5 {
    padding-left: 5px !important;
  }
  .pr-sm-5 {
    padding-right: 5px !important;
  }
  .py-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .px-sm-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
@media (max-width: 768px) {
  .m-md-5 {
    margin: 5px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .ml-md-5 {
    margin-left: 5px !important;
  }
  .mr-md-5 {
    margin-right: 5px !important;
  }
  .my-md-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mx-md-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .p-md-5 {
    padding: 5px !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .pl-md-5 {
    padding-left: 5px !important;
  }
  .pr-md-5 {
    padding-right: 5px !important;
  }
  .py-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .px-md-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-5 {
    margin: 5px !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .ml-lg-5 {
    margin-left: 5px !important;
  }
  .mr-lg-5 {
    margin-right: 5px !important;
  }
  .my-lg-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mx-lg-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .p-lg-5 {
    padding: 5px !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .pl-lg-5 {
    padding-left: 5px !important;
  }
  .pr-lg-5 {
    padding-right: 5px !important;
  }
  .py-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .px-lg-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-5 {
    margin: 5px !important;
  }
  .mt-xl-5 {
    margin-top: 5px !important;
  }
  .mb-xl-5 {
    margin-bottom: 5px !important;
  }
  .ml-xl-5 {
    margin-left: 5px !important;
  }
  .mr-xl-5 {
    margin-right: 5px !important;
  }
  .my-xl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mx-xl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .p-xl-5 {
    padding: 5px !important;
  }
  .pt-xl-5 {
    padding-top: 5px !important;
  }
  .pb-xl-5 {
    padding-bottom: 5px !important;
  }
  .pl-xl-5 {
    padding-left: 5px !important;
  }
  .pr-xl-5 {
    padding-right: 5px !important;
  }
  .py-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .px-xl-5 {
    padding-left: 5px !important;
    padding-right: 5px !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;
}

.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !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;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

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

@media (max-width: 576px) {
  .m-sm-6 {
    margin: 6px !important;
  }
  .mt-sm-6 {
    margin-top: 6px !important;
  }
  .mb-sm-6 {
    margin-bottom: 6px !important;
  }
  .ml-sm-6 {
    margin-left: 6px !important;
  }
  .mr-sm-6 {
    margin-right: 6px !important;
  }
  .my-sm-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  .mx-sm-6 {
    margin-left: 6px !important;
    margin-right: 6px !important;
  }
  .p-sm-6 {
    padding: 6px !important;
  }
  .pt-sm-6 {
    padding-top: 6px !important;
  }
  .pb-sm-6 {
    padding-bottom: 6px !important;
  }
  .pl-sm-6 {
    padding-left: 6px !important;
  }
  .pr-sm-6 {
    padding-right: 6px !important;
  }
  .py-sm-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .px-sm-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}
@media (max-width: 768px) {
  .m-md-6 {
    margin: 6px !important;
  }
  .mt-md-6 {
    margin-top: 6px !important;
  }
  .mb-md-6 {
    margin-bottom: 6px !important;
  }
  .ml-md-6 {
    margin-left: 6px !important;
  }
  .mr-md-6 {
    margin-right: 6px !important;
  }
  .my-md-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  .mx-md-6 {
    margin-left: 6px !important;
    margin-right: 6px !important;
  }
  .p-md-6 {
    padding: 6px !important;
  }
  .pt-md-6 {
    padding-top: 6px !important;
  }
  .pb-md-6 {
    padding-bottom: 6px !important;
  }
  .pl-md-6 {
    padding-left: 6px !important;
  }
  .pr-md-6 {
    padding-right: 6px !important;
  }
  .py-md-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .px-md-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-6 {
    margin: 6px !important;
  }
  .mt-lg-6 {
    margin-top: 6px !important;
  }
  .mb-lg-6 {
    margin-bottom: 6px !important;
  }
  .ml-lg-6 {
    margin-left: 6px !important;
  }
  .mr-lg-6 {
    margin-right: 6px !important;
  }
  .my-lg-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  .mx-lg-6 {
    margin-left: 6px !important;
    margin-right: 6px !important;
  }
  .p-lg-6 {
    padding: 6px !important;
  }
  .pt-lg-6 {
    padding-top: 6px !important;
  }
  .pb-lg-6 {
    padding-bottom: 6px !important;
  }
  .pl-lg-6 {
    padding-left: 6px !important;
  }
  .pr-lg-6 {
    padding-right: 6px !important;
  }
  .py-lg-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .px-lg-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-6 {
    margin: 6px !important;
  }
  .mt-xl-6 {
    margin-top: 6px !important;
  }
  .mb-xl-6 {
    margin-bottom: 6px !important;
  }
  .ml-xl-6 {
    margin-left: 6px !important;
  }
  .mr-xl-6 {
    margin-right: 6px !important;
  }
  .my-xl-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }
  .mx-xl-6 {
    margin-left: 6px !important;
    margin-right: 6px !important;
  }
  .p-xl-6 {
    padding: 6px !important;
  }
  .pt-xl-6 {
    padding-top: 6px !important;
  }
  .pb-xl-6 {
    padding-bottom: 6px !important;
  }
  .pl-xl-6 {
    padding-left: 6px !important;
  }
  .pr-xl-6 {
    padding-right: 6px !important;
  }
  .py-xl-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .px-xl-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}
.m-6 {
  margin: 6px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.my-6 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.mx-6 {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

.p-6 {
  padding: 6px !important;
}

.pt-6 {
  padding-top: 6px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pl-6 {
  padding-left: 6px !important;
}

.pr-6 {
  padding-right: 6px !important;
}

.py-6 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

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

@media (max-width: 576px) {
  .m-sm-7 {
    margin: 7px !important;
  }
  .mt-sm-7 {
    margin-top: 7px !important;
  }
  .mb-sm-7 {
    margin-bottom: 7px !important;
  }
  .ml-sm-7 {
    margin-left: 7px !important;
  }
  .mr-sm-7 {
    margin-right: 7px !important;
  }
  .my-sm-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }
  .mx-sm-7 {
    margin-left: 7px !important;
    margin-right: 7px !important;
  }
  .p-sm-7 {
    padding: 7px !important;
  }
  .pt-sm-7 {
    padding-top: 7px !important;
  }
  .pb-sm-7 {
    padding-bottom: 7px !important;
  }
  .pl-sm-7 {
    padding-left: 7px !important;
  }
  .pr-sm-7 {
    padding-right: 7px !important;
  }
  .py-sm-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }
  .px-sm-7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}
@media (max-width: 768px) {
  .m-md-7 {
    margin: 7px !important;
  }
  .mt-md-7 {
    margin-top: 7px !important;
  }
  .mb-md-7 {
    margin-bottom: 7px !important;
  }
  .ml-md-7 {
    margin-left: 7px !important;
  }
  .mr-md-7 {
    margin-right: 7px !important;
  }
  .my-md-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }
  .mx-md-7 {
    margin-left: 7px !important;
    margin-right: 7px !important;
  }
  .p-md-7 {
    padding: 7px !important;
  }
  .pt-md-7 {
    padding-top: 7px !important;
  }
  .pb-md-7 {
    padding-bottom: 7px !important;
  }
  .pl-md-7 {
    padding-left: 7px !important;
  }
  .pr-md-7 {
    padding-right: 7px !important;
  }
  .py-md-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }
  .px-md-7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-7 {
    margin: 7px !important;
  }
  .mt-lg-7 {
    margin-top: 7px !important;
  }
  .mb-lg-7 {
    margin-bottom: 7px !important;
  }
  .ml-lg-7 {
    margin-left: 7px !important;
  }
  .mr-lg-7 {
    margin-right: 7px !important;
  }
  .my-lg-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }
  .mx-lg-7 {
    margin-left: 7px !important;
    margin-right: 7px !important;
  }
  .p-lg-7 {
    padding: 7px !important;
  }
  .pt-lg-7 {
    padding-top: 7px !important;
  }
  .pb-lg-7 {
    padding-bottom: 7px !important;
  }
  .pl-lg-7 {
    padding-left: 7px !important;
  }
  .pr-lg-7 {
    padding-right: 7px !important;
  }
  .py-lg-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }
  .px-lg-7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-7 {
    margin: 7px !important;
  }
  .mt-xl-7 {
    margin-top: 7px !important;
  }
  .mb-xl-7 {
    margin-bottom: 7px !important;
  }
  .ml-xl-7 {
    margin-left: 7px !important;
  }
  .mr-xl-7 {
    margin-right: 7px !important;
  }
  .my-xl-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }
  .mx-xl-7 {
    margin-left: 7px !important;
    margin-right: 7px !important;
  }
  .p-xl-7 {
    padding: 7px !important;
  }
  .pt-xl-7 {
    padding-top: 7px !important;
  }
  .pb-xl-7 {
    padding-bottom: 7px !important;
  }
  .pl-xl-7 {
    padding-left: 7px !important;
  }
  .pr-xl-7 {
    padding-right: 7px !important;
  }
  .py-xl-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }
  .px-xl-7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}
.m-7 {
  margin: 7px !important;
}

.mt-7 {
  margin-top: 7px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.ml-7 {
  margin-left: 7px !important;
}

.mr-7 {
  margin-right: 7px !important;
}

.my-7 {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}

.mx-7 {
  margin-left: 7px !important;
  margin-right: 7px !important;
}

.p-7 {
  padding: 7px !important;
}

.pt-7 {
  padding-top: 7px !important;
}

.pb-7 {
  padding-bottom: 7px !important;
}

.pl-7 {
  padding-left: 7px !important;
}

.pr-7 {
  padding-right: 7px !important;
}

.py-7 {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

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

@media (max-width: 576px) {
  .m-sm-8 {
    margin: 8px !important;
  }
  .mt-sm-8 {
    margin-top: 8px !important;
  }
  .mb-sm-8 {
    margin-bottom: 8px !important;
  }
  .ml-sm-8 {
    margin-left: 8px !important;
  }
  .mr-sm-8 {
    margin-right: 8px !important;
  }
  .my-sm-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .mx-sm-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .p-sm-8 {
    padding: 8px !important;
  }
  .pt-sm-8 {
    padding-top: 8px !important;
  }
  .pb-sm-8 {
    padding-bottom: 8px !important;
  }
  .pl-sm-8 {
    padding-left: 8px !important;
  }
  .pr-sm-8 {
    padding-right: 8px !important;
  }
  .py-sm-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .px-sm-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
@media (max-width: 768px) {
  .m-md-8 {
    margin: 8px !important;
  }
  .mt-md-8 {
    margin-top: 8px !important;
  }
  .mb-md-8 {
    margin-bottom: 8px !important;
  }
  .ml-md-8 {
    margin-left: 8px !important;
  }
  .mr-md-8 {
    margin-right: 8px !important;
  }
  .my-md-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .mx-md-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .p-md-8 {
    padding: 8px !important;
  }
  .pt-md-8 {
    padding-top: 8px !important;
  }
  .pb-md-8 {
    padding-bottom: 8px !important;
  }
  .pl-md-8 {
    padding-left: 8px !important;
  }
  .pr-md-8 {
    padding-right: 8px !important;
  }
  .py-md-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .px-md-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-8 {
    margin: 8px !important;
  }
  .mt-lg-8 {
    margin-top: 8px !important;
  }
  .mb-lg-8 {
    margin-bottom: 8px !important;
  }
  .ml-lg-8 {
    margin-left: 8px !important;
  }
  .mr-lg-8 {
    margin-right: 8px !important;
  }
  .my-lg-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .mx-lg-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .p-lg-8 {
    padding: 8px !important;
  }
  .pt-lg-8 {
    padding-top: 8px !important;
  }
  .pb-lg-8 {
    padding-bottom: 8px !important;
  }
  .pl-lg-8 {
    padding-left: 8px !important;
  }
  .pr-lg-8 {
    padding-right: 8px !important;
  }
  .py-lg-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .px-lg-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-8 {
    margin: 8px !important;
  }
  .mt-xl-8 {
    margin-top: 8px !important;
  }
  .mb-xl-8 {
    margin-bottom: 8px !important;
  }
  .ml-xl-8 {
    margin-left: 8px !important;
  }
  .mr-xl-8 {
    margin-right: 8px !important;
  }
  .my-xl-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .mx-xl-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .p-xl-8 {
    padding: 8px !important;
  }
  .pt-xl-8 {
    padding-top: 8px !important;
  }
  .pb-xl-8 {
    padding-bottom: 8px !important;
  }
  .pl-xl-8 {
    padding-left: 8px !important;
  }
  .pr-xl-8 {
    padding-right: 8px !important;
  }
  .py-xl-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .px-xl-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
.m-8 {
  margin: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.p-8 {
  padding: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

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

@media (max-width: 576px) {
  .m-sm-9 {
    margin: 9px !important;
  }
  .mt-sm-9 {
    margin-top: 9px !important;
  }
  .mb-sm-9 {
    margin-bottom: 9px !important;
  }
  .ml-sm-9 {
    margin-left: 9px !important;
  }
  .mr-sm-9 {
    margin-right: 9px !important;
  }
  .my-sm-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }
  .mx-sm-9 {
    margin-left: 9px !important;
    margin-right: 9px !important;
  }
  .p-sm-9 {
    padding: 9px !important;
  }
  .pt-sm-9 {
    padding-top: 9px !important;
  }
  .pb-sm-9 {
    padding-bottom: 9px !important;
  }
  .pl-sm-9 {
    padding-left: 9px !important;
  }
  .pr-sm-9 {
    padding-right: 9px !important;
  }
  .py-sm-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }
  .px-sm-9 {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}
@media (max-width: 768px) {
  .m-md-9 {
    margin: 9px !important;
  }
  .mt-md-9 {
    margin-top: 9px !important;
  }
  .mb-md-9 {
    margin-bottom: 9px !important;
  }
  .ml-md-9 {
    margin-left: 9px !important;
  }
  .mr-md-9 {
    margin-right: 9px !important;
  }
  .my-md-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }
  .mx-md-9 {
    margin-left: 9px !important;
    margin-right: 9px !important;
  }
  .p-md-9 {
    padding: 9px !important;
  }
  .pt-md-9 {
    padding-top: 9px !important;
  }
  .pb-md-9 {
    padding-bottom: 9px !important;
  }
  .pl-md-9 {
    padding-left: 9px !important;
  }
  .pr-md-9 {
    padding-right: 9px !important;
  }
  .py-md-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }
  .px-md-9 {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-9 {
    margin: 9px !important;
  }
  .mt-lg-9 {
    margin-top: 9px !important;
  }
  .mb-lg-9 {
    margin-bottom: 9px !important;
  }
  .ml-lg-9 {
    margin-left: 9px !important;
  }
  .mr-lg-9 {
    margin-right: 9px !important;
  }
  .my-lg-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }
  .mx-lg-9 {
    margin-left: 9px !important;
    margin-right: 9px !important;
  }
  .p-lg-9 {
    padding: 9px !important;
  }
  .pt-lg-9 {
    padding-top: 9px !important;
  }
  .pb-lg-9 {
    padding-bottom: 9px !important;
  }
  .pl-lg-9 {
    padding-left: 9px !important;
  }
  .pr-lg-9 {
    padding-right: 9px !important;
  }
  .py-lg-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }
  .px-lg-9 {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-9 {
    margin: 9px !important;
  }
  .mt-xl-9 {
    margin-top: 9px !important;
  }
  .mb-xl-9 {
    margin-bottom: 9px !important;
  }
  .ml-xl-9 {
    margin-left: 9px !important;
  }
  .mr-xl-9 {
    margin-right: 9px !important;
  }
  .my-xl-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }
  .mx-xl-9 {
    margin-left: 9px !important;
    margin-right: 9px !important;
  }
  .p-xl-9 {
    padding: 9px !important;
  }
  .pt-xl-9 {
    padding-top: 9px !important;
  }
  .pb-xl-9 {
    padding-bottom: 9px !important;
  }
  .pl-xl-9 {
    padding-left: 9px !important;
  }
  .pr-xl-9 {
    padding-right: 9px !important;
  }
  .py-xl-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }
  .px-xl-9 {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}
.m-9 {
  margin: 9px !important;
}

.mt-9 {
  margin-top: 9px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.ml-9 {
  margin-left: 9px !important;
}

.mr-9 {
  margin-right: 9px !important;
}

.my-9 {
  margin-top: 9px !important;
  margin-bottom: 9px !important;
}

.mx-9 {
  margin-left: 9px !important;
  margin-right: 9px !important;
}

.p-9 {
  padding: 9px !important;
}

.pt-9 {
  padding-top: 9px !important;
}

.pb-9 {
  padding-bottom: 9px !important;
}

.pl-9 {
  padding-left: 9px !important;
}

.pr-9 {
  padding-right: 9px !important;
}

.py-9 {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}

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

@media (max-width: 576px) {
  .m-sm-10 {
    margin: 10px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .ml-sm-10 {
    margin-left: 10px !important;
  }
  .mr-sm-10 {
    margin-right: 10px !important;
  }
  .my-sm-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mx-sm-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .pr-sm-10 {
    padding-right: 10px !important;
  }
  .py-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .px-sm-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 768px) {
  .m-md-10 {
    margin: 10px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .my-md-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mx-md-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .p-md-10 {
    padding: 10px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .pr-md-10 {
    padding-right: 10px !important;
  }
  .py-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .px-md-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-10 {
    margin: 10px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .my-lg-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mx-lg-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .p-lg-10 {
    padding: 10px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .pr-lg-10 {
    padding-right: 10px !important;
  }
  .py-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .px-lg-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-10 {
    margin: 10px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .ml-xl-10 {
    margin-left: 10px !important;
  }
  .mr-xl-10 {
    margin-right: 10px !important;
  }
  .my-xl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mx-xl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .p-xl-10 {
    padding: 10px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .pl-xl-10 {
    padding-left: 10px !important;
  }
  .pr-xl-10 {
    padding-right: 10px !important;
  }
  .py-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .px-xl-10 {
    padding-left: 10px !important;
    padding-right: 10px !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;
}

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !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;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

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

@media (max-width: 576px) {
  .m-sm-11 {
    margin: 11px !important;
  }
  .mt-sm-11 {
    margin-top: 11px !important;
  }
  .mb-sm-11 {
    margin-bottom: 11px !important;
  }
  .ml-sm-11 {
    margin-left: 11px !important;
  }
  .mr-sm-11 {
    margin-right: 11px !important;
  }
  .my-sm-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }
  .mx-sm-11 {
    margin-left: 11px !important;
    margin-right: 11px !important;
  }
  .p-sm-11 {
    padding: 11px !important;
  }
  .pt-sm-11 {
    padding-top: 11px !important;
  }
  .pb-sm-11 {
    padding-bottom: 11px !important;
  }
  .pl-sm-11 {
    padding-left: 11px !important;
  }
  .pr-sm-11 {
    padding-right: 11px !important;
  }
  .py-sm-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
  .px-sm-11 {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}
@media (max-width: 768px) {
  .m-md-11 {
    margin: 11px !important;
  }
  .mt-md-11 {
    margin-top: 11px !important;
  }
  .mb-md-11 {
    margin-bottom: 11px !important;
  }
  .ml-md-11 {
    margin-left: 11px !important;
  }
  .mr-md-11 {
    margin-right: 11px !important;
  }
  .my-md-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }
  .mx-md-11 {
    margin-left: 11px !important;
    margin-right: 11px !important;
  }
  .p-md-11 {
    padding: 11px !important;
  }
  .pt-md-11 {
    padding-top: 11px !important;
  }
  .pb-md-11 {
    padding-bottom: 11px !important;
  }
  .pl-md-11 {
    padding-left: 11px !important;
  }
  .pr-md-11 {
    padding-right: 11px !important;
  }
  .py-md-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
  .px-md-11 {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-11 {
    margin: 11px !important;
  }
  .mt-lg-11 {
    margin-top: 11px !important;
  }
  .mb-lg-11 {
    margin-bottom: 11px !important;
  }
  .ml-lg-11 {
    margin-left: 11px !important;
  }
  .mr-lg-11 {
    margin-right: 11px !important;
  }
  .my-lg-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }
  .mx-lg-11 {
    margin-left: 11px !important;
    margin-right: 11px !important;
  }
  .p-lg-11 {
    padding: 11px !important;
  }
  .pt-lg-11 {
    padding-top: 11px !important;
  }
  .pb-lg-11 {
    padding-bottom: 11px !important;
  }
  .pl-lg-11 {
    padding-left: 11px !important;
  }
  .pr-lg-11 {
    padding-right: 11px !important;
  }
  .py-lg-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
  .px-lg-11 {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-11 {
    margin: 11px !important;
  }
  .mt-xl-11 {
    margin-top: 11px !important;
  }
  .mb-xl-11 {
    margin-bottom: 11px !important;
  }
  .ml-xl-11 {
    margin-left: 11px !important;
  }
  .mr-xl-11 {
    margin-right: 11px !important;
  }
  .my-xl-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }
  .mx-xl-11 {
    margin-left: 11px !important;
    margin-right: 11px !important;
  }
  .p-xl-11 {
    padding: 11px !important;
  }
  .pt-xl-11 {
    padding-top: 11px !important;
  }
  .pb-xl-11 {
    padding-bottom: 11px !important;
  }
  .pl-xl-11 {
    padding-left: 11px !important;
  }
  .pr-xl-11 {
    padding-right: 11px !important;
  }
  .py-xl-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
  .px-xl-11 {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}
.m-11 {
  margin: 11px !important;
}

.mt-11 {
  margin-top: 11px !important;
}

.mb-11 {
  margin-bottom: 11px !important;
}

.ml-11 {
  margin-left: 11px !important;
}

.mr-11 {
  margin-right: 11px !important;
}

.my-11 {
  margin-top: 11px !important;
  margin-bottom: 11px !important;
}

.mx-11 {
  margin-left: 11px !important;
  margin-right: 11px !important;
}

.p-11 {
  padding: 11px !important;
}

.pt-11 {
  padding-top: 11px !important;
}

.pb-11 {
  padding-bottom: 11px !important;
}

.pl-11 {
  padding-left: 11px !important;
}

.pr-11 {
  padding-right: 11px !important;
}

.py-11 {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

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

@media (max-width: 576px) {
  .m-sm-12 {
    margin: 12px !important;
  }
  .mt-sm-12 {
    margin-top: 12px !important;
  }
  .mb-sm-12 {
    margin-bottom: 12px !important;
  }
  .ml-sm-12 {
    margin-left: 12px !important;
  }
  .mr-sm-12 {
    margin-right: 12px !important;
  }
  .my-sm-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .mx-sm-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .p-sm-12 {
    padding: 12px !important;
  }
  .pt-sm-12 {
    padding-top: 12px !important;
  }
  .pb-sm-12 {
    padding-bottom: 12px !important;
  }
  .pl-sm-12 {
    padding-left: 12px !important;
  }
  .pr-sm-12 {
    padding-right: 12px !important;
  }
  .py-sm-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .px-sm-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
@media (max-width: 768px) {
  .m-md-12 {
    margin: 12px !important;
  }
  .mt-md-12 {
    margin-top: 12px !important;
  }
  .mb-md-12 {
    margin-bottom: 12px !important;
  }
  .ml-md-12 {
    margin-left: 12px !important;
  }
  .mr-md-12 {
    margin-right: 12px !important;
  }
  .my-md-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .mx-md-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .p-md-12 {
    padding: 12px !important;
  }
  .pt-md-12 {
    padding-top: 12px !important;
  }
  .pb-md-12 {
    padding-bottom: 12px !important;
  }
  .pl-md-12 {
    padding-left: 12px !important;
  }
  .pr-md-12 {
    padding-right: 12px !important;
  }
  .py-md-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .px-md-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-12 {
    margin: 12px !important;
  }
  .mt-lg-12 {
    margin-top: 12px !important;
  }
  .mb-lg-12 {
    margin-bottom: 12px !important;
  }
  .ml-lg-12 {
    margin-left: 12px !important;
  }
  .mr-lg-12 {
    margin-right: 12px !important;
  }
  .my-lg-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .mx-lg-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .p-lg-12 {
    padding: 12px !important;
  }
  .pt-lg-12 {
    padding-top: 12px !important;
  }
  .pb-lg-12 {
    padding-bottom: 12px !important;
  }
  .pl-lg-12 {
    padding-left: 12px !important;
  }
  .pr-lg-12 {
    padding-right: 12px !important;
  }
  .py-lg-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .px-lg-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-12 {
    margin: 12px !important;
  }
  .mt-xl-12 {
    margin-top: 12px !important;
  }
  .mb-xl-12 {
    margin-bottom: 12px !important;
  }
  .ml-xl-12 {
    margin-left: 12px !important;
  }
  .mr-xl-12 {
    margin-right: 12px !important;
  }
  .my-xl-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .mx-xl-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .p-xl-12 {
    padding: 12px !important;
  }
  .pt-xl-12 {
    padding-top: 12px !important;
  }
  .pb-xl-12 {
    padding-bottom: 12px !important;
  }
  .pl-xl-12 {
    padding-left: 12px !important;
  }
  .pr-xl-12 {
    padding-right: 12px !important;
  }
  .py-xl-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .px-xl-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
.m-12 {
  margin: 12px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mx-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.p-12 {
  padding: 12px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

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

@media (max-width: 576px) {
  .m-sm-13 {
    margin: 13px !important;
  }
  .mt-sm-13 {
    margin-top: 13px !important;
  }
  .mb-sm-13 {
    margin-bottom: 13px !important;
  }
  .ml-sm-13 {
    margin-left: 13px !important;
  }
  .mr-sm-13 {
    margin-right: 13px !important;
  }
  .my-sm-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }
  .mx-sm-13 {
    margin-left: 13px !important;
    margin-right: 13px !important;
  }
  .p-sm-13 {
    padding: 13px !important;
  }
  .pt-sm-13 {
    padding-top: 13px !important;
  }
  .pb-sm-13 {
    padding-bottom: 13px !important;
  }
  .pl-sm-13 {
    padding-left: 13px !important;
  }
  .pr-sm-13 {
    padding-right: 13px !important;
  }
  .py-sm-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
  .px-sm-13 {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
@media (max-width: 768px) {
  .m-md-13 {
    margin: 13px !important;
  }
  .mt-md-13 {
    margin-top: 13px !important;
  }
  .mb-md-13 {
    margin-bottom: 13px !important;
  }
  .ml-md-13 {
    margin-left: 13px !important;
  }
  .mr-md-13 {
    margin-right: 13px !important;
  }
  .my-md-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }
  .mx-md-13 {
    margin-left: 13px !important;
    margin-right: 13px !important;
  }
  .p-md-13 {
    padding: 13px !important;
  }
  .pt-md-13 {
    padding-top: 13px !important;
  }
  .pb-md-13 {
    padding-bottom: 13px !important;
  }
  .pl-md-13 {
    padding-left: 13px !important;
  }
  .pr-md-13 {
    padding-right: 13px !important;
  }
  .py-md-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
  .px-md-13 {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-13 {
    margin: 13px !important;
  }
  .mt-lg-13 {
    margin-top: 13px !important;
  }
  .mb-lg-13 {
    margin-bottom: 13px !important;
  }
  .ml-lg-13 {
    margin-left: 13px !important;
  }
  .mr-lg-13 {
    margin-right: 13px !important;
  }
  .my-lg-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }
  .mx-lg-13 {
    margin-left: 13px !important;
    margin-right: 13px !important;
  }
  .p-lg-13 {
    padding: 13px !important;
  }
  .pt-lg-13 {
    padding-top: 13px !important;
  }
  .pb-lg-13 {
    padding-bottom: 13px !important;
  }
  .pl-lg-13 {
    padding-left: 13px !important;
  }
  .pr-lg-13 {
    padding-right: 13px !important;
  }
  .py-lg-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
  .px-lg-13 {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-13 {
    margin: 13px !important;
  }
  .mt-xl-13 {
    margin-top: 13px !important;
  }
  .mb-xl-13 {
    margin-bottom: 13px !important;
  }
  .ml-xl-13 {
    margin-left: 13px !important;
  }
  .mr-xl-13 {
    margin-right: 13px !important;
  }
  .my-xl-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }
  .mx-xl-13 {
    margin-left: 13px !important;
    margin-right: 13px !important;
  }
  .p-xl-13 {
    padding: 13px !important;
  }
  .pt-xl-13 {
    padding-top: 13px !important;
  }
  .pb-xl-13 {
    padding-bottom: 13px !important;
  }
  .pl-xl-13 {
    padding-left: 13px !important;
  }
  .pr-xl-13 {
    padding-right: 13px !important;
  }
  .py-xl-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
  .px-xl-13 {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
.m-13 {
  margin: 13px !important;
}

.mt-13 {
  margin-top: 13px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

.ml-13 {
  margin-left: 13px !important;
}

.mr-13 {
  margin-right: 13px !important;
}

.my-13 {
  margin-top: 13px !important;
  margin-bottom: 13px !important;
}

.mx-13 {
  margin-left: 13px !important;
  margin-right: 13px !important;
}

.p-13 {
  padding: 13px !important;
}

.pt-13 {
  padding-top: 13px !important;
}

.pb-13 {
  padding-bottom: 13px !important;
}

.pl-13 {
  padding-left: 13px !important;
}

.pr-13 {
  padding-right: 13px !important;
}

.py-13 {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

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

@media (max-width: 576px) {
  .m-sm-14 {
    margin: 14px !important;
  }
  .mt-sm-14 {
    margin-top: 14px !important;
  }
  .mb-sm-14 {
    margin-bottom: 14px !important;
  }
  .ml-sm-14 {
    margin-left: 14px !important;
  }
  .mr-sm-14 {
    margin-right: 14px !important;
  }
  .my-sm-14 {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
  .mx-sm-14 {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
  .p-sm-14 {
    padding: 14px !important;
  }
  .pt-sm-14 {
    padding-top: 14px !important;
  }
  .pb-sm-14 {
    padding-bottom: 14px !important;
  }
  .pl-sm-14 {
    padding-left: 14px !important;
  }
  .pr-sm-14 {
    padding-right: 14px !important;
  }
  .py-sm-14 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .px-sm-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
@media (max-width: 768px) {
  .m-md-14 {
    margin: 14px !important;
  }
  .mt-md-14 {
    margin-top: 14px !important;
  }
  .mb-md-14 {
    margin-bottom: 14px !important;
  }
  .ml-md-14 {
    margin-left: 14px !important;
  }
  .mr-md-14 {
    margin-right: 14px !important;
  }
  .my-md-14 {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
  .mx-md-14 {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
  .p-md-14 {
    padding: 14px !important;
  }
  .pt-md-14 {
    padding-top: 14px !important;
  }
  .pb-md-14 {
    padding-bottom: 14px !important;
  }
  .pl-md-14 {
    padding-left: 14px !important;
  }
  .pr-md-14 {
    padding-right: 14px !important;
  }
  .py-md-14 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .px-md-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-14 {
    margin: 14px !important;
  }
  .mt-lg-14 {
    margin-top: 14px !important;
  }
  .mb-lg-14 {
    margin-bottom: 14px !important;
  }
  .ml-lg-14 {
    margin-left: 14px !important;
  }
  .mr-lg-14 {
    margin-right: 14px !important;
  }
  .my-lg-14 {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
  .mx-lg-14 {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
  .p-lg-14 {
    padding: 14px !important;
  }
  .pt-lg-14 {
    padding-top: 14px !important;
  }
  .pb-lg-14 {
    padding-bottom: 14px !important;
  }
  .pl-lg-14 {
    padding-left: 14px !important;
  }
  .pr-lg-14 {
    padding-right: 14px !important;
  }
  .py-lg-14 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .px-lg-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-14 {
    margin: 14px !important;
  }
  .mt-xl-14 {
    margin-top: 14px !important;
  }
  .mb-xl-14 {
    margin-bottom: 14px !important;
  }
  .ml-xl-14 {
    margin-left: 14px !important;
  }
  .mr-xl-14 {
    margin-right: 14px !important;
  }
  .my-xl-14 {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
  .mx-xl-14 {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
  .p-xl-14 {
    padding: 14px !important;
  }
  .pt-xl-14 {
    padding-top: 14px !important;
  }
  .pb-xl-14 {
    padding-bottom: 14px !important;
  }
  .pl-xl-14 {
    padding-left: 14px !important;
  }
  .pr-xl-14 {
    padding-right: 14px !important;
  }
  .py-xl-14 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .px-xl-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
.m-14 {
  margin: 14px !important;
}

.mt-14 {
  margin-top: 14px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.ml-14 {
  margin-left: 14px !important;
}

.mr-14 {
  margin-right: 14px !important;
}

.my-14 {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.mx-14 {
  margin-left: 14px !important;
  margin-right: 14px !important;
}

.p-14 {
  padding: 14px !important;
}

.pt-14 {
  padding-top: 14px !important;
}

.pb-14 {
  padding-bottom: 14px !important;
}

.pl-14 {
  padding-left: 14px !important;
}

.pr-14 {
  padding-right: 14px !important;
}

.py-14 {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

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

@media (max-width: 576px) {
  .m-sm-15 {
    margin: 15px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .ml-sm-15 {
    margin-left: 15px !important;
  }
  .mr-sm-15 {
    margin-right: 15px !important;
  }
  .my-sm-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mx-sm-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .pl-sm-15 {
    padding-left: 15px !important;
  }
  .pr-sm-15 {
    padding-right: 15px !important;
  }
  .py-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .px-sm-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 768px) {
  .m-md-15 {
    margin: 15px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .ml-md-15 {
    margin-left: 15px !important;
  }
  .mr-md-15 {
    margin-right: 15px !important;
  }
  .my-md-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mx-md-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .pl-md-15 {
    padding-left: 15px !important;
  }
  .pr-md-15 {
    padding-right: 15px !important;
  }
  .py-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .px-md-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-15 {
    margin: 15px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .ml-lg-15 {
    margin-left: 15px !important;
  }
  .mr-lg-15 {
    margin-right: 15px !important;
  }
  .my-lg-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mx-lg-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .pl-lg-15 {
    padding-left: 15px !important;
  }
  .pr-lg-15 {
    padding-right: 15px !important;
  }
  .py-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .px-lg-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-15 {
    margin: 15px !important;
  }
  .mt-xl-15 {
    margin-top: 15px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .ml-xl-15 {
    margin-left: 15px !important;
  }
  .mr-xl-15 {
    margin-right: 15px !important;
  }
  .my-xl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mx-xl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .p-xl-15 {
    padding: 15px !important;
  }
  .pt-xl-15 {
    padding-top: 15px !important;
  }
  .pb-xl-15 {
    padding-bottom: 15px !important;
  }
  .pl-xl-15 {
    padding-left: 15px !important;
  }
  .pr-xl-15 {
    padding-right: 15px !important;
  }
  .py-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .px-xl-15 {
    padding-left: 15px !important;
    padding-right: 15px !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;
}

.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !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;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

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

@media (max-width: 576px) {
  .m-sm-16 {
    margin: 16px !important;
  }
  .mt-sm-16 {
    margin-top: 16px !important;
  }
  .mb-sm-16 {
    margin-bottom: 16px !important;
  }
  .ml-sm-16 {
    margin-left: 16px !important;
  }
  .mr-sm-16 {
    margin-right: 16px !important;
  }
  .my-sm-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .mx-sm-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .p-sm-16 {
    padding: 16px !important;
  }
  .pt-sm-16 {
    padding-top: 16px !important;
  }
  .pb-sm-16 {
    padding-bottom: 16px !important;
  }
  .pl-sm-16 {
    padding-left: 16px !important;
  }
  .pr-sm-16 {
    padding-right: 16px !important;
  }
  .py-sm-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .px-sm-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 768px) {
  .m-md-16 {
    margin: 16px !important;
  }
  .mt-md-16 {
    margin-top: 16px !important;
  }
  .mb-md-16 {
    margin-bottom: 16px !important;
  }
  .ml-md-16 {
    margin-left: 16px !important;
  }
  .mr-md-16 {
    margin-right: 16px !important;
  }
  .my-md-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .mx-md-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .p-md-16 {
    padding: 16px !important;
  }
  .pt-md-16 {
    padding-top: 16px !important;
  }
  .pb-md-16 {
    padding-bottom: 16px !important;
  }
  .pl-md-16 {
    padding-left: 16px !important;
  }
  .pr-md-16 {
    padding-right: 16px !important;
  }
  .py-md-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .px-md-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-16 {
    margin: 16px !important;
  }
  .mt-lg-16 {
    margin-top: 16px !important;
  }
  .mb-lg-16 {
    margin-bottom: 16px !important;
  }
  .ml-lg-16 {
    margin-left: 16px !important;
  }
  .mr-lg-16 {
    margin-right: 16px !important;
  }
  .my-lg-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .mx-lg-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .p-lg-16 {
    padding: 16px !important;
  }
  .pt-lg-16 {
    padding-top: 16px !important;
  }
  .pb-lg-16 {
    padding-bottom: 16px !important;
  }
  .pl-lg-16 {
    padding-left: 16px !important;
  }
  .pr-lg-16 {
    padding-right: 16px !important;
  }
  .py-lg-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .px-lg-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-16 {
    margin: 16px !important;
  }
  .mt-xl-16 {
    margin-top: 16px !important;
  }
  .mb-xl-16 {
    margin-bottom: 16px !important;
  }
  .ml-xl-16 {
    margin-left: 16px !important;
  }
  .mr-xl-16 {
    margin-right: 16px !important;
  }
  .my-xl-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .mx-xl-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .p-xl-16 {
    padding: 16px !important;
  }
  .pt-xl-16 {
    padding-top: 16px !important;
  }
  .pb-xl-16 {
    padding-bottom: 16px !important;
  }
  .pl-xl-16 {
    padding-left: 16px !important;
  }
  .pr-xl-16 {
    padding-right: 16px !important;
  }
  .py-xl-16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .px-xl-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
.m-16 {
  margin: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.p-16 {
  padding: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

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

@media (max-width: 576px) {
  .m-sm-17 {
    margin: 17px !important;
  }
  .mt-sm-17 {
    margin-top: 17px !important;
  }
  .mb-sm-17 {
    margin-bottom: 17px !important;
  }
  .ml-sm-17 {
    margin-left: 17px !important;
  }
  .mr-sm-17 {
    margin-right: 17px !important;
  }
  .my-sm-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }
  .mx-sm-17 {
    margin-left: 17px !important;
    margin-right: 17px !important;
  }
  .p-sm-17 {
    padding: 17px !important;
  }
  .pt-sm-17 {
    padding-top: 17px !important;
  }
  .pb-sm-17 {
    padding-bottom: 17px !important;
  }
  .pl-sm-17 {
    padding-left: 17px !important;
  }
  .pr-sm-17 {
    padding-right: 17px !important;
  }
  .py-sm-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }
  .px-sm-17 {
    padding-left: 17px !important;
    padding-right: 17px !important;
  }
}
@media (max-width: 768px) {
  .m-md-17 {
    margin: 17px !important;
  }
  .mt-md-17 {
    margin-top: 17px !important;
  }
  .mb-md-17 {
    margin-bottom: 17px !important;
  }
  .ml-md-17 {
    margin-left: 17px !important;
  }
  .mr-md-17 {
    margin-right: 17px !important;
  }
  .my-md-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }
  .mx-md-17 {
    margin-left: 17px !important;
    margin-right: 17px !important;
  }
  .p-md-17 {
    padding: 17px !important;
  }
  .pt-md-17 {
    padding-top: 17px !important;
  }
  .pb-md-17 {
    padding-bottom: 17px !important;
  }
  .pl-md-17 {
    padding-left: 17px !important;
  }
  .pr-md-17 {
    padding-right: 17px !important;
  }
  .py-md-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }
  .px-md-17 {
    padding-left: 17px !important;
    padding-right: 17px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-17 {
    margin: 17px !important;
  }
  .mt-lg-17 {
    margin-top: 17px !important;
  }
  .mb-lg-17 {
    margin-bottom: 17px !important;
  }
  .ml-lg-17 {
    margin-left: 17px !important;
  }
  .mr-lg-17 {
    margin-right: 17px !important;
  }
  .my-lg-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }
  .mx-lg-17 {
    margin-left: 17px !important;
    margin-right: 17px !important;
  }
  .p-lg-17 {
    padding: 17px !important;
  }
  .pt-lg-17 {
    padding-top: 17px !important;
  }
  .pb-lg-17 {
    padding-bottom: 17px !important;
  }
  .pl-lg-17 {
    padding-left: 17px !important;
  }
  .pr-lg-17 {
    padding-right: 17px !important;
  }
  .py-lg-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }
  .px-lg-17 {
    padding-left: 17px !important;
    padding-right: 17px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-17 {
    margin: 17px !important;
  }
  .mt-xl-17 {
    margin-top: 17px !important;
  }
  .mb-xl-17 {
    margin-bottom: 17px !important;
  }
  .ml-xl-17 {
    margin-left: 17px !important;
  }
  .mr-xl-17 {
    margin-right: 17px !important;
  }
  .my-xl-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }
  .mx-xl-17 {
    margin-left: 17px !important;
    margin-right: 17px !important;
  }
  .p-xl-17 {
    padding: 17px !important;
  }
  .pt-xl-17 {
    padding-top: 17px !important;
  }
  .pb-xl-17 {
    padding-bottom: 17px !important;
  }
  .pl-xl-17 {
    padding-left: 17px !important;
  }
  .pr-xl-17 {
    padding-right: 17px !important;
  }
  .py-xl-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }
  .px-xl-17 {
    padding-left: 17px !important;
    padding-right: 17px !important;
  }
}
.m-17 {
  margin: 17px !important;
}

.mt-17 {
  margin-top: 17px !important;
}

.mb-17 {
  margin-bottom: 17px !important;
}

.ml-17 {
  margin-left: 17px !important;
}

.mr-17 {
  margin-right: 17px !important;
}

.my-17 {
  margin-top: 17px !important;
  margin-bottom: 17px !important;
}

.mx-17 {
  margin-left: 17px !important;
  margin-right: 17px !important;
}

.p-17 {
  padding: 17px !important;
}

.pt-17 {
  padding-top: 17px !important;
}

.pb-17 {
  padding-bottom: 17px !important;
}

.pl-17 {
  padding-left: 17px !important;
}

.pr-17 {
  padding-right: 17px !important;
}

.py-17 {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}

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

@media (max-width: 576px) {
  .m-sm-18 {
    margin: 18px !important;
  }
  .mt-sm-18 {
    margin-top: 18px !important;
  }
  .mb-sm-18 {
    margin-bottom: 18px !important;
  }
  .ml-sm-18 {
    margin-left: 18px !important;
  }
  .mr-sm-18 {
    margin-right: 18px !important;
  }
  .my-sm-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .mx-sm-18 {
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
  .p-sm-18 {
    padding: 18px !important;
  }
  .pt-sm-18 {
    padding-top: 18px !important;
  }
  .pb-sm-18 {
    padding-bottom: 18px !important;
  }
  .pl-sm-18 {
    padding-left: 18px !important;
  }
  .pr-sm-18 {
    padding-right: 18px !important;
  }
  .py-sm-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .px-sm-18 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 768px) {
  .m-md-18 {
    margin: 18px !important;
  }
  .mt-md-18 {
    margin-top: 18px !important;
  }
  .mb-md-18 {
    margin-bottom: 18px !important;
  }
  .ml-md-18 {
    margin-left: 18px !important;
  }
  .mr-md-18 {
    margin-right: 18px !important;
  }
  .my-md-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .mx-md-18 {
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
  .p-md-18 {
    padding: 18px !important;
  }
  .pt-md-18 {
    padding-top: 18px !important;
  }
  .pb-md-18 {
    padding-bottom: 18px !important;
  }
  .pl-md-18 {
    padding-left: 18px !important;
  }
  .pr-md-18 {
    padding-right: 18px !important;
  }
  .py-md-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .px-md-18 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-18 {
    margin: 18px !important;
  }
  .mt-lg-18 {
    margin-top: 18px !important;
  }
  .mb-lg-18 {
    margin-bottom: 18px !important;
  }
  .ml-lg-18 {
    margin-left: 18px !important;
  }
  .mr-lg-18 {
    margin-right: 18px !important;
  }
  .my-lg-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .mx-lg-18 {
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
  .p-lg-18 {
    padding: 18px !important;
  }
  .pt-lg-18 {
    padding-top: 18px !important;
  }
  .pb-lg-18 {
    padding-bottom: 18px !important;
  }
  .pl-lg-18 {
    padding-left: 18px !important;
  }
  .pr-lg-18 {
    padding-right: 18px !important;
  }
  .py-lg-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .px-lg-18 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-18 {
    margin: 18px !important;
  }
  .mt-xl-18 {
    margin-top: 18px !important;
  }
  .mb-xl-18 {
    margin-bottom: 18px !important;
  }
  .ml-xl-18 {
    margin-left: 18px !important;
  }
  .mr-xl-18 {
    margin-right: 18px !important;
  }
  .my-xl-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }
  .mx-xl-18 {
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
  .p-xl-18 {
    padding: 18px !important;
  }
  .pt-xl-18 {
    padding-top: 18px !important;
  }
  .pb-xl-18 {
    padding-bottom: 18px !important;
  }
  .pl-xl-18 {
    padding-left: 18px !important;
  }
  .pr-xl-18 {
    padding-right: 18px !important;
  }
  .py-xl-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
  .px-xl-18 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
.m-18 {
  margin: 18px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.ml-18 {
  margin-left: 18px !important;
}

.mr-18 {
  margin-right: 18px !important;
}

.my-18 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.mx-18 {
  margin-left: 18px !important;
  margin-right: 18px !important;
}

.p-18 {
  padding: 18px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.pr-18 {
  padding-right: 18px !important;
}

.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

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

@media (max-width: 576px) {
  .m-sm-19 {
    margin: 19px !important;
  }
  .mt-sm-19 {
    margin-top: 19px !important;
  }
  .mb-sm-19 {
    margin-bottom: 19px !important;
  }
  .ml-sm-19 {
    margin-left: 19px !important;
  }
  .mr-sm-19 {
    margin-right: 19px !important;
  }
  .my-sm-19 {
    margin-top: 19px !important;
    margin-bottom: 19px !important;
  }
  .mx-sm-19 {
    margin-left: 19px !important;
    margin-right: 19px !important;
  }
  .p-sm-19 {
    padding: 19px !important;
  }
  .pt-sm-19 {
    padding-top: 19px !important;
  }
  .pb-sm-19 {
    padding-bottom: 19px !important;
  }
  .pl-sm-19 {
    padding-left: 19px !important;
  }
  .pr-sm-19 {
    padding-right: 19px !important;
  }
  .py-sm-19 {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .px-sm-19 {
    padding-left: 19px !important;
    padding-right: 19px !important;
  }
}
@media (max-width: 768px) {
  .m-md-19 {
    margin: 19px !important;
  }
  .mt-md-19 {
    margin-top: 19px !important;
  }
  .mb-md-19 {
    margin-bottom: 19px !important;
  }
  .ml-md-19 {
    margin-left: 19px !important;
  }
  .mr-md-19 {
    margin-right: 19px !important;
  }
  .my-md-19 {
    margin-top: 19px !important;
    margin-bottom: 19px !important;
  }
  .mx-md-19 {
    margin-left: 19px !important;
    margin-right: 19px !important;
  }
  .p-md-19 {
    padding: 19px !important;
  }
  .pt-md-19 {
    padding-top: 19px !important;
  }
  .pb-md-19 {
    padding-bottom: 19px !important;
  }
  .pl-md-19 {
    padding-left: 19px !important;
  }
  .pr-md-19 {
    padding-right: 19px !important;
  }
  .py-md-19 {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .px-md-19 {
    padding-left: 19px !important;
    padding-right: 19px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-19 {
    margin: 19px !important;
  }
  .mt-lg-19 {
    margin-top: 19px !important;
  }
  .mb-lg-19 {
    margin-bottom: 19px !important;
  }
  .ml-lg-19 {
    margin-left: 19px !important;
  }
  .mr-lg-19 {
    margin-right: 19px !important;
  }
  .my-lg-19 {
    margin-top: 19px !important;
    margin-bottom: 19px !important;
  }
  .mx-lg-19 {
    margin-left: 19px !important;
    margin-right: 19px !important;
  }
  .p-lg-19 {
    padding: 19px !important;
  }
  .pt-lg-19 {
    padding-top: 19px !important;
  }
  .pb-lg-19 {
    padding-bottom: 19px !important;
  }
  .pl-lg-19 {
    padding-left: 19px !important;
  }
  .pr-lg-19 {
    padding-right: 19px !important;
  }
  .py-lg-19 {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .px-lg-19 {
    padding-left: 19px !important;
    padding-right: 19px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-19 {
    margin: 19px !important;
  }
  .mt-xl-19 {
    margin-top: 19px !important;
  }
  .mb-xl-19 {
    margin-bottom: 19px !important;
  }
  .ml-xl-19 {
    margin-left: 19px !important;
  }
  .mr-xl-19 {
    margin-right: 19px !important;
  }
  .my-xl-19 {
    margin-top: 19px !important;
    margin-bottom: 19px !important;
  }
  .mx-xl-19 {
    margin-left: 19px !important;
    margin-right: 19px !important;
  }
  .p-xl-19 {
    padding: 19px !important;
  }
  .pt-xl-19 {
    padding-top: 19px !important;
  }
  .pb-xl-19 {
    padding-bottom: 19px !important;
  }
  .pl-xl-19 {
    padding-left: 19px !important;
  }
  .pr-xl-19 {
    padding-right: 19px !important;
  }
  .py-xl-19 {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .px-xl-19 {
    padding-left: 19px !important;
    padding-right: 19px !important;
  }
}
.m-19 {
  margin: 19px !important;
}

.mt-19 {
  margin-top: 19px !important;
}

.mb-19 {
  margin-bottom: 19px !important;
}

.ml-19 {
  margin-left: 19px !important;
}

.mr-19 {
  margin-right: 19px !important;
}

.my-19 {
  margin-top: 19px !important;
  margin-bottom: 19px !important;
}

.mx-19 {
  margin-left: 19px !important;
  margin-right: 19px !important;
}

.p-19 {
  padding: 19px !important;
}

.pt-19 {
  padding-top: 19px !important;
}

.pb-19 {
  padding-bottom: 19px !important;
}

.pl-19 {
  padding-left: 19px !important;
}

.pr-19 {
  padding-right: 19px !important;
}

.py-19 {
  padding-top: 19px !important;
  padding-bottom: 19px !important;
}

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

@media (max-width: 576px) {
  .m-sm-20 {
    margin: 20px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .ml-sm-20 {
    margin-left: 20px !important;
  }
  .mr-sm-20 {
    margin-right: 20px !important;
  }
  .my-sm-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mx-sm-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .p-sm-20 {
    padding: 20px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .pl-sm-20 {
    padding-left: 20px !important;
  }
  .pr-sm-20 {
    padding-right: 20px !important;
  }
  .py-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .px-sm-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 768px) {
  .m-md-20 {
    margin: 20px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .mr-md-20 {
    margin-right: 20px !important;
  }
  .my-md-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mx-md-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .p-md-20 {
    padding: 20px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .pl-md-20 {
    padding-left: 20px !important;
  }
  .pr-md-20 {
    padding-right: 20px !important;
  }
  .py-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .px-md-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-20 {
    margin: 20px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .mr-lg-20 {
    margin-right: 20px !important;
  }
  .my-lg-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mx-lg-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .p-lg-20 {
    padding: 20px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .pl-lg-20 {
    padding-left: 20px !important;
  }
  .pr-lg-20 {
    padding-right: 20px !important;
  }
  .py-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .px-lg-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-20 {
    margin: 20px !important;
  }
  .mt-xl-20 {
    margin-top: 20px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .ml-xl-20 {
    margin-left: 20px !important;
  }
  .mr-xl-20 {
    margin-right: 20px !important;
  }
  .my-xl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mx-xl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .p-xl-20 {
    padding: 20px !important;
  }
  .pt-xl-20 {
    padding-top: 20px !important;
  }
  .pb-xl-20 {
    padding-bottom: 20px !important;
  }
  .pl-xl-20 {
    padding-left: 20px !important;
  }
  .pr-xl-20 {
    padding-right: 20px !important;
  }
  .py-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .px-xl-20 {
    padding-left: 20px !important;
    padding-right: 20px !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;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !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;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

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

@media (max-width: 576px) {
  .m-sm-21 {
    margin: 21px !important;
  }
  .mt-sm-21 {
    margin-top: 21px !important;
  }
  .mb-sm-21 {
    margin-bottom: 21px !important;
  }
  .ml-sm-21 {
    margin-left: 21px !important;
  }
  .mr-sm-21 {
    margin-right: 21px !important;
  }
  .my-sm-21 {
    margin-top: 21px !important;
    margin-bottom: 21px !important;
  }
  .mx-sm-21 {
    margin-left: 21px !important;
    margin-right: 21px !important;
  }
  .p-sm-21 {
    padding: 21px !important;
  }
  .pt-sm-21 {
    padding-top: 21px !important;
  }
  .pb-sm-21 {
    padding-bottom: 21px !important;
  }
  .pl-sm-21 {
    padding-left: 21px !important;
  }
  .pr-sm-21 {
    padding-right: 21px !important;
  }
  .py-sm-21 {
    padding-top: 21px !important;
    padding-bottom: 21px !important;
  }
  .px-sm-21 {
    padding-left: 21px !important;
    padding-right: 21px !important;
  }
}
@media (max-width: 768px) {
  .m-md-21 {
    margin: 21px !important;
  }
  .mt-md-21 {
    margin-top: 21px !important;
  }
  .mb-md-21 {
    margin-bottom: 21px !important;
  }
  .ml-md-21 {
    margin-left: 21px !important;
  }
  .mr-md-21 {
    margin-right: 21px !important;
  }
  .my-md-21 {
    margin-top: 21px !important;
    margin-bottom: 21px !important;
  }
  .mx-md-21 {
    margin-left: 21px !important;
    margin-right: 21px !important;
  }
  .p-md-21 {
    padding: 21px !important;
  }
  .pt-md-21 {
    padding-top: 21px !important;
  }
  .pb-md-21 {
    padding-bottom: 21px !important;
  }
  .pl-md-21 {
    padding-left: 21px !important;
  }
  .pr-md-21 {
    padding-right: 21px !important;
  }
  .py-md-21 {
    padding-top: 21px !important;
    padding-bottom: 21px !important;
  }
  .px-md-21 {
    padding-left: 21px !important;
    padding-right: 21px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-21 {
    margin: 21px !important;
  }
  .mt-lg-21 {
    margin-top: 21px !important;
  }
  .mb-lg-21 {
    margin-bottom: 21px !important;
  }
  .ml-lg-21 {
    margin-left: 21px !important;
  }
  .mr-lg-21 {
    margin-right: 21px !important;
  }
  .my-lg-21 {
    margin-top: 21px !important;
    margin-bottom: 21px !important;
  }
  .mx-lg-21 {
    margin-left: 21px !important;
    margin-right: 21px !important;
  }
  .p-lg-21 {
    padding: 21px !important;
  }
  .pt-lg-21 {
    padding-top: 21px !important;
  }
  .pb-lg-21 {
    padding-bottom: 21px !important;
  }
  .pl-lg-21 {
    padding-left: 21px !important;
  }
  .pr-lg-21 {
    padding-right: 21px !important;
  }
  .py-lg-21 {
    padding-top: 21px !important;
    padding-bottom: 21px !important;
  }
  .px-lg-21 {
    padding-left: 21px !important;
    padding-right: 21px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-21 {
    margin: 21px !important;
  }
  .mt-xl-21 {
    margin-top: 21px !important;
  }
  .mb-xl-21 {
    margin-bottom: 21px !important;
  }
  .ml-xl-21 {
    margin-left: 21px !important;
  }
  .mr-xl-21 {
    margin-right: 21px !important;
  }
  .my-xl-21 {
    margin-top: 21px !important;
    margin-bottom: 21px !important;
  }
  .mx-xl-21 {
    margin-left: 21px !important;
    margin-right: 21px !important;
  }
  .p-xl-21 {
    padding: 21px !important;
  }
  .pt-xl-21 {
    padding-top: 21px !important;
  }
  .pb-xl-21 {
    padding-bottom: 21px !important;
  }
  .pl-xl-21 {
    padding-left: 21px !important;
  }
  .pr-xl-21 {
    padding-right: 21px !important;
  }
  .py-xl-21 {
    padding-top: 21px !important;
    padding-bottom: 21px !important;
  }
  .px-xl-21 {
    padding-left: 21px !important;
    padding-right: 21px !important;
  }
}
.m-21 {
  margin: 21px !important;
}

.mt-21 {
  margin-top: 21px !important;
}

.mb-21 {
  margin-bottom: 21px !important;
}

.ml-21 {
  margin-left: 21px !important;
}

.mr-21 {
  margin-right: 21px !important;
}

.my-21 {
  margin-top: 21px !important;
  margin-bottom: 21px !important;
}

.mx-21 {
  margin-left: 21px !important;
  margin-right: 21px !important;
}

.p-21 {
  padding: 21px !important;
}

.pt-21 {
  padding-top: 21px !important;
}

.pb-21 {
  padding-bottom: 21px !important;
}

.pl-21 {
  padding-left: 21px !important;
}

.pr-21 {
  padding-right: 21px !important;
}

.py-21 {
  padding-top: 21px !important;
  padding-bottom: 21px !important;
}

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

@media (max-width: 576px) {
  .m-sm-22 {
    margin: 22px !important;
  }
  .mt-sm-22 {
    margin-top: 22px !important;
  }
  .mb-sm-22 {
    margin-bottom: 22px !important;
  }
  .ml-sm-22 {
    margin-left: 22px !important;
  }
  .mr-sm-22 {
    margin-right: 22px !important;
  }
  .my-sm-22 {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .mx-sm-22 {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .p-sm-22 {
    padding: 22px !important;
  }
  .pt-sm-22 {
    padding-top: 22px !important;
  }
  .pb-sm-22 {
    padding-bottom: 22px !important;
  }
  .pl-sm-22 {
    padding-left: 22px !important;
  }
  .pr-sm-22 {
    padding-right: 22px !important;
  }
  .py-sm-22 {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .px-sm-22 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}
@media (max-width: 768px) {
  .m-md-22 {
    margin: 22px !important;
  }
  .mt-md-22 {
    margin-top: 22px !important;
  }
  .mb-md-22 {
    margin-bottom: 22px !important;
  }
  .ml-md-22 {
    margin-left: 22px !important;
  }
  .mr-md-22 {
    margin-right: 22px !important;
  }
  .my-md-22 {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .mx-md-22 {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .p-md-22 {
    padding: 22px !important;
  }
  .pt-md-22 {
    padding-top: 22px !important;
  }
  .pb-md-22 {
    padding-bottom: 22px !important;
  }
  .pl-md-22 {
    padding-left: 22px !important;
  }
  .pr-md-22 {
    padding-right: 22px !important;
  }
  .py-md-22 {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .px-md-22 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-22 {
    margin: 22px !important;
  }
  .mt-lg-22 {
    margin-top: 22px !important;
  }
  .mb-lg-22 {
    margin-bottom: 22px !important;
  }
  .ml-lg-22 {
    margin-left: 22px !important;
  }
  .mr-lg-22 {
    margin-right: 22px !important;
  }
  .my-lg-22 {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .mx-lg-22 {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .p-lg-22 {
    padding: 22px !important;
  }
  .pt-lg-22 {
    padding-top: 22px !important;
  }
  .pb-lg-22 {
    padding-bottom: 22px !important;
  }
  .pl-lg-22 {
    padding-left: 22px !important;
  }
  .pr-lg-22 {
    padding-right: 22px !important;
  }
  .py-lg-22 {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .px-lg-22 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-22 {
    margin: 22px !important;
  }
  .mt-xl-22 {
    margin-top: 22px !important;
  }
  .mb-xl-22 {
    margin-bottom: 22px !important;
  }
  .ml-xl-22 {
    margin-left: 22px !important;
  }
  .mr-xl-22 {
    margin-right: 22px !important;
  }
  .my-xl-22 {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .mx-xl-22 {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .p-xl-22 {
    padding: 22px !important;
  }
  .pt-xl-22 {
    padding-top: 22px !important;
  }
  .pb-xl-22 {
    padding-bottom: 22px !important;
  }
  .pl-xl-22 {
    padding-left: 22px !important;
  }
  .pr-xl-22 {
    padding-right: 22px !important;
  }
  .py-xl-22 {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .px-xl-22 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}
.m-22 {
  margin: 22px !important;
}

.mt-22 {
  margin-top: 22px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.ml-22 {
  margin-left: 22px !important;
}

.mr-22 {
  margin-right: 22px !important;
}

.my-22 {
  margin-top: 22px !important;
  margin-bottom: 22px !important;
}

.mx-22 {
  margin-left: 22px !important;
  margin-right: 22px !important;
}

.p-22 {
  padding: 22px !important;
}

.pt-22 {
  padding-top: 22px !important;
}

.pb-22 {
  padding-bottom: 22px !important;
}

.pl-22 {
  padding-left: 22px !important;
}

.pr-22 {
  padding-right: 22px !important;
}

.py-22 {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

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

@media (max-width: 576px) {
  .m-sm-23 {
    margin: 23px !important;
  }
  .mt-sm-23 {
    margin-top: 23px !important;
  }
  .mb-sm-23 {
    margin-bottom: 23px !important;
  }
  .ml-sm-23 {
    margin-left: 23px !important;
  }
  .mr-sm-23 {
    margin-right: 23px !important;
  }
  .my-sm-23 {
    margin-top: 23px !important;
    margin-bottom: 23px !important;
  }
  .mx-sm-23 {
    margin-left: 23px !important;
    margin-right: 23px !important;
  }
  .p-sm-23 {
    padding: 23px !important;
  }
  .pt-sm-23 {
    padding-top: 23px !important;
  }
  .pb-sm-23 {
    padding-bottom: 23px !important;
  }
  .pl-sm-23 {
    padding-left: 23px !important;
  }
  .pr-sm-23 {
    padding-right: 23px !important;
  }
  .py-sm-23 {
    padding-top: 23px !important;
    padding-bottom: 23px !important;
  }
  .px-sm-23 {
    padding-left: 23px !important;
    padding-right: 23px !important;
  }
}
@media (max-width: 768px) {
  .m-md-23 {
    margin: 23px !important;
  }
  .mt-md-23 {
    margin-top: 23px !important;
  }
  .mb-md-23 {
    margin-bottom: 23px !important;
  }
  .ml-md-23 {
    margin-left: 23px !important;
  }
  .mr-md-23 {
    margin-right: 23px !important;
  }
  .my-md-23 {
    margin-top: 23px !important;
    margin-bottom: 23px !important;
  }
  .mx-md-23 {
    margin-left: 23px !important;
    margin-right: 23px !important;
  }
  .p-md-23 {
    padding: 23px !important;
  }
  .pt-md-23 {
    padding-top: 23px !important;
  }
  .pb-md-23 {
    padding-bottom: 23px !important;
  }
  .pl-md-23 {
    padding-left: 23px !important;
  }
  .pr-md-23 {
    padding-right: 23px !important;
  }
  .py-md-23 {
    padding-top: 23px !important;
    padding-bottom: 23px !important;
  }
  .px-md-23 {
    padding-left: 23px !important;
    padding-right: 23px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-23 {
    margin: 23px !important;
  }
  .mt-lg-23 {
    margin-top: 23px !important;
  }
  .mb-lg-23 {
    margin-bottom: 23px !important;
  }
  .ml-lg-23 {
    margin-left: 23px !important;
  }
  .mr-lg-23 {
    margin-right: 23px !important;
  }
  .my-lg-23 {
    margin-top: 23px !important;
    margin-bottom: 23px !important;
  }
  .mx-lg-23 {
    margin-left: 23px !important;
    margin-right: 23px !important;
  }
  .p-lg-23 {
    padding: 23px !important;
  }
  .pt-lg-23 {
    padding-top: 23px !important;
  }
  .pb-lg-23 {
    padding-bottom: 23px !important;
  }
  .pl-lg-23 {
    padding-left: 23px !important;
  }
  .pr-lg-23 {
    padding-right: 23px !important;
  }
  .py-lg-23 {
    padding-top: 23px !important;
    padding-bottom: 23px !important;
  }
  .px-lg-23 {
    padding-left: 23px !important;
    padding-right: 23px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-23 {
    margin: 23px !important;
  }
  .mt-xl-23 {
    margin-top: 23px !important;
  }
  .mb-xl-23 {
    margin-bottom: 23px !important;
  }
  .ml-xl-23 {
    margin-left: 23px !important;
  }
  .mr-xl-23 {
    margin-right: 23px !important;
  }
  .my-xl-23 {
    margin-top: 23px !important;
    margin-bottom: 23px !important;
  }
  .mx-xl-23 {
    margin-left: 23px !important;
    margin-right: 23px !important;
  }
  .p-xl-23 {
    padding: 23px !important;
  }
  .pt-xl-23 {
    padding-top: 23px !important;
  }
  .pb-xl-23 {
    padding-bottom: 23px !important;
  }
  .pl-xl-23 {
    padding-left: 23px !important;
  }
  .pr-xl-23 {
    padding-right: 23px !important;
  }
  .py-xl-23 {
    padding-top: 23px !important;
    padding-bottom: 23px !important;
  }
  .px-xl-23 {
    padding-left: 23px !important;
    padding-right: 23px !important;
  }
}
.m-23 {
  margin: 23px !important;
}

.mt-23 {
  margin-top: 23px !important;
}

.mb-23 {
  margin-bottom: 23px !important;
}

.ml-23 {
  margin-left: 23px !important;
}

.mr-23 {
  margin-right: 23px !important;
}

.my-23 {
  margin-top: 23px !important;
  margin-bottom: 23px !important;
}

.mx-23 {
  margin-left: 23px !important;
  margin-right: 23px !important;
}

.p-23 {
  padding: 23px !important;
}

.pt-23 {
  padding-top: 23px !important;
}

.pb-23 {
  padding-bottom: 23px !important;
}

.pl-23 {
  padding-left: 23px !important;
}

.pr-23 {
  padding-right: 23px !important;
}

.py-23 {
  padding-top: 23px !important;
  padding-bottom: 23px !important;
}

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

@media (max-width: 576px) {
  .m-sm-24 {
    margin: 24px !important;
  }
  .mt-sm-24 {
    margin-top: 24px !important;
  }
  .mb-sm-24 {
    margin-bottom: 24px !important;
  }
  .ml-sm-24 {
    margin-left: 24px !important;
  }
  .mr-sm-24 {
    margin-right: 24px !important;
  }
  .my-sm-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .mx-sm-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .p-sm-24 {
    padding: 24px !important;
  }
  .pt-sm-24 {
    padding-top: 24px !important;
  }
  .pb-sm-24 {
    padding-bottom: 24px !important;
  }
  .pl-sm-24 {
    padding-left: 24px !important;
  }
  .pr-sm-24 {
    padding-right: 24px !important;
  }
  .py-sm-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .px-sm-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 768px) {
  .m-md-24 {
    margin: 24px !important;
  }
  .mt-md-24 {
    margin-top: 24px !important;
  }
  .mb-md-24 {
    margin-bottom: 24px !important;
  }
  .ml-md-24 {
    margin-left: 24px !important;
  }
  .mr-md-24 {
    margin-right: 24px !important;
  }
  .my-md-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .mx-md-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .p-md-24 {
    padding: 24px !important;
  }
  .pt-md-24 {
    padding-top: 24px !important;
  }
  .pb-md-24 {
    padding-bottom: 24px !important;
  }
  .pl-md-24 {
    padding-left: 24px !important;
  }
  .pr-md-24 {
    padding-right: 24px !important;
  }
  .py-md-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .px-md-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-24 {
    margin: 24px !important;
  }
  .mt-lg-24 {
    margin-top: 24px !important;
  }
  .mb-lg-24 {
    margin-bottom: 24px !important;
  }
  .ml-lg-24 {
    margin-left: 24px !important;
  }
  .mr-lg-24 {
    margin-right: 24px !important;
  }
  .my-lg-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .mx-lg-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .p-lg-24 {
    padding: 24px !important;
  }
  .pt-lg-24 {
    padding-top: 24px !important;
  }
  .pb-lg-24 {
    padding-bottom: 24px !important;
  }
  .pl-lg-24 {
    padding-left: 24px !important;
  }
  .pr-lg-24 {
    padding-right: 24px !important;
  }
  .py-lg-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .px-lg-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-24 {
    margin: 24px !important;
  }
  .mt-xl-24 {
    margin-top: 24px !important;
  }
  .mb-xl-24 {
    margin-bottom: 24px !important;
  }
  .ml-xl-24 {
    margin-left: 24px !important;
  }
  .mr-xl-24 {
    margin-right: 24px !important;
  }
  .my-xl-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .mx-xl-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .p-xl-24 {
    padding: 24px !important;
  }
  .pt-xl-24 {
    padding-top: 24px !important;
  }
  .pb-xl-24 {
    padding-bottom: 24px !important;
  }
  .pl-xl-24 {
    padding-left: 24px !important;
  }
  .pr-xl-24 {
    padding-right: 24px !important;
  }
  .py-xl-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .px-xl-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
.m-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.my-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mx-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

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

@media (max-width: 576px) {
  .m-sm-25 {
    margin: 25px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .ml-sm-25 {
    margin-left: 25px !important;
  }
  .mr-sm-25 {
    margin-right: 25px !important;
  }
  .my-sm-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mx-sm-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .p-sm-25 {
    padding: 25px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .pl-sm-25 {
    padding-left: 25px !important;
  }
  .pr-sm-25 {
    padding-right: 25px !important;
  }
  .py-sm-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .px-sm-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 768px) {
  .m-md-25 {
    margin: 25px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .ml-md-25 {
    margin-left: 25px !important;
  }
  .mr-md-25 {
    margin-right: 25px !important;
  }
  .my-md-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mx-md-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .p-md-25 {
    padding: 25px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .pl-md-25 {
    padding-left: 25px !important;
  }
  .pr-md-25 {
    padding-right: 25px !important;
  }
  .py-md-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .px-md-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-25 {
    margin: 25px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .ml-lg-25 {
    margin-left: 25px !important;
  }
  .mr-lg-25 {
    margin-right: 25px !important;
  }
  .my-lg-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mx-lg-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .p-lg-25 {
    padding: 25px !important;
  }
  .pt-lg-25 {
    padding-top: 25px !important;
  }
  .pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .pl-lg-25 {
    padding-left: 25px !important;
  }
  .pr-lg-25 {
    padding-right: 25px !important;
  }
  .py-lg-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .px-lg-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-25 {
    margin: 25px !important;
  }
  .mt-xl-25 {
    margin-top: 25px !important;
  }
  .mb-xl-25 {
    margin-bottom: 25px !important;
  }
  .ml-xl-25 {
    margin-left: 25px !important;
  }
  .mr-xl-25 {
    margin-right: 25px !important;
  }
  .my-xl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mx-xl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .p-xl-25 {
    padding: 25px !important;
  }
  .pt-xl-25 {
    padding-top: 25px !important;
  }
  .pb-xl-25 {
    padding-bottom: 25px !important;
  }
  .pl-xl-25 {
    padding-left: 25px !important;
  }
  .pr-xl-25 {
    padding-right: 25px !important;
  }
  .py-xl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .px-xl-25 {
    padding-left: 25px !important;
    padding-right: 25px !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;
}

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !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;
}

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

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

@media (max-width: 576px) {
  .m-sm-26 {
    margin: 26px !important;
  }
  .mt-sm-26 {
    margin-top: 26px !important;
  }
  .mb-sm-26 {
    margin-bottom: 26px !important;
  }
  .ml-sm-26 {
    margin-left: 26px !important;
  }
  .mr-sm-26 {
    margin-right: 26px !important;
  }
  .my-sm-26 {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
  }
  .mx-sm-26 {
    margin-left: 26px !important;
    margin-right: 26px !important;
  }
  .p-sm-26 {
    padding: 26px !important;
  }
  .pt-sm-26 {
    padding-top: 26px !important;
  }
  .pb-sm-26 {
    padding-bottom: 26px !important;
  }
  .pl-sm-26 {
    padding-left: 26px !important;
  }
  .pr-sm-26 {
    padding-right: 26px !important;
  }
  .py-sm-26 {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }
  .px-sm-26 {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
}
@media (max-width: 768px) {
  .m-md-26 {
    margin: 26px !important;
  }
  .mt-md-26 {
    margin-top: 26px !important;
  }
  .mb-md-26 {
    margin-bottom: 26px !important;
  }
  .ml-md-26 {
    margin-left: 26px !important;
  }
  .mr-md-26 {
    margin-right: 26px !important;
  }
  .my-md-26 {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
  }
  .mx-md-26 {
    margin-left: 26px !important;
    margin-right: 26px !important;
  }
  .p-md-26 {
    padding: 26px !important;
  }
  .pt-md-26 {
    padding-top: 26px !important;
  }
  .pb-md-26 {
    padding-bottom: 26px !important;
  }
  .pl-md-26 {
    padding-left: 26px !important;
  }
  .pr-md-26 {
    padding-right: 26px !important;
  }
  .py-md-26 {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }
  .px-md-26 {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-26 {
    margin: 26px !important;
  }
  .mt-lg-26 {
    margin-top: 26px !important;
  }
  .mb-lg-26 {
    margin-bottom: 26px !important;
  }
  .ml-lg-26 {
    margin-left: 26px !important;
  }
  .mr-lg-26 {
    margin-right: 26px !important;
  }
  .my-lg-26 {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
  }
  .mx-lg-26 {
    margin-left: 26px !important;
    margin-right: 26px !important;
  }
  .p-lg-26 {
    padding: 26px !important;
  }
  .pt-lg-26 {
    padding-top: 26px !important;
  }
  .pb-lg-26 {
    padding-bottom: 26px !important;
  }
  .pl-lg-26 {
    padding-left: 26px !important;
  }
  .pr-lg-26 {
    padding-right: 26px !important;
  }
  .py-lg-26 {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }
  .px-lg-26 {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-26 {
    margin: 26px !important;
  }
  .mt-xl-26 {
    margin-top: 26px !important;
  }
  .mb-xl-26 {
    margin-bottom: 26px !important;
  }
  .ml-xl-26 {
    margin-left: 26px !important;
  }
  .mr-xl-26 {
    margin-right: 26px !important;
  }
  .my-xl-26 {
    margin-top: 26px !important;
    margin-bottom: 26px !important;
  }
  .mx-xl-26 {
    margin-left: 26px !important;
    margin-right: 26px !important;
  }
  .p-xl-26 {
    padding: 26px !important;
  }
  .pt-xl-26 {
    padding-top: 26px !important;
  }
  .pb-xl-26 {
    padding-bottom: 26px !important;
  }
  .pl-xl-26 {
    padding-left: 26px !important;
  }
  .pr-xl-26 {
    padding-right: 26px !important;
  }
  .py-xl-26 {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }
  .px-xl-26 {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
}
.m-26 {
  margin: 26px !important;
}

.mt-26 {
  margin-top: 26px !important;
}

.mb-26 {
  margin-bottom: 26px !important;
}

.ml-26 {
  margin-left: 26px !important;
}

.mr-26 {
  margin-right: 26px !important;
}

.my-26 {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}

.mx-26 {
  margin-left: 26px !important;
  margin-right: 26px !important;
}

.p-26 {
  padding: 26px !important;
}

.pt-26 {
  padding-top: 26px !important;
}

.pb-26 {
  padding-bottom: 26px !important;
}

.pl-26 {
  padding-left: 26px !important;
}

.pr-26 {
  padding-right: 26px !important;
}

.py-26 {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

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

@media (max-width: 576px) {
  .m-sm-27 {
    margin: 27px !important;
  }
  .mt-sm-27 {
    margin-top: 27px !important;
  }
  .mb-sm-27 {
    margin-bottom: 27px !important;
  }
  .ml-sm-27 {
    margin-left: 27px !important;
  }
  .mr-sm-27 {
    margin-right: 27px !important;
  }
  .my-sm-27 {
    margin-top: 27px !important;
    margin-bottom: 27px !important;
  }
  .mx-sm-27 {
    margin-left: 27px !important;
    margin-right: 27px !important;
  }
  .p-sm-27 {
    padding: 27px !important;
  }
  .pt-sm-27 {
    padding-top: 27px !important;
  }
  .pb-sm-27 {
    padding-bottom: 27px !important;
  }
  .pl-sm-27 {
    padding-left: 27px !important;
  }
  .pr-sm-27 {
    padding-right: 27px !important;
  }
  .py-sm-27 {
    padding-top: 27px !important;
    padding-bottom: 27px !important;
  }
  .px-sm-27 {
    padding-left: 27px !important;
    padding-right: 27px !important;
  }
}
@media (max-width: 768px) {
  .m-md-27 {
    margin: 27px !important;
  }
  .mt-md-27 {
    margin-top: 27px !important;
  }
  .mb-md-27 {
    margin-bottom: 27px !important;
  }
  .ml-md-27 {
    margin-left: 27px !important;
  }
  .mr-md-27 {
    margin-right: 27px !important;
  }
  .my-md-27 {
    margin-top: 27px !important;
    margin-bottom: 27px !important;
  }
  .mx-md-27 {
    margin-left: 27px !important;
    margin-right: 27px !important;
  }
  .p-md-27 {
    padding: 27px !important;
  }
  .pt-md-27 {
    padding-top: 27px !important;
  }
  .pb-md-27 {
    padding-bottom: 27px !important;
  }
  .pl-md-27 {
    padding-left: 27px !important;
  }
  .pr-md-27 {
    padding-right: 27px !important;
  }
  .py-md-27 {
    padding-top: 27px !important;
    padding-bottom: 27px !important;
  }
  .px-md-27 {
    padding-left: 27px !important;
    padding-right: 27px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-27 {
    margin: 27px !important;
  }
  .mt-lg-27 {
    margin-top: 27px !important;
  }
  .mb-lg-27 {
    margin-bottom: 27px !important;
  }
  .ml-lg-27 {
    margin-left: 27px !important;
  }
  .mr-lg-27 {
    margin-right: 27px !important;
  }
  .my-lg-27 {
    margin-top: 27px !important;
    margin-bottom: 27px !important;
  }
  .mx-lg-27 {
    margin-left: 27px !important;
    margin-right: 27px !important;
  }
  .p-lg-27 {
    padding: 27px !important;
  }
  .pt-lg-27 {
    padding-top: 27px !important;
  }
  .pb-lg-27 {
    padding-bottom: 27px !important;
  }
  .pl-lg-27 {
    padding-left: 27px !important;
  }
  .pr-lg-27 {
    padding-right: 27px !important;
  }
  .py-lg-27 {
    padding-top: 27px !important;
    padding-bottom: 27px !important;
  }
  .px-lg-27 {
    padding-left: 27px !important;
    padding-right: 27px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-27 {
    margin: 27px !important;
  }
  .mt-xl-27 {
    margin-top: 27px !important;
  }
  .mb-xl-27 {
    margin-bottom: 27px !important;
  }
  .ml-xl-27 {
    margin-left: 27px !important;
  }
  .mr-xl-27 {
    margin-right: 27px !important;
  }
  .my-xl-27 {
    margin-top: 27px !important;
    margin-bottom: 27px !important;
  }
  .mx-xl-27 {
    margin-left: 27px !important;
    margin-right: 27px !important;
  }
  .p-xl-27 {
    padding: 27px !important;
  }
  .pt-xl-27 {
    padding-top: 27px !important;
  }
  .pb-xl-27 {
    padding-bottom: 27px !important;
  }
  .pl-xl-27 {
    padding-left: 27px !important;
  }
  .pr-xl-27 {
    padding-right: 27px !important;
  }
  .py-xl-27 {
    padding-top: 27px !important;
    padding-bottom: 27px !important;
  }
  .px-xl-27 {
    padding-left: 27px !important;
    padding-right: 27px !important;
  }
}
.m-27 {
  margin: 27px !important;
}

.mt-27 {
  margin-top: 27px !important;
}

.mb-27 {
  margin-bottom: 27px !important;
}

.ml-27 {
  margin-left: 27px !important;
}

.mr-27 {
  margin-right: 27px !important;
}

.my-27 {
  margin-top: 27px !important;
  margin-bottom: 27px !important;
}

.mx-27 {
  margin-left: 27px !important;
  margin-right: 27px !important;
}

.p-27 {
  padding: 27px !important;
}

.pt-27 {
  padding-top: 27px !important;
}

.pb-27 {
  padding-bottom: 27px !important;
}

.pl-27 {
  padding-left: 27px !important;
}

.pr-27 {
  padding-right: 27px !important;
}

.py-27 {
  padding-top: 27px !important;
  padding-bottom: 27px !important;
}

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

@media (max-width: 576px) {
  .m-sm-28 {
    margin: 28px !important;
  }
  .mt-sm-28 {
    margin-top: 28px !important;
  }
  .mb-sm-28 {
    margin-bottom: 28px !important;
  }
  .ml-sm-28 {
    margin-left: 28px !important;
  }
  .mr-sm-28 {
    margin-right: 28px !important;
  }
  .my-sm-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .mx-sm-28 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .p-sm-28 {
    padding: 28px !important;
  }
  .pt-sm-28 {
    padding-top: 28px !important;
  }
  .pb-sm-28 {
    padding-bottom: 28px !important;
  }
  .pl-sm-28 {
    padding-left: 28px !important;
  }
  .pr-sm-28 {
    padding-right: 28px !important;
  }
  .py-sm-28 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .px-sm-28 {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
@media (max-width: 768px) {
  .m-md-28 {
    margin: 28px !important;
  }
  .mt-md-28 {
    margin-top: 28px !important;
  }
  .mb-md-28 {
    margin-bottom: 28px !important;
  }
  .ml-md-28 {
    margin-left: 28px !important;
  }
  .mr-md-28 {
    margin-right: 28px !important;
  }
  .my-md-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .mx-md-28 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .p-md-28 {
    padding: 28px !important;
  }
  .pt-md-28 {
    padding-top: 28px !important;
  }
  .pb-md-28 {
    padding-bottom: 28px !important;
  }
  .pl-md-28 {
    padding-left: 28px !important;
  }
  .pr-md-28 {
    padding-right: 28px !important;
  }
  .py-md-28 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .px-md-28 {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-28 {
    margin: 28px !important;
  }
  .mt-lg-28 {
    margin-top: 28px !important;
  }
  .mb-lg-28 {
    margin-bottom: 28px !important;
  }
  .ml-lg-28 {
    margin-left: 28px !important;
  }
  .mr-lg-28 {
    margin-right: 28px !important;
  }
  .my-lg-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .mx-lg-28 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .p-lg-28 {
    padding: 28px !important;
  }
  .pt-lg-28 {
    padding-top: 28px !important;
  }
  .pb-lg-28 {
    padding-bottom: 28px !important;
  }
  .pl-lg-28 {
    padding-left: 28px !important;
  }
  .pr-lg-28 {
    padding-right: 28px !important;
  }
  .py-lg-28 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .px-lg-28 {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-28 {
    margin: 28px !important;
  }
  .mt-xl-28 {
    margin-top: 28px !important;
  }
  .mb-xl-28 {
    margin-bottom: 28px !important;
  }
  .ml-xl-28 {
    margin-left: 28px !important;
  }
  .mr-xl-28 {
    margin-right: 28px !important;
  }
  .my-xl-28 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .mx-xl-28 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .p-xl-28 {
    padding: 28px !important;
  }
  .pt-xl-28 {
    padding-top: 28px !important;
  }
  .pb-xl-28 {
    padding-bottom: 28px !important;
  }
  .pl-xl-28 {
    padding-left: 28px !important;
  }
  .pr-xl-28 {
    padding-right: 28px !important;
  }
  .py-xl-28 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .px-xl-28 {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
.m-28 {
  margin: 28px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.ml-28 {
  margin-left: 28px !important;
}

.mr-28 {
  margin-right: 28px !important;
}

.my-28 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.mx-28 {
  margin-left: 28px !important;
  margin-right: 28px !important;
}

.p-28 {
  padding: 28px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pb-28 {
  padding-bottom: 28px !important;
}

.pl-28 {
  padding-left: 28px !important;
}

.pr-28 {
  padding-right: 28px !important;
}

.py-28 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

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

@media (max-width: 576px) {
  .m-sm-29 {
    margin: 29px !important;
  }
  .mt-sm-29 {
    margin-top: 29px !important;
  }
  .mb-sm-29 {
    margin-bottom: 29px !important;
  }
  .ml-sm-29 {
    margin-left: 29px !important;
  }
  .mr-sm-29 {
    margin-right: 29px !important;
  }
  .my-sm-29 {
    margin-top: 29px !important;
    margin-bottom: 29px !important;
  }
  .mx-sm-29 {
    margin-left: 29px !important;
    margin-right: 29px !important;
  }
  .p-sm-29 {
    padding: 29px !important;
  }
  .pt-sm-29 {
    padding-top: 29px !important;
  }
  .pb-sm-29 {
    padding-bottom: 29px !important;
  }
  .pl-sm-29 {
    padding-left: 29px !important;
  }
  .pr-sm-29 {
    padding-right: 29px !important;
  }
  .py-sm-29 {
    padding-top: 29px !important;
    padding-bottom: 29px !important;
  }
  .px-sm-29 {
    padding-left: 29px !important;
    padding-right: 29px !important;
  }
}
@media (max-width: 768px) {
  .m-md-29 {
    margin: 29px !important;
  }
  .mt-md-29 {
    margin-top: 29px !important;
  }
  .mb-md-29 {
    margin-bottom: 29px !important;
  }
  .ml-md-29 {
    margin-left: 29px !important;
  }
  .mr-md-29 {
    margin-right: 29px !important;
  }
  .my-md-29 {
    margin-top: 29px !important;
    margin-bottom: 29px !important;
  }
  .mx-md-29 {
    margin-left: 29px !important;
    margin-right: 29px !important;
  }
  .p-md-29 {
    padding: 29px !important;
  }
  .pt-md-29 {
    padding-top: 29px !important;
  }
  .pb-md-29 {
    padding-bottom: 29px !important;
  }
  .pl-md-29 {
    padding-left: 29px !important;
  }
  .pr-md-29 {
    padding-right: 29px !important;
  }
  .py-md-29 {
    padding-top: 29px !important;
    padding-bottom: 29px !important;
  }
  .px-md-29 {
    padding-left: 29px !important;
    padding-right: 29px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-29 {
    margin: 29px !important;
  }
  .mt-lg-29 {
    margin-top: 29px !important;
  }
  .mb-lg-29 {
    margin-bottom: 29px !important;
  }
  .ml-lg-29 {
    margin-left: 29px !important;
  }
  .mr-lg-29 {
    margin-right: 29px !important;
  }
  .my-lg-29 {
    margin-top: 29px !important;
    margin-bottom: 29px !important;
  }
  .mx-lg-29 {
    margin-left: 29px !important;
    margin-right: 29px !important;
  }
  .p-lg-29 {
    padding: 29px !important;
  }
  .pt-lg-29 {
    padding-top: 29px !important;
  }
  .pb-lg-29 {
    padding-bottom: 29px !important;
  }
  .pl-lg-29 {
    padding-left: 29px !important;
  }
  .pr-lg-29 {
    padding-right: 29px !important;
  }
  .py-lg-29 {
    padding-top: 29px !important;
    padding-bottom: 29px !important;
  }
  .px-lg-29 {
    padding-left: 29px !important;
    padding-right: 29px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-29 {
    margin: 29px !important;
  }
  .mt-xl-29 {
    margin-top: 29px !important;
  }
  .mb-xl-29 {
    margin-bottom: 29px !important;
  }
  .ml-xl-29 {
    margin-left: 29px !important;
  }
  .mr-xl-29 {
    margin-right: 29px !important;
  }
  .my-xl-29 {
    margin-top: 29px !important;
    margin-bottom: 29px !important;
  }
  .mx-xl-29 {
    margin-left: 29px !important;
    margin-right: 29px !important;
  }
  .p-xl-29 {
    padding: 29px !important;
  }
  .pt-xl-29 {
    padding-top: 29px !important;
  }
  .pb-xl-29 {
    padding-bottom: 29px !important;
  }
  .pl-xl-29 {
    padding-left: 29px !important;
  }
  .pr-xl-29 {
    padding-right: 29px !important;
  }
  .py-xl-29 {
    padding-top: 29px !important;
    padding-bottom: 29px !important;
  }
  .px-xl-29 {
    padding-left: 29px !important;
    padding-right: 29px !important;
  }
}
.m-29 {
  margin: 29px !important;
}

.mt-29 {
  margin-top: 29px !important;
}

.mb-29 {
  margin-bottom: 29px !important;
}

.ml-29 {
  margin-left: 29px !important;
}

.mr-29 {
  margin-right: 29px !important;
}

.my-29 {
  margin-top: 29px !important;
  margin-bottom: 29px !important;
}

.mx-29 {
  margin-left: 29px !important;
  margin-right: 29px !important;
}

.p-29 {
  padding: 29px !important;
}

.pt-29 {
  padding-top: 29px !important;
}

.pb-29 {
  padding-bottom: 29px !important;
}

.pl-29 {
  padding-left: 29px !important;
}

.pr-29 {
  padding-right: 29px !important;
}

.py-29 {
  padding-top: 29px !important;
  padding-bottom: 29px !important;
}

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

@media (max-width: 576px) {
  .m-sm-30 {
    margin: 30px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .ml-sm-30 {
    margin-left: 30px !important;
  }
  .mr-sm-30 {
    margin-right: 30px !important;
  }
  .my-sm-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mx-sm-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .pl-sm-30 {
    padding-left: 30px !important;
  }
  .pr-sm-30 {
    padding-right: 30px !important;
  }
  .py-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .px-sm-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 768px) {
  .m-md-30 {
    margin: 30px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .ml-md-30 {
    margin-left: 30px !important;
  }
  .mr-md-30 {
    margin-right: 30px !important;
  }
  .my-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mx-md-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pl-md-30 {
    padding-left: 30px !important;
  }
  .pr-md-30 {
    padding-right: 30px !important;
  }
  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .px-md-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-30 {
    margin: 30px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .ml-lg-30 {
    margin-left: 30px !important;
  }
  .mr-lg-30 {
    margin-right: 30px !important;
  }
  .my-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mx-lg-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .pl-lg-30 {
    padding-left: 30px !important;
  }
  .pr-lg-30 {
    padding-right: 30px !important;
  }
  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .px-lg-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-30 {
    margin: 30px !important;
  }
  .mt-xl-30 {
    margin-top: 30px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .ml-xl-30 {
    margin-left: 30px !important;
  }
  .mr-xl-30 {
    margin-right: 30px !important;
  }
  .my-xl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mx-xl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .p-xl-30 {
    padding: 30px !important;
  }
  .pt-xl-30 {
    padding-top: 30px !important;
  }
  .pb-xl-30 {
    padding-bottom: 30px !important;
  }
  .pl-xl-30 {
    padding-left: 30px !important;
  }
  .pr-xl-30 {
    padding-right: 30px !important;
  }
  .py-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .px-xl-30 {
    padding-left: 30px !important;
    padding-right: 30px !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;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !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;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

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

@media (max-width: 576px) {
  .m-sm-31 {
    margin: 31px !important;
  }
  .mt-sm-31 {
    margin-top: 31px !important;
  }
  .mb-sm-31 {
    margin-bottom: 31px !important;
  }
  .ml-sm-31 {
    margin-left: 31px !important;
  }
  .mr-sm-31 {
    margin-right: 31px !important;
  }
  .my-sm-31 {
    margin-top: 31px !important;
    margin-bottom: 31px !important;
  }
  .mx-sm-31 {
    margin-left: 31px !important;
    margin-right: 31px !important;
  }
  .p-sm-31 {
    padding: 31px !important;
  }
  .pt-sm-31 {
    padding-top: 31px !important;
  }
  .pb-sm-31 {
    padding-bottom: 31px !important;
  }
  .pl-sm-31 {
    padding-left: 31px !important;
  }
  .pr-sm-31 {
    padding-right: 31px !important;
  }
  .py-sm-31 {
    padding-top: 31px !important;
    padding-bottom: 31px !important;
  }
  .px-sm-31 {
    padding-left: 31px !important;
    padding-right: 31px !important;
  }
}
@media (max-width: 768px) {
  .m-md-31 {
    margin: 31px !important;
  }
  .mt-md-31 {
    margin-top: 31px !important;
  }
  .mb-md-31 {
    margin-bottom: 31px !important;
  }
  .ml-md-31 {
    margin-left: 31px !important;
  }
  .mr-md-31 {
    margin-right: 31px !important;
  }
  .my-md-31 {
    margin-top: 31px !important;
    margin-bottom: 31px !important;
  }
  .mx-md-31 {
    margin-left: 31px !important;
    margin-right: 31px !important;
  }
  .p-md-31 {
    padding: 31px !important;
  }
  .pt-md-31 {
    padding-top: 31px !important;
  }
  .pb-md-31 {
    padding-bottom: 31px !important;
  }
  .pl-md-31 {
    padding-left: 31px !important;
  }
  .pr-md-31 {
    padding-right: 31px !important;
  }
  .py-md-31 {
    padding-top: 31px !important;
    padding-bottom: 31px !important;
  }
  .px-md-31 {
    padding-left: 31px !important;
    padding-right: 31px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-31 {
    margin: 31px !important;
  }
  .mt-lg-31 {
    margin-top: 31px !important;
  }
  .mb-lg-31 {
    margin-bottom: 31px !important;
  }
  .ml-lg-31 {
    margin-left: 31px !important;
  }
  .mr-lg-31 {
    margin-right: 31px !important;
  }
  .my-lg-31 {
    margin-top: 31px !important;
    margin-bottom: 31px !important;
  }
  .mx-lg-31 {
    margin-left: 31px !important;
    margin-right: 31px !important;
  }
  .p-lg-31 {
    padding: 31px !important;
  }
  .pt-lg-31 {
    padding-top: 31px !important;
  }
  .pb-lg-31 {
    padding-bottom: 31px !important;
  }
  .pl-lg-31 {
    padding-left: 31px !important;
  }
  .pr-lg-31 {
    padding-right: 31px !important;
  }
  .py-lg-31 {
    padding-top: 31px !important;
    padding-bottom: 31px !important;
  }
  .px-lg-31 {
    padding-left: 31px !important;
    padding-right: 31px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-31 {
    margin: 31px !important;
  }
  .mt-xl-31 {
    margin-top: 31px !important;
  }
  .mb-xl-31 {
    margin-bottom: 31px !important;
  }
  .ml-xl-31 {
    margin-left: 31px !important;
  }
  .mr-xl-31 {
    margin-right: 31px !important;
  }
  .my-xl-31 {
    margin-top: 31px !important;
    margin-bottom: 31px !important;
  }
  .mx-xl-31 {
    margin-left: 31px !important;
    margin-right: 31px !important;
  }
  .p-xl-31 {
    padding: 31px !important;
  }
  .pt-xl-31 {
    padding-top: 31px !important;
  }
  .pb-xl-31 {
    padding-bottom: 31px !important;
  }
  .pl-xl-31 {
    padding-left: 31px !important;
  }
  .pr-xl-31 {
    padding-right: 31px !important;
  }
  .py-xl-31 {
    padding-top: 31px !important;
    padding-bottom: 31px !important;
  }
  .px-xl-31 {
    padding-left: 31px !important;
    padding-right: 31px !important;
  }
}
.m-31 {
  margin: 31px !important;
}

.mt-31 {
  margin-top: 31px !important;
}

.mb-31 {
  margin-bottom: 31px !important;
}

.ml-31 {
  margin-left: 31px !important;
}

.mr-31 {
  margin-right: 31px !important;
}

.my-31 {
  margin-top: 31px !important;
  margin-bottom: 31px !important;
}

.mx-31 {
  margin-left: 31px !important;
  margin-right: 31px !important;
}

.p-31 {
  padding: 31px !important;
}

.pt-31 {
  padding-top: 31px !important;
}

.pb-31 {
  padding-bottom: 31px !important;
}

.pl-31 {
  padding-left: 31px !important;
}

.pr-31 {
  padding-right: 31px !important;
}

.py-31 {
  padding-top: 31px !important;
  padding-bottom: 31px !important;
}

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

@media (max-width: 576px) {
  .m-sm-32 {
    margin: 32px !important;
  }
  .mt-sm-32 {
    margin-top: 32px !important;
  }
  .mb-sm-32 {
    margin-bottom: 32px !important;
  }
  .ml-sm-32 {
    margin-left: 32px !important;
  }
  .mr-sm-32 {
    margin-right: 32px !important;
  }
  .my-sm-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .mx-sm-32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .p-sm-32 {
    padding: 32px !important;
  }
  .pt-sm-32 {
    padding-top: 32px !important;
  }
  .pb-sm-32 {
    padding-bottom: 32px !important;
  }
  .pl-sm-32 {
    padding-left: 32px !important;
  }
  .pr-sm-32 {
    padding-right: 32px !important;
  }
  .py-sm-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .px-sm-32 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}
@media (max-width: 768px) {
  .m-md-32 {
    margin: 32px !important;
  }
  .mt-md-32 {
    margin-top: 32px !important;
  }
  .mb-md-32 {
    margin-bottom: 32px !important;
  }
  .ml-md-32 {
    margin-left: 32px !important;
  }
  .mr-md-32 {
    margin-right: 32px !important;
  }
  .my-md-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .mx-md-32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .p-md-32 {
    padding: 32px !important;
  }
  .pt-md-32 {
    padding-top: 32px !important;
  }
  .pb-md-32 {
    padding-bottom: 32px !important;
  }
  .pl-md-32 {
    padding-left: 32px !important;
  }
  .pr-md-32 {
    padding-right: 32px !important;
  }
  .py-md-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .px-md-32 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-32 {
    margin: 32px !important;
  }
  .mt-lg-32 {
    margin-top: 32px !important;
  }
  .mb-lg-32 {
    margin-bottom: 32px !important;
  }
  .ml-lg-32 {
    margin-left: 32px !important;
  }
  .mr-lg-32 {
    margin-right: 32px !important;
  }
  .my-lg-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .mx-lg-32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .p-lg-32 {
    padding: 32px !important;
  }
  .pt-lg-32 {
    padding-top: 32px !important;
  }
  .pb-lg-32 {
    padding-bottom: 32px !important;
  }
  .pl-lg-32 {
    padding-left: 32px !important;
  }
  .pr-lg-32 {
    padding-right: 32px !important;
  }
  .py-lg-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .px-lg-32 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-32 {
    margin: 32px !important;
  }
  .mt-xl-32 {
    margin-top: 32px !important;
  }
  .mb-xl-32 {
    margin-bottom: 32px !important;
  }
  .ml-xl-32 {
    margin-left: 32px !important;
  }
  .mr-xl-32 {
    margin-right: 32px !important;
  }
  .my-xl-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .mx-xl-32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .p-xl-32 {
    padding: 32px !important;
  }
  .pt-xl-32 {
    padding-top: 32px !important;
  }
  .pb-xl-32 {
    padding-bottom: 32px !important;
  }
  .pl-xl-32 {
    padding-left: 32px !important;
  }
  .pr-xl-32 {
    padding-right: 32px !important;
  }
  .py-xl-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .px-xl-32 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}
.m-32 {
  margin: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.mx-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.p-32 {
  padding: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

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

@media (max-width: 576px) {
  .m-sm-33 {
    margin: 33px !important;
  }
  .mt-sm-33 {
    margin-top: 33px !important;
  }
  .mb-sm-33 {
    margin-bottom: 33px !important;
  }
  .ml-sm-33 {
    margin-left: 33px !important;
  }
  .mr-sm-33 {
    margin-right: 33px !important;
  }
  .my-sm-33 {
    margin-top: 33px !important;
    margin-bottom: 33px !important;
  }
  .mx-sm-33 {
    margin-left: 33px !important;
    margin-right: 33px !important;
  }
  .p-sm-33 {
    padding: 33px !important;
  }
  .pt-sm-33 {
    padding-top: 33px !important;
  }
  .pb-sm-33 {
    padding-bottom: 33px !important;
  }
  .pl-sm-33 {
    padding-left: 33px !important;
  }
  .pr-sm-33 {
    padding-right: 33px !important;
  }
  .py-sm-33 {
    padding-top: 33px !important;
    padding-bottom: 33px !important;
  }
  .px-sm-33 {
    padding-left: 33px !important;
    padding-right: 33px !important;
  }
}
@media (max-width: 768px) {
  .m-md-33 {
    margin: 33px !important;
  }
  .mt-md-33 {
    margin-top: 33px !important;
  }
  .mb-md-33 {
    margin-bottom: 33px !important;
  }
  .ml-md-33 {
    margin-left: 33px !important;
  }
  .mr-md-33 {
    margin-right: 33px !important;
  }
  .my-md-33 {
    margin-top: 33px !important;
    margin-bottom: 33px !important;
  }
  .mx-md-33 {
    margin-left: 33px !important;
    margin-right: 33px !important;
  }
  .p-md-33 {
    padding: 33px !important;
  }
  .pt-md-33 {
    padding-top: 33px !important;
  }
  .pb-md-33 {
    padding-bottom: 33px !important;
  }
  .pl-md-33 {
    padding-left: 33px !important;
  }
  .pr-md-33 {
    padding-right: 33px !important;
  }
  .py-md-33 {
    padding-top: 33px !important;
    padding-bottom: 33px !important;
  }
  .px-md-33 {
    padding-left: 33px !important;
    padding-right: 33px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-33 {
    margin: 33px !important;
  }
  .mt-lg-33 {
    margin-top: 33px !important;
  }
  .mb-lg-33 {
    margin-bottom: 33px !important;
  }
  .ml-lg-33 {
    margin-left: 33px !important;
  }
  .mr-lg-33 {
    margin-right: 33px !important;
  }
  .my-lg-33 {
    margin-top: 33px !important;
    margin-bottom: 33px !important;
  }
  .mx-lg-33 {
    margin-left: 33px !important;
    margin-right: 33px !important;
  }
  .p-lg-33 {
    padding: 33px !important;
  }
  .pt-lg-33 {
    padding-top: 33px !important;
  }
  .pb-lg-33 {
    padding-bottom: 33px !important;
  }
  .pl-lg-33 {
    padding-left: 33px !important;
  }
  .pr-lg-33 {
    padding-right: 33px !important;
  }
  .py-lg-33 {
    padding-top: 33px !important;
    padding-bottom: 33px !important;
  }
  .px-lg-33 {
    padding-left: 33px !important;
    padding-right: 33px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-33 {
    margin: 33px !important;
  }
  .mt-xl-33 {
    margin-top: 33px !important;
  }
  .mb-xl-33 {
    margin-bottom: 33px !important;
  }
  .ml-xl-33 {
    margin-left: 33px !important;
  }
  .mr-xl-33 {
    margin-right: 33px !important;
  }
  .my-xl-33 {
    margin-top: 33px !important;
    margin-bottom: 33px !important;
  }
  .mx-xl-33 {
    margin-left: 33px !important;
    margin-right: 33px !important;
  }
  .p-xl-33 {
    padding: 33px !important;
  }
  .pt-xl-33 {
    padding-top: 33px !important;
  }
  .pb-xl-33 {
    padding-bottom: 33px !important;
  }
  .pl-xl-33 {
    padding-left: 33px !important;
  }
  .pr-xl-33 {
    padding-right: 33px !important;
  }
  .py-xl-33 {
    padding-top: 33px !important;
    padding-bottom: 33px !important;
  }
  .px-xl-33 {
    padding-left: 33px !important;
    padding-right: 33px !important;
  }
}
.m-33 {
  margin: 33px !important;
}

.mt-33 {
  margin-top: 33px !important;
}

.mb-33 {
  margin-bottom: 33px !important;
}

.ml-33 {
  margin-left: 33px !important;
}

.mr-33 {
  margin-right: 33px !important;
}

.my-33 {
  margin-top: 33px !important;
  margin-bottom: 33px !important;
}

.mx-33 {
  margin-left: 33px !important;
  margin-right: 33px !important;
}

.p-33 {
  padding: 33px !important;
}

.pt-33 {
  padding-top: 33px !important;
}

.pb-33 {
  padding-bottom: 33px !important;
}

.pl-33 {
  padding-left: 33px !important;
}

.pr-33 {
  padding-right: 33px !important;
}

.py-33 {
  padding-top: 33px !important;
  padding-bottom: 33px !important;
}

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

@media (max-width: 576px) {
  .m-sm-34 {
    margin: 34px !important;
  }
  .mt-sm-34 {
    margin-top: 34px !important;
  }
  .mb-sm-34 {
    margin-bottom: 34px !important;
  }
  .ml-sm-34 {
    margin-left: 34px !important;
  }
  .mr-sm-34 {
    margin-right: 34px !important;
  }
  .my-sm-34 {
    margin-top: 34px !important;
    margin-bottom: 34px !important;
  }
  .mx-sm-34 {
    margin-left: 34px !important;
    margin-right: 34px !important;
  }
  .p-sm-34 {
    padding: 34px !important;
  }
  .pt-sm-34 {
    padding-top: 34px !important;
  }
  .pb-sm-34 {
    padding-bottom: 34px !important;
  }
  .pl-sm-34 {
    padding-left: 34px !important;
  }
  .pr-sm-34 {
    padding-right: 34px !important;
  }
  .py-sm-34 {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .px-sm-34 {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }
}
@media (max-width: 768px) {
  .m-md-34 {
    margin: 34px !important;
  }
  .mt-md-34 {
    margin-top: 34px !important;
  }
  .mb-md-34 {
    margin-bottom: 34px !important;
  }
  .ml-md-34 {
    margin-left: 34px !important;
  }
  .mr-md-34 {
    margin-right: 34px !important;
  }
  .my-md-34 {
    margin-top: 34px !important;
    margin-bottom: 34px !important;
  }
  .mx-md-34 {
    margin-left: 34px !important;
    margin-right: 34px !important;
  }
  .p-md-34 {
    padding: 34px !important;
  }
  .pt-md-34 {
    padding-top: 34px !important;
  }
  .pb-md-34 {
    padding-bottom: 34px !important;
  }
  .pl-md-34 {
    padding-left: 34px !important;
  }
  .pr-md-34 {
    padding-right: 34px !important;
  }
  .py-md-34 {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .px-md-34 {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-34 {
    margin: 34px !important;
  }
  .mt-lg-34 {
    margin-top: 34px !important;
  }
  .mb-lg-34 {
    margin-bottom: 34px !important;
  }
  .ml-lg-34 {
    margin-left: 34px !important;
  }
  .mr-lg-34 {
    margin-right: 34px !important;
  }
  .my-lg-34 {
    margin-top: 34px !important;
    margin-bottom: 34px !important;
  }
  .mx-lg-34 {
    margin-left: 34px !important;
    margin-right: 34px !important;
  }
  .p-lg-34 {
    padding: 34px !important;
  }
  .pt-lg-34 {
    padding-top: 34px !important;
  }
  .pb-lg-34 {
    padding-bottom: 34px !important;
  }
  .pl-lg-34 {
    padding-left: 34px !important;
  }
  .pr-lg-34 {
    padding-right: 34px !important;
  }
  .py-lg-34 {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .px-lg-34 {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-34 {
    margin: 34px !important;
  }
  .mt-xl-34 {
    margin-top: 34px !important;
  }
  .mb-xl-34 {
    margin-bottom: 34px !important;
  }
  .ml-xl-34 {
    margin-left: 34px !important;
  }
  .mr-xl-34 {
    margin-right: 34px !important;
  }
  .my-xl-34 {
    margin-top: 34px !important;
    margin-bottom: 34px !important;
  }
  .mx-xl-34 {
    margin-left: 34px !important;
    margin-right: 34px !important;
  }
  .p-xl-34 {
    padding: 34px !important;
  }
  .pt-xl-34 {
    padding-top: 34px !important;
  }
  .pb-xl-34 {
    padding-bottom: 34px !important;
  }
  .pl-xl-34 {
    padding-left: 34px !important;
  }
  .pr-xl-34 {
    padding-right: 34px !important;
  }
  .py-xl-34 {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .px-xl-34 {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }
}
.m-34 {
  margin: 34px !important;
}

.mt-34 {
  margin-top: 34px !important;
}

.mb-34 {
  margin-bottom: 34px !important;
}

.ml-34 {
  margin-left: 34px !important;
}

.mr-34 {
  margin-right: 34px !important;
}

.my-34 {
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}

.mx-34 {
  margin-left: 34px !important;
  margin-right: 34px !important;
}

.p-34 {
  padding: 34px !important;
}

.pt-34 {
  padding-top: 34px !important;
}

.pb-34 {
  padding-bottom: 34px !important;
}

.pl-34 {
  padding-left: 34px !important;
}

.pr-34 {
  padding-right: 34px !important;
}

.py-34 {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

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

@media (max-width: 576px) {
  .m-sm-35 {
    margin: 35px !important;
  }
  .mt-sm-35 {
    margin-top: 35px !important;
  }
  .mb-sm-35 {
    margin-bottom: 35px !important;
  }
  .ml-sm-35 {
    margin-left: 35px !important;
  }
  .mr-sm-35 {
    margin-right: 35px !important;
  }
  .my-sm-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mx-sm-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .p-sm-35 {
    padding: 35px !important;
  }
  .pt-sm-35 {
    padding-top: 35px !important;
  }
  .pb-sm-35 {
    padding-bottom: 35px !important;
  }
  .pl-sm-35 {
    padding-left: 35px !important;
  }
  .pr-sm-35 {
    padding-right: 35px !important;
  }
  .py-sm-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .px-sm-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 768px) {
  .m-md-35 {
    margin: 35px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .ml-md-35 {
    margin-left: 35px !important;
  }
  .mr-md-35 {
    margin-right: 35px !important;
  }
  .my-md-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mx-md-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .p-md-35 {
    padding: 35px !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .pl-md-35 {
    padding-left: 35px !important;
  }
  .pr-md-35 {
    padding-right: 35px !important;
  }
  .py-md-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .px-md-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-35 {
    margin: 35px !important;
  }
  .mt-lg-35 {
    margin-top: 35px !important;
  }
  .mb-lg-35 {
    margin-bottom: 35px !important;
  }
  .ml-lg-35 {
    margin-left: 35px !important;
  }
  .mr-lg-35 {
    margin-right: 35px !important;
  }
  .my-lg-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mx-lg-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .p-lg-35 {
    padding: 35px !important;
  }
  .pt-lg-35 {
    padding-top: 35px !important;
  }
  .pb-lg-35 {
    padding-bottom: 35px !important;
  }
  .pl-lg-35 {
    padding-left: 35px !important;
  }
  .pr-lg-35 {
    padding-right: 35px !important;
  }
  .py-lg-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .px-lg-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-35 {
    margin: 35px !important;
  }
  .mt-xl-35 {
    margin-top: 35px !important;
  }
  .mb-xl-35 {
    margin-bottom: 35px !important;
  }
  .ml-xl-35 {
    margin-left: 35px !important;
  }
  .mr-xl-35 {
    margin-right: 35px !important;
  }
  .my-xl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mx-xl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .p-xl-35 {
    padding: 35px !important;
  }
  .pt-xl-35 {
    padding-top: 35px !important;
  }
  .pb-xl-35 {
    padding-bottom: 35px !important;
  }
  .pl-xl-35 {
    padding-left: 35px !important;
  }
  .pr-xl-35 {
    padding-right: 35px !important;
  }
  .py-xl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .px-xl-35 {
    padding-left: 35px !important;
    padding-right: 35px !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;
}

.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !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;
}

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

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

@media (max-width: 576px) {
  .m-sm-36 {
    margin: 36px !important;
  }
  .mt-sm-36 {
    margin-top: 36px !important;
  }
  .mb-sm-36 {
    margin-bottom: 36px !important;
  }
  .ml-sm-36 {
    margin-left: 36px !important;
  }
  .mr-sm-36 {
    margin-right: 36px !important;
  }
  .my-sm-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .mx-sm-36 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .p-sm-36 {
    padding: 36px !important;
  }
  .pt-sm-36 {
    padding-top: 36px !important;
  }
  .pb-sm-36 {
    padding-bottom: 36px !important;
  }
  .pl-sm-36 {
    padding-left: 36px !important;
  }
  .pr-sm-36 {
    padding-right: 36px !important;
  }
  .py-sm-36 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .px-sm-36 {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (max-width: 768px) {
  .m-md-36 {
    margin: 36px !important;
  }
  .mt-md-36 {
    margin-top: 36px !important;
  }
  .mb-md-36 {
    margin-bottom: 36px !important;
  }
  .ml-md-36 {
    margin-left: 36px !important;
  }
  .mr-md-36 {
    margin-right: 36px !important;
  }
  .my-md-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .mx-md-36 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .p-md-36 {
    padding: 36px !important;
  }
  .pt-md-36 {
    padding-top: 36px !important;
  }
  .pb-md-36 {
    padding-bottom: 36px !important;
  }
  .pl-md-36 {
    padding-left: 36px !important;
  }
  .pr-md-36 {
    padding-right: 36px !important;
  }
  .py-md-36 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .px-md-36 {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-36 {
    margin: 36px !important;
  }
  .mt-lg-36 {
    margin-top: 36px !important;
  }
  .mb-lg-36 {
    margin-bottom: 36px !important;
  }
  .ml-lg-36 {
    margin-left: 36px !important;
  }
  .mr-lg-36 {
    margin-right: 36px !important;
  }
  .my-lg-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .mx-lg-36 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .p-lg-36 {
    padding: 36px !important;
  }
  .pt-lg-36 {
    padding-top: 36px !important;
  }
  .pb-lg-36 {
    padding-bottom: 36px !important;
  }
  .pl-lg-36 {
    padding-left: 36px !important;
  }
  .pr-lg-36 {
    padding-right: 36px !important;
  }
  .py-lg-36 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .px-lg-36 {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-36 {
    margin: 36px !important;
  }
  .mt-xl-36 {
    margin-top: 36px !important;
  }
  .mb-xl-36 {
    margin-bottom: 36px !important;
  }
  .ml-xl-36 {
    margin-left: 36px !important;
  }
  .mr-xl-36 {
    margin-right: 36px !important;
  }
  .my-xl-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .mx-xl-36 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .p-xl-36 {
    padding: 36px !important;
  }
  .pt-xl-36 {
    padding-top: 36px !important;
  }
  .pb-xl-36 {
    padding-bottom: 36px !important;
  }
  .pl-xl-36 {
    padding-left: 36px !important;
  }
  .pr-xl-36 {
    padding-right: 36px !important;
  }
  .py-xl-36 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .px-xl-36 {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
.m-36 {
  margin: 36px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.mr-36 {
  margin-right: 36px !important;
}

.my-36 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.mx-36 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

.p-36 {
  padding: 36px !important;
}

.pt-36 {
  padding-top: 36px !important;
}

.pb-36 {
  padding-bottom: 36px !important;
}

.pl-36 {
  padding-left: 36px !important;
}

.pr-36 {
  padding-right: 36px !important;
}

.py-36 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

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

@media (max-width: 576px) {
  .m-sm-37 {
    margin: 37px !important;
  }
  .mt-sm-37 {
    margin-top: 37px !important;
  }
  .mb-sm-37 {
    margin-bottom: 37px !important;
  }
  .ml-sm-37 {
    margin-left: 37px !important;
  }
  .mr-sm-37 {
    margin-right: 37px !important;
  }
  .my-sm-37 {
    margin-top: 37px !important;
    margin-bottom: 37px !important;
  }
  .mx-sm-37 {
    margin-left: 37px !important;
    margin-right: 37px !important;
  }
  .p-sm-37 {
    padding: 37px !important;
  }
  .pt-sm-37 {
    padding-top: 37px !important;
  }
  .pb-sm-37 {
    padding-bottom: 37px !important;
  }
  .pl-sm-37 {
    padding-left: 37px !important;
  }
  .pr-sm-37 {
    padding-right: 37px !important;
  }
  .py-sm-37 {
    padding-top: 37px !important;
    padding-bottom: 37px !important;
  }
  .px-sm-37 {
    padding-left: 37px !important;
    padding-right: 37px !important;
  }
}
@media (max-width: 768px) {
  .m-md-37 {
    margin: 37px !important;
  }
  .mt-md-37 {
    margin-top: 37px !important;
  }
  .mb-md-37 {
    margin-bottom: 37px !important;
  }
  .ml-md-37 {
    margin-left: 37px !important;
  }
  .mr-md-37 {
    margin-right: 37px !important;
  }
  .my-md-37 {
    margin-top: 37px !important;
    margin-bottom: 37px !important;
  }
  .mx-md-37 {
    margin-left: 37px !important;
    margin-right: 37px !important;
  }
  .p-md-37 {
    padding: 37px !important;
  }
  .pt-md-37 {
    padding-top: 37px !important;
  }
  .pb-md-37 {
    padding-bottom: 37px !important;
  }
  .pl-md-37 {
    padding-left: 37px !important;
  }
  .pr-md-37 {
    padding-right: 37px !important;
  }
  .py-md-37 {
    padding-top: 37px !important;
    padding-bottom: 37px !important;
  }
  .px-md-37 {
    padding-left: 37px !important;
    padding-right: 37px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-37 {
    margin: 37px !important;
  }
  .mt-lg-37 {
    margin-top: 37px !important;
  }
  .mb-lg-37 {
    margin-bottom: 37px !important;
  }
  .ml-lg-37 {
    margin-left: 37px !important;
  }
  .mr-lg-37 {
    margin-right: 37px !important;
  }
  .my-lg-37 {
    margin-top: 37px !important;
    margin-bottom: 37px !important;
  }
  .mx-lg-37 {
    margin-left: 37px !important;
    margin-right: 37px !important;
  }
  .p-lg-37 {
    padding: 37px !important;
  }
  .pt-lg-37 {
    padding-top: 37px !important;
  }
  .pb-lg-37 {
    padding-bottom: 37px !important;
  }
  .pl-lg-37 {
    padding-left: 37px !important;
  }
  .pr-lg-37 {
    padding-right: 37px !important;
  }
  .py-lg-37 {
    padding-top: 37px !important;
    padding-bottom: 37px !important;
  }
  .px-lg-37 {
    padding-left: 37px !important;
    padding-right: 37px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-37 {
    margin: 37px !important;
  }
  .mt-xl-37 {
    margin-top: 37px !important;
  }
  .mb-xl-37 {
    margin-bottom: 37px !important;
  }
  .ml-xl-37 {
    margin-left: 37px !important;
  }
  .mr-xl-37 {
    margin-right: 37px !important;
  }
  .my-xl-37 {
    margin-top: 37px !important;
    margin-bottom: 37px !important;
  }
  .mx-xl-37 {
    margin-left: 37px !important;
    margin-right: 37px !important;
  }
  .p-xl-37 {
    padding: 37px !important;
  }
  .pt-xl-37 {
    padding-top: 37px !important;
  }
  .pb-xl-37 {
    padding-bottom: 37px !important;
  }
  .pl-xl-37 {
    padding-left: 37px !important;
  }
  .pr-xl-37 {
    padding-right: 37px !important;
  }
  .py-xl-37 {
    padding-top: 37px !important;
    padding-bottom: 37px !important;
  }
  .px-xl-37 {
    padding-left: 37px !important;
    padding-right: 37px !important;
  }
}
.m-37 {
  margin: 37px !important;
}

.mt-37 {
  margin-top: 37px !important;
}

.mb-37 {
  margin-bottom: 37px !important;
}

.ml-37 {
  margin-left: 37px !important;
}

.mr-37 {
  margin-right: 37px !important;
}

.my-37 {
  margin-top: 37px !important;
  margin-bottom: 37px !important;
}

.mx-37 {
  margin-left: 37px !important;
  margin-right: 37px !important;
}

.p-37 {
  padding: 37px !important;
}

.pt-37 {
  padding-top: 37px !important;
}

.pb-37 {
  padding-bottom: 37px !important;
}

.pl-37 {
  padding-left: 37px !important;
}

.pr-37 {
  padding-right: 37px !important;
}

.py-37 {
  padding-top: 37px !important;
  padding-bottom: 37px !important;
}

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

@media (max-width: 576px) {
  .m-sm-38 {
    margin: 38px !important;
  }
  .mt-sm-38 {
    margin-top: 38px !important;
  }
  .mb-sm-38 {
    margin-bottom: 38px !important;
  }
  .ml-sm-38 {
    margin-left: 38px !important;
  }
  .mr-sm-38 {
    margin-right: 38px !important;
  }
  .my-sm-38 {
    margin-top: 38px !important;
    margin-bottom: 38px !important;
  }
  .mx-sm-38 {
    margin-left: 38px !important;
    margin-right: 38px !important;
  }
  .p-sm-38 {
    padding: 38px !important;
  }
  .pt-sm-38 {
    padding-top: 38px !important;
  }
  .pb-sm-38 {
    padding-bottom: 38px !important;
  }
  .pl-sm-38 {
    padding-left: 38px !important;
  }
  .pr-sm-38 {
    padding-right: 38px !important;
  }
  .py-sm-38 {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .px-sm-38 {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}
@media (max-width: 768px) {
  .m-md-38 {
    margin: 38px !important;
  }
  .mt-md-38 {
    margin-top: 38px !important;
  }
  .mb-md-38 {
    margin-bottom: 38px !important;
  }
  .ml-md-38 {
    margin-left: 38px !important;
  }
  .mr-md-38 {
    margin-right: 38px !important;
  }
  .my-md-38 {
    margin-top: 38px !important;
    margin-bottom: 38px !important;
  }
  .mx-md-38 {
    margin-left: 38px !important;
    margin-right: 38px !important;
  }
  .p-md-38 {
    padding: 38px !important;
  }
  .pt-md-38 {
    padding-top: 38px !important;
  }
  .pb-md-38 {
    padding-bottom: 38px !important;
  }
  .pl-md-38 {
    padding-left: 38px !important;
  }
  .pr-md-38 {
    padding-right: 38px !important;
  }
  .py-md-38 {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .px-md-38 {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-38 {
    margin: 38px !important;
  }
  .mt-lg-38 {
    margin-top: 38px !important;
  }
  .mb-lg-38 {
    margin-bottom: 38px !important;
  }
  .ml-lg-38 {
    margin-left: 38px !important;
  }
  .mr-lg-38 {
    margin-right: 38px !important;
  }
  .my-lg-38 {
    margin-top: 38px !important;
    margin-bottom: 38px !important;
  }
  .mx-lg-38 {
    margin-left: 38px !important;
    margin-right: 38px !important;
  }
  .p-lg-38 {
    padding: 38px !important;
  }
  .pt-lg-38 {
    padding-top: 38px !important;
  }
  .pb-lg-38 {
    padding-bottom: 38px !important;
  }
  .pl-lg-38 {
    padding-left: 38px !important;
  }
  .pr-lg-38 {
    padding-right: 38px !important;
  }
  .py-lg-38 {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .px-lg-38 {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-38 {
    margin: 38px !important;
  }
  .mt-xl-38 {
    margin-top: 38px !important;
  }
  .mb-xl-38 {
    margin-bottom: 38px !important;
  }
  .ml-xl-38 {
    margin-left: 38px !important;
  }
  .mr-xl-38 {
    margin-right: 38px !important;
  }
  .my-xl-38 {
    margin-top: 38px !important;
    margin-bottom: 38px !important;
  }
  .mx-xl-38 {
    margin-left: 38px !important;
    margin-right: 38px !important;
  }
  .p-xl-38 {
    padding: 38px !important;
  }
  .pt-xl-38 {
    padding-top: 38px !important;
  }
  .pb-xl-38 {
    padding-bottom: 38px !important;
  }
  .pl-xl-38 {
    padding-left: 38px !important;
  }
  .pr-xl-38 {
    padding-right: 38px !important;
  }
  .py-xl-38 {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .px-xl-38 {
    padding-left: 38px !important;
    padding-right: 38px !important;
  }
}
.m-38 {
  margin: 38px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.ml-38 {
  margin-left: 38px !important;
}

.mr-38 {
  margin-right: 38px !important;
}

.my-38 {
  margin-top: 38px !important;
  margin-bottom: 38px !important;
}

.mx-38 {
  margin-left: 38px !important;
  margin-right: 38px !important;
}

.p-38 {
  padding: 38px !important;
}

.pt-38 {
  padding-top: 38px !important;
}

.pb-38 {
  padding-bottom: 38px !important;
}

.pl-38 {
  padding-left: 38px !important;
}

.pr-38 {
  padding-right: 38px !important;
}

.py-38 {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

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

@media (max-width: 576px) {
  .m-sm-39 {
    margin: 39px !important;
  }
  .mt-sm-39 {
    margin-top: 39px !important;
  }
  .mb-sm-39 {
    margin-bottom: 39px !important;
  }
  .ml-sm-39 {
    margin-left: 39px !important;
  }
  .mr-sm-39 {
    margin-right: 39px !important;
  }
  .my-sm-39 {
    margin-top: 39px !important;
    margin-bottom: 39px !important;
  }
  .mx-sm-39 {
    margin-left: 39px !important;
    margin-right: 39px !important;
  }
  .p-sm-39 {
    padding: 39px !important;
  }
  .pt-sm-39 {
    padding-top: 39px !important;
  }
  .pb-sm-39 {
    padding-bottom: 39px !important;
  }
  .pl-sm-39 {
    padding-left: 39px !important;
  }
  .pr-sm-39 {
    padding-right: 39px !important;
  }
  .py-sm-39 {
    padding-top: 39px !important;
    padding-bottom: 39px !important;
  }
  .px-sm-39 {
    padding-left: 39px !important;
    padding-right: 39px !important;
  }
}
@media (max-width: 768px) {
  .m-md-39 {
    margin: 39px !important;
  }
  .mt-md-39 {
    margin-top: 39px !important;
  }
  .mb-md-39 {
    margin-bottom: 39px !important;
  }
  .ml-md-39 {
    margin-left: 39px !important;
  }
  .mr-md-39 {
    margin-right: 39px !important;
  }
  .my-md-39 {
    margin-top: 39px !important;
    margin-bottom: 39px !important;
  }
  .mx-md-39 {
    margin-left: 39px !important;
    margin-right: 39px !important;
  }
  .p-md-39 {
    padding: 39px !important;
  }
  .pt-md-39 {
    padding-top: 39px !important;
  }
  .pb-md-39 {
    padding-bottom: 39px !important;
  }
  .pl-md-39 {
    padding-left: 39px !important;
  }
  .pr-md-39 {
    padding-right: 39px !important;
  }
  .py-md-39 {
    padding-top: 39px !important;
    padding-bottom: 39px !important;
  }
  .px-md-39 {
    padding-left: 39px !important;
    padding-right: 39px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-39 {
    margin: 39px !important;
  }
  .mt-lg-39 {
    margin-top: 39px !important;
  }
  .mb-lg-39 {
    margin-bottom: 39px !important;
  }
  .ml-lg-39 {
    margin-left: 39px !important;
  }
  .mr-lg-39 {
    margin-right: 39px !important;
  }
  .my-lg-39 {
    margin-top: 39px !important;
    margin-bottom: 39px !important;
  }
  .mx-lg-39 {
    margin-left: 39px !important;
    margin-right: 39px !important;
  }
  .p-lg-39 {
    padding: 39px !important;
  }
  .pt-lg-39 {
    padding-top: 39px !important;
  }
  .pb-lg-39 {
    padding-bottom: 39px !important;
  }
  .pl-lg-39 {
    padding-left: 39px !important;
  }
  .pr-lg-39 {
    padding-right: 39px !important;
  }
  .py-lg-39 {
    padding-top: 39px !important;
    padding-bottom: 39px !important;
  }
  .px-lg-39 {
    padding-left: 39px !important;
    padding-right: 39px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-39 {
    margin: 39px !important;
  }
  .mt-xl-39 {
    margin-top: 39px !important;
  }
  .mb-xl-39 {
    margin-bottom: 39px !important;
  }
  .ml-xl-39 {
    margin-left: 39px !important;
  }
  .mr-xl-39 {
    margin-right: 39px !important;
  }
  .my-xl-39 {
    margin-top: 39px !important;
    margin-bottom: 39px !important;
  }
  .mx-xl-39 {
    margin-left: 39px !important;
    margin-right: 39px !important;
  }
  .p-xl-39 {
    padding: 39px !important;
  }
  .pt-xl-39 {
    padding-top: 39px !important;
  }
  .pb-xl-39 {
    padding-bottom: 39px !important;
  }
  .pl-xl-39 {
    padding-left: 39px !important;
  }
  .pr-xl-39 {
    padding-right: 39px !important;
  }
  .py-xl-39 {
    padding-top: 39px !important;
    padding-bottom: 39px !important;
  }
  .px-xl-39 {
    padding-left: 39px !important;
    padding-right: 39px !important;
  }
}
.m-39 {
  margin: 39px !important;
}

.mt-39 {
  margin-top: 39px !important;
}

.mb-39 {
  margin-bottom: 39px !important;
}

.ml-39 {
  margin-left: 39px !important;
}

.mr-39 {
  margin-right: 39px !important;
}

.my-39 {
  margin-top: 39px !important;
  margin-bottom: 39px !important;
}

.mx-39 {
  margin-left: 39px !important;
  margin-right: 39px !important;
}

.p-39 {
  padding: 39px !important;
}

.pt-39 {
  padding-top: 39px !important;
}

.pb-39 {
  padding-bottom: 39px !important;
}

.pl-39 {
  padding-left: 39px !important;
}

.pr-39 {
  padding-right: 39px !important;
}

.py-39 {
  padding-top: 39px !important;
  padding-bottom: 39px !important;
}

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

@media (max-width: 576px) {
  .m-sm-40 {
    margin: 40px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .ml-sm-40 {
    margin-left: 40px !important;
  }
  .mr-sm-40 {
    margin-right: 40px !important;
  }
  .my-sm-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mx-sm-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .pl-sm-40 {
    padding-left: 40px !important;
  }
  .pr-sm-40 {
    padding-right: 40px !important;
  }
  .py-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .px-sm-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 768px) {
  .m-md-40 {
    margin: 40px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .ml-md-40 {
    margin-left: 40px !important;
  }
  .mr-md-40 {
    margin-right: 40px !important;
  }
  .my-md-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mx-md-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .pl-md-40 {
    padding-left: 40px !important;
  }
  .pr-md-40 {
    padding-right: 40px !important;
  }
  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .px-md-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-40 {
    margin: 40px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .ml-lg-40 {
    margin-left: 40px !important;
  }
  .mr-lg-40 {
    margin-right: 40px !important;
  }
  .my-lg-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mx-lg-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .pt-lg-40 {
    padding-top: 40px !important;
  }
  .pb-lg-40 {
    padding-bottom: 40px !important;
  }
  .pl-lg-40 {
    padding-left: 40px !important;
  }
  .pr-lg-40 {
    padding-right: 40px !important;
  }
  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .px-lg-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-40 {
    margin: 40px !important;
  }
  .mt-xl-40 {
    margin-top: 40px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .ml-xl-40 {
    margin-left: 40px !important;
  }
  .mr-xl-40 {
    margin-right: 40px !important;
  }
  .my-xl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mx-xl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .p-xl-40 {
    padding: 40px !important;
  }
  .pt-xl-40 {
    padding-top: 40px !important;
  }
  .pb-xl-40 {
    padding-bottom: 40px !important;
  }
  .pl-xl-40 {
    padding-left: 40px !important;
  }
  .pr-xl-40 {
    padding-right: 40px !important;
  }
  .py-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .px-xl-40 {
    padding-left: 40px !important;
    padding-right: 40px !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;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !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;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

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

@media (max-width: 576px) {
  .m-sm-41 {
    margin: 41px !important;
  }
  .mt-sm-41 {
    margin-top: 41px !important;
  }
  .mb-sm-41 {
    margin-bottom: 41px !important;
  }
  .ml-sm-41 {
    margin-left: 41px !important;
  }
  .mr-sm-41 {
    margin-right: 41px !important;
  }
  .my-sm-41 {
    margin-top: 41px !important;
    margin-bottom: 41px !important;
  }
  .mx-sm-41 {
    margin-left: 41px !important;
    margin-right: 41px !important;
  }
  .p-sm-41 {
    padding: 41px !important;
  }
  .pt-sm-41 {
    padding-top: 41px !important;
  }
  .pb-sm-41 {
    padding-bottom: 41px !important;
  }
  .pl-sm-41 {
    padding-left: 41px !important;
  }
  .pr-sm-41 {
    padding-right: 41px !important;
  }
  .py-sm-41 {
    padding-top: 41px !important;
    padding-bottom: 41px !important;
  }
  .px-sm-41 {
    padding-left: 41px !important;
    padding-right: 41px !important;
  }
}
@media (max-width: 768px) {
  .m-md-41 {
    margin: 41px !important;
  }
  .mt-md-41 {
    margin-top: 41px !important;
  }
  .mb-md-41 {
    margin-bottom: 41px !important;
  }
  .ml-md-41 {
    margin-left: 41px !important;
  }
  .mr-md-41 {
    margin-right: 41px !important;
  }
  .my-md-41 {
    margin-top: 41px !important;
    margin-bottom: 41px !important;
  }
  .mx-md-41 {
    margin-left: 41px !important;
    margin-right: 41px !important;
  }
  .p-md-41 {
    padding: 41px !important;
  }
  .pt-md-41 {
    padding-top: 41px !important;
  }
  .pb-md-41 {
    padding-bottom: 41px !important;
  }
  .pl-md-41 {
    padding-left: 41px !important;
  }
  .pr-md-41 {
    padding-right: 41px !important;
  }
  .py-md-41 {
    padding-top: 41px !important;
    padding-bottom: 41px !important;
  }
  .px-md-41 {
    padding-left: 41px !important;
    padding-right: 41px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-41 {
    margin: 41px !important;
  }
  .mt-lg-41 {
    margin-top: 41px !important;
  }
  .mb-lg-41 {
    margin-bottom: 41px !important;
  }
  .ml-lg-41 {
    margin-left: 41px !important;
  }
  .mr-lg-41 {
    margin-right: 41px !important;
  }
  .my-lg-41 {
    margin-top: 41px !important;
    margin-bottom: 41px !important;
  }
  .mx-lg-41 {
    margin-left: 41px !important;
    margin-right: 41px !important;
  }
  .p-lg-41 {
    padding: 41px !important;
  }
  .pt-lg-41 {
    padding-top: 41px !important;
  }
  .pb-lg-41 {
    padding-bottom: 41px !important;
  }
  .pl-lg-41 {
    padding-left: 41px !important;
  }
  .pr-lg-41 {
    padding-right: 41px !important;
  }
  .py-lg-41 {
    padding-top: 41px !important;
    padding-bottom: 41px !important;
  }
  .px-lg-41 {
    padding-left: 41px !important;
    padding-right: 41px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-41 {
    margin: 41px !important;
  }
  .mt-xl-41 {
    margin-top: 41px !important;
  }
  .mb-xl-41 {
    margin-bottom: 41px !important;
  }
  .ml-xl-41 {
    margin-left: 41px !important;
  }
  .mr-xl-41 {
    margin-right: 41px !important;
  }
  .my-xl-41 {
    margin-top: 41px !important;
    margin-bottom: 41px !important;
  }
  .mx-xl-41 {
    margin-left: 41px !important;
    margin-right: 41px !important;
  }
  .p-xl-41 {
    padding: 41px !important;
  }
  .pt-xl-41 {
    padding-top: 41px !important;
  }
  .pb-xl-41 {
    padding-bottom: 41px !important;
  }
  .pl-xl-41 {
    padding-left: 41px !important;
  }
  .pr-xl-41 {
    padding-right: 41px !important;
  }
  .py-xl-41 {
    padding-top: 41px !important;
    padding-bottom: 41px !important;
  }
  .px-xl-41 {
    padding-left: 41px !important;
    padding-right: 41px !important;
  }
}
.m-41 {
  margin: 41px !important;
}

.mt-41 {
  margin-top: 41px !important;
}

.mb-41 {
  margin-bottom: 41px !important;
}

.ml-41 {
  margin-left: 41px !important;
}

.mr-41 {
  margin-right: 41px !important;
}

.my-41 {
  margin-top: 41px !important;
  margin-bottom: 41px !important;
}

.mx-41 {
  margin-left: 41px !important;
  margin-right: 41px !important;
}

.p-41 {
  padding: 41px !important;
}

.pt-41 {
  padding-top: 41px !important;
}

.pb-41 {
  padding-bottom: 41px !important;
}

.pl-41 {
  padding-left: 41px !important;
}

.pr-41 {
  padding-right: 41px !important;
}

.py-41 {
  padding-top: 41px !important;
  padding-bottom: 41px !important;
}

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

@media (max-width: 576px) {
  .m-sm-42 {
    margin: 42px !important;
  }
  .mt-sm-42 {
    margin-top: 42px !important;
  }
  .mb-sm-42 {
    margin-bottom: 42px !important;
  }
  .ml-sm-42 {
    margin-left: 42px !important;
  }
  .mr-sm-42 {
    margin-right: 42px !important;
  }
  .my-sm-42 {
    margin-top: 42px !important;
    margin-bottom: 42px !important;
  }
  .mx-sm-42 {
    margin-left: 42px !important;
    margin-right: 42px !important;
  }
  .p-sm-42 {
    padding: 42px !important;
  }
  .pt-sm-42 {
    padding-top: 42px !important;
  }
  .pb-sm-42 {
    padding-bottom: 42px !important;
  }
  .pl-sm-42 {
    padding-left: 42px !important;
  }
  .pr-sm-42 {
    padding-right: 42px !important;
  }
  .py-sm-42 {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
  .px-sm-42 {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}
@media (max-width: 768px) {
  .m-md-42 {
    margin: 42px !important;
  }
  .mt-md-42 {
    margin-top: 42px !important;
  }
  .mb-md-42 {
    margin-bottom: 42px !important;
  }
  .ml-md-42 {
    margin-left: 42px !important;
  }
  .mr-md-42 {
    margin-right: 42px !important;
  }
  .my-md-42 {
    margin-top: 42px !important;
    margin-bottom: 42px !important;
  }
  .mx-md-42 {
    margin-left: 42px !important;
    margin-right: 42px !important;
  }
  .p-md-42 {
    padding: 42px !important;
  }
  .pt-md-42 {
    padding-top: 42px !important;
  }
  .pb-md-42 {
    padding-bottom: 42px !important;
  }
  .pl-md-42 {
    padding-left: 42px !important;
  }
  .pr-md-42 {
    padding-right: 42px !important;
  }
  .py-md-42 {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
  .px-md-42 {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-42 {
    margin: 42px !important;
  }
  .mt-lg-42 {
    margin-top: 42px !important;
  }
  .mb-lg-42 {
    margin-bottom: 42px !important;
  }
  .ml-lg-42 {
    margin-left: 42px !important;
  }
  .mr-lg-42 {
    margin-right: 42px !important;
  }
  .my-lg-42 {
    margin-top: 42px !important;
    margin-bottom: 42px !important;
  }
  .mx-lg-42 {
    margin-left: 42px !important;
    margin-right: 42px !important;
  }
  .p-lg-42 {
    padding: 42px !important;
  }
  .pt-lg-42 {
    padding-top: 42px !important;
  }
  .pb-lg-42 {
    padding-bottom: 42px !important;
  }
  .pl-lg-42 {
    padding-left: 42px !important;
  }
  .pr-lg-42 {
    padding-right: 42px !important;
  }
  .py-lg-42 {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
  .px-lg-42 {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-42 {
    margin: 42px !important;
  }
  .mt-xl-42 {
    margin-top: 42px !important;
  }
  .mb-xl-42 {
    margin-bottom: 42px !important;
  }
  .ml-xl-42 {
    margin-left: 42px !important;
  }
  .mr-xl-42 {
    margin-right: 42px !important;
  }
  .my-xl-42 {
    margin-top: 42px !important;
    margin-bottom: 42px !important;
  }
  .mx-xl-42 {
    margin-left: 42px !important;
    margin-right: 42px !important;
  }
  .p-xl-42 {
    padding: 42px !important;
  }
  .pt-xl-42 {
    padding-top: 42px !important;
  }
  .pb-xl-42 {
    padding-bottom: 42px !important;
  }
  .pl-xl-42 {
    padding-left: 42px !important;
  }
  .pr-xl-42 {
    padding-right: 42px !important;
  }
  .py-xl-42 {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
  .px-xl-42 {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }
}
.m-42 {
  margin: 42px !important;
}

.mt-42 {
  margin-top: 42px !important;
}

.mb-42 {
  margin-bottom: 42px !important;
}

.ml-42 {
  margin-left: 42px !important;
}

.mr-42 {
  margin-right: 42px !important;
}

.my-42 {
  margin-top: 42px !important;
  margin-bottom: 42px !important;
}

.mx-42 {
  margin-left: 42px !important;
  margin-right: 42px !important;
}

.p-42 {
  padding: 42px !important;
}

.pt-42 {
  padding-top: 42px !important;
}

.pb-42 {
  padding-bottom: 42px !important;
}

.pl-42 {
  padding-left: 42px !important;
}

.pr-42 {
  padding-right: 42px !important;
}

.py-42 {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

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

@media (max-width: 576px) {
  .m-sm-43 {
    margin: 43px !important;
  }
  .mt-sm-43 {
    margin-top: 43px !important;
  }
  .mb-sm-43 {
    margin-bottom: 43px !important;
  }
  .ml-sm-43 {
    margin-left: 43px !important;
  }
  .mr-sm-43 {
    margin-right: 43px !important;
  }
  .my-sm-43 {
    margin-top: 43px !important;
    margin-bottom: 43px !important;
  }
  .mx-sm-43 {
    margin-left: 43px !important;
    margin-right: 43px !important;
  }
  .p-sm-43 {
    padding: 43px !important;
  }
  .pt-sm-43 {
    padding-top: 43px !important;
  }
  .pb-sm-43 {
    padding-bottom: 43px !important;
  }
  .pl-sm-43 {
    padding-left: 43px !important;
  }
  .pr-sm-43 {
    padding-right: 43px !important;
  }
  .py-sm-43 {
    padding-top: 43px !important;
    padding-bottom: 43px !important;
  }
  .px-sm-43 {
    padding-left: 43px !important;
    padding-right: 43px !important;
  }
}
@media (max-width: 768px) {
  .m-md-43 {
    margin: 43px !important;
  }
  .mt-md-43 {
    margin-top: 43px !important;
  }
  .mb-md-43 {
    margin-bottom: 43px !important;
  }
  .ml-md-43 {
    margin-left: 43px !important;
  }
  .mr-md-43 {
    margin-right: 43px !important;
  }
  .my-md-43 {
    margin-top: 43px !important;
    margin-bottom: 43px !important;
  }
  .mx-md-43 {
    margin-left: 43px !important;
    margin-right: 43px !important;
  }
  .p-md-43 {
    padding: 43px !important;
  }
  .pt-md-43 {
    padding-top: 43px !important;
  }
  .pb-md-43 {
    padding-bottom: 43px !important;
  }
  .pl-md-43 {
    padding-left: 43px !important;
  }
  .pr-md-43 {
    padding-right: 43px !important;
  }
  .py-md-43 {
    padding-top: 43px !important;
    padding-bottom: 43px !important;
  }
  .px-md-43 {
    padding-left: 43px !important;
    padding-right: 43px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-43 {
    margin: 43px !important;
  }
  .mt-lg-43 {
    margin-top: 43px !important;
  }
  .mb-lg-43 {
    margin-bottom: 43px !important;
  }
  .ml-lg-43 {
    margin-left: 43px !important;
  }
  .mr-lg-43 {
    margin-right: 43px !important;
  }
  .my-lg-43 {
    margin-top: 43px !important;
    margin-bottom: 43px !important;
  }
  .mx-lg-43 {
    margin-left: 43px !important;
    margin-right: 43px !important;
  }
  .p-lg-43 {
    padding: 43px !important;
  }
  .pt-lg-43 {
    padding-top: 43px !important;
  }
  .pb-lg-43 {
    padding-bottom: 43px !important;
  }
  .pl-lg-43 {
    padding-left: 43px !important;
  }
  .pr-lg-43 {
    padding-right: 43px !important;
  }
  .py-lg-43 {
    padding-top: 43px !important;
    padding-bottom: 43px !important;
  }
  .px-lg-43 {
    padding-left: 43px !important;
    padding-right: 43px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-43 {
    margin: 43px !important;
  }
  .mt-xl-43 {
    margin-top: 43px !important;
  }
  .mb-xl-43 {
    margin-bottom: 43px !important;
  }
  .ml-xl-43 {
    margin-left: 43px !important;
  }
  .mr-xl-43 {
    margin-right: 43px !important;
  }
  .my-xl-43 {
    margin-top: 43px !important;
    margin-bottom: 43px !important;
  }
  .mx-xl-43 {
    margin-left: 43px !important;
    margin-right: 43px !important;
  }
  .p-xl-43 {
    padding: 43px !important;
  }
  .pt-xl-43 {
    padding-top: 43px !important;
  }
  .pb-xl-43 {
    padding-bottom: 43px !important;
  }
  .pl-xl-43 {
    padding-left: 43px !important;
  }
  .pr-xl-43 {
    padding-right: 43px !important;
  }
  .py-xl-43 {
    padding-top: 43px !important;
    padding-bottom: 43px !important;
  }
  .px-xl-43 {
    padding-left: 43px !important;
    padding-right: 43px !important;
  }
}
.m-43 {
  margin: 43px !important;
}

.mt-43 {
  margin-top: 43px !important;
}

.mb-43 {
  margin-bottom: 43px !important;
}

.ml-43 {
  margin-left: 43px !important;
}

.mr-43 {
  margin-right: 43px !important;
}

.my-43 {
  margin-top: 43px !important;
  margin-bottom: 43px !important;
}

.mx-43 {
  margin-left: 43px !important;
  margin-right: 43px !important;
}

.p-43 {
  padding: 43px !important;
}

.pt-43 {
  padding-top: 43px !important;
}

.pb-43 {
  padding-bottom: 43px !important;
}

.pl-43 {
  padding-left: 43px !important;
}

.pr-43 {
  padding-right: 43px !important;
}

.py-43 {
  padding-top: 43px !important;
  padding-bottom: 43px !important;
}

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

@media (max-width: 576px) {
  .m-sm-44 {
    margin: 44px !important;
  }
  .mt-sm-44 {
    margin-top: 44px !important;
  }
  .mb-sm-44 {
    margin-bottom: 44px !important;
  }
  .ml-sm-44 {
    margin-left: 44px !important;
  }
  .mr-sm-44 {
    margin-right: 44px !important;
  }
  .my-sm-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .mx-sm-44 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .p-sm-44 {
    padding: 44px !important;
  }
  .pt-sm-44 {
    padding-top: 44px !important;
  }
  .pb-sm-44 {
    padding-bottom: 44px !important;
  }
  .pl-sm-44 {
    padding-left: 44px !important;
  }
  .pr-sm-44 {
    padding-right: 44px !important;
  }
  .py-sm-44 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .px-sm-44 {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
}
@media (max-width: 768px) {
  .m-md-44 {
    margin: 44px !important;
  }
  .mt-md-44 {
    margin-top: 44px !important;
  }
  .mb-md-44 {
    margin-bottom: 44px !important;
  }
  .ml-md-44 {
    margin-left: 44px !important;
  }
  .mr-md-44 {
    margin-right: 44px !important;
  }
  .my-md-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .mx-md-44 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .p-md-44 {
    padding: 44px !important;
  }
  .pt-md-44 {
    padding-top: 44px !important;
  }
  .pb-md-44 {
    padding-bottom: 44px !important;
  }
  .pl-md-44 {
    padding-left: 44px !important;
  }
  .pr-md-44 {
    padding-right: 44px !important;
  }
  .py-md-44 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .px-md-44 {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-44 {
    margin: 44px !important;
  }
  .mt-lg-44 {
    margin-top: 44px !important;
  }
  .mb-lg-44 {
    margin-bottom: 44px !important;
  }
  .ml-lg-44 {
    margin-left: 44px !important;
  }
  .mr-lg-44 {
    margin-right: 44px !important;
  }
  .my-lg-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .mx-lg-44 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .p-lg-44 {
    padding: 44px !important;
  }
  .pt-lg-44 {
    padding-top: 44px !important;
  }
  .pb-lg-44 {
    padding-bottom: 44px !important;
  }
  .pl-lg-44 {
    padding-left: 44px !important;
  }
  .pr-lg-44 {
    padding-right: 44px !important;
  }
  .py-lg-44 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .px-lg-44 {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-44 {
    margin: 44px !important;
  }
  .mt-xl-44 {
    margin-top: 44px !important;
  }
  .mb-xl-44 {
    margin-bottom: 44px !important;
  }
  .ml-xl-44 {
    margin-left: 44px !important;
  }
  .mr-xl-44 {
    margin-right: 44px !important;
  }
  .my-xl-44 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .mx-xl-44 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .p-xl-44 {
    padding: 44px !important;
  }
  .pt-xl-44 {
    padding-top: 44px !important;
  }
  .pb-xl-44 {
    padding-bottom: 44px !important;
  }
  .pl-xl-44 {
    padding-left: 44px !important;
  }
  .pr-xl-44 {
    padding-right: 44px !important;
  }
  .py-xl-44 {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .px-xl-44 {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
}
.m-44 {
  margin: 44px !important;
}

.mt-44 {
  margin-top: 44px !important;
}

.mb-44 {
  margin-bottom: 44px !important;
}

.ml-44 {
  margin-left: 44px !important;
}

.mr-44 {
  margin-right: 44px !important;
}

.my-44 {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}

.mx-44 {
  margin-left: 44px !important;
  margin-right: 44px !important;
}

.p-44 {
  padding: 44px !important;
}

.pt-44 {
  padding-top: 44px !important;
}

.pb-44 {
  padding-bottom: 44px !important;
}

.pl-44 {
  padding-left: 44px !important;
}

.pr-44 {
  padding-right: 44px !important;
}

.py-44 {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

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

@media (max-width: 576px) {
  .m-sm-45 {
    margin: 45px !important;
  }
  .mt-sm-45 {
    margin-top: 45px !important;
  }
  .mb-sm-45 {
    margin-bottom: 45px !important;
  }
  .ml-sm-45 {
    margin-left: 45px !important;
  }
  .mr-sm-45 {
    margin-right: 45px !important;
  }
  .my-sm-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mx-sm-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .p-sm-45 {
    padding: 45px !important;
  }
  .pt-sm-45 {
    padding-top: 45px !important;
  }
  .pb-sm-45 {
    padding-bottom: 45px !important;
  }
  .pl-sm-45 {
    padding-left: 45px !important;
  }
  .pr-sm-45 {
    padding-right: 45px !important;
  }
  .py-sm-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .px-sm-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
@media (max-width: 768px) {
  .m-md-45 {
    margin: 45px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .ml-md-45 {
    margin-left: 45px !important;
  }
  .mr-md-45 {
    margin-right: 45px !important;
  }
  .my-md-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mx-md-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .p-md-45 {
    padding: 45px !important;
  }
  .pt-md-45 {
    padding-top: 45px !important;
  }
  .pb-md-45 {
    padding-bottom: 45px !important;
  }
  .pl-md-45 {
    padding-left: 45px !important;
  }
  .pr-md-45 {
    padding-right: 45px !important;
  }
  .py-md-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .px-md-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-45 {
    margin: 45px !important;
  }
  .mt-lg-45 {
    margin-top: 45px !important;
  }
  .mb-lg-45 {
    margin-bottom: 45px !important;
  }
  .ml-lg-45 {
    margin-left: 45px !important;
  }
  .mr-lg-45 {
    margin-right: 45px !important;
  }
  .my-lg-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mx-lg-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .p-lg-45 {
    padding: 45px !important;
  }
  .pt-lg-45 {
    padding-top: 45px !important;
  }
  .pb-lg-45 {
    padding-bottom: 45px !important;
  }
  .pl-lg-45 {
    padding-left: 45px !important;
  }
  .pr-lg-45 {
    padding-right: 45px !important;
  }
  .py-lg-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .px-lg-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-45 {
    margin: 45px !important;
  }
  .mt-xl-45 {
    margin-top: 45px !important;
  }
  .mb-xl-45 {
    margin-bottom: 45px !important;
  }
  .ml-xl-45 {
    margin-left: 45px !important;
  }
  .mr-xl-45 {
    margin-right: 45px !important;
  }
  .my-xl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mx-xl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .p-xl-45 {
    padding: 45px !important;
  }
  .pt-xl-45 {
    padding-top: 45px !important;
  }
  .pb-xl-45 {
    padding-bottom: 45px !important;
  }
  .pl-xl-45 {
    padding-left: 45px !important;
  }
  .pr-xl-45 {
    padding-right: 45px !important;
  }
  .py-xl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .px-xl-45 {
    padding-left: 45px !important;
    padding-right: 45px !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;
}

.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.mx-45 {
  margin-left: 45px !important;
  margin-right: 45px !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;
}

.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

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

@media (max-width: 576px) {
  .m-sm-46 {
    margin: 46px !important;
  }
  .mt-sm-46 {
    margin-top: 46px !important;
  }
  .mb-sm-46 {
    margin-bottom: 46px !important;
  }
  .ml-sm-46 {
    margin-left: 46px !important;
  }
  .mr-sm-46 {
    margin-right: 46px !important;
  }
  .my-sm-46 {
    margin-top: 46px !important;
    margin-bottom: 46px !important;
  }
  .mx-sm-46 {
    margin-left: 46px !important;
    margin-right: 46px !important;
  }
  .p-sm-46 {
    padding: 46px !important;
  }
  .pt-sm-46 {
    padding-top: 46px !important;
  }
  .pb-sm-46 {
    padding-bottom: 46px !important;
  }
  .pl-sm-46 {
    padding-left: 46px !important;
  }
  .pr-sm-46 {
    padding-right: 46px !important;
  }
  .py-sm-46 {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
  .px-sm-46 {
    padding-left: 46px !important;
    padding-right: 46px !important;
  }
}
@media (max-width: 768px) {
  .m-md-46 {
    margin: 46px !important;
  }
  .mt-md-46 {
    margin-top: 46px !important;
  }
  .mb-md-46 {
    margin-bottom: 46px !important;
  }
  .ml-md-46 {
    margin-left: 46px !important;
  }
  .mr-md-46 {
    margin-right: 46px !important;
  }
  .my-md-46 {
    margin-top: 46px !important;
    margin-bottom: 46px !important;
  }
  .mx-md-46 {
    margin-left: 46px !important;
    margin-right: 46px !important;
  }
  .p-md-46 {
    padding: 46px !important;
  }
  .pt-md-46 {
    padding-top: 46px !important;
  }
  .pb-md-46 {
    padding-bottom: 46px !important;
  }
  .pl-md-46 {
    padding-left: 46px !important;
  }
  .pr-md-46 {
    padding-right: 46px !important;
  }
  .py-md-46 {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
  .px-md-46 {
    padding-left: 46px !important;
    padding-right: 46px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-46 {
    margin: 46px !important;
  }
  .mt-lg-46 {
    margin-top: 46px !important;
  }
  .mb-lg-46 {
    margin-bottom: 46px !important;
  }
  .ml-lg-46 {
    margin-left: 46px !important;
  }
  .mr-lg-46 {
    margin-right: 46px !important;
  }
  .my-lg-46 {
    margin-top: 46px !important;
    margin-bottom: 46px !important;
  }
  .mx-lg-46 {
    margin-left: 46px !important;
    margin-right: 46px !important;
  }
  .p-lg-46 {
    padding: 46px !important;
  }
  .pt-lg-46 {
    padding-top: 46px !important;
  }
  .pb-lg-46 {
    padding-bottom: 46px !important;
  }
  .pl-lg-46 {
    padding-left: 46px !important;
  }
  .pr-lg-46 {
    padding-right: 46px !important;
  }
  .py-lg-46 {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
  .px-lg-46 {
    padding-left: 46px !important;
    padding-right: 46px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-46 {
    margin: 46px !important;
  }
  .mt-xl-46 {
    margin-top: 46px !important;
  }
  .mb-xl-46 {
    margin-bottom: 46px !important;
  }
  .ml-xl-46 {
    margin-left: 46px !important;
  }
  .mr-xl-46 {
    margin-right: 46px !important;
  }
  .my-xl-46 {
    margin-top: 46px !important;
    margin-bottom: 46px !important;
  }
  .mx-xl-46 {
    margin-left: 46px !important;
    margin-right: 46px !important;
  }
  .p-xl-46 {
    padding: 46px !important;
  }
  .pt-xl-46 {
    padding-top: 46px !important;
  }
  .pb-xl-46 {
    padding-bottom: 46px !important;
  }
  .pl-xl-46 {
    padding-left: 46px !important;
  }
  .pr-xl-46 {
    padding-right: 46px !important;
  }
  .py-xl-46 {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
  .px-xl-46 {
    padding-left: 46px !important;
    padding-right: 46px !important;
  }
}
.m-46 {
  margin: 46px !important;
}

.mt-46 {
  margin-top: 46px !important;
}

.mb-46 {
  margin-bottom: 46px !important;
}

.ml-46 {
  margin-left: 46px !important;
}

.mr-46 {
  margin-right: 46px !important;
}

.my-46 {
  margin-top: 46px !important;
  margin-bottom: 46px !important;
}

.mx-46 {
  margin-left: 46px !important;
  margin-right: 46px !important;
}

.p-46 {
  padding: 46px !important;
}

.pt-46 {
  padding-top: 46px !important;
}

.pb-46 {
  padding-bottom: 46px !important;
}

.pl-46 {
  padding-left: 46px !important;
}

.pr-46 {
  padding-right: 46px !important;
}

.py-46 {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

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

@media (max-width: 576px) {
  .m-sm-47 {
    margin: 47px !important;
  }
  .mt-sm-47 {
    margin-top: 47px !important;
  }
  .mb-sm-47 {
    margin-bottom: 47px !important;
  }
  .ml-sm-47 {
    margin-left: 47px !important;
  }
  .mr-sm-47 {
    margin-right: 47px !important;
  }
  .my-sm-47 {
    margin-top: 47px !important;
    margin-bottom: 47px !important;
  }
  .mx-sm-47 {
    margin-left: 47px !important;
    margin-right: 47px !important;
  }
  .p-sm-47 {
    padding: 47px !important;
  }
  .pt-sm-47 {
    padding-top: 47px !important;
  }
  .pb-sm-47 {
    padding-bottom: 47px !important;
  }
  .pl-sm-47 {
    padding-left: 47px !important;
  }
  .pr-sm-47 {
    padding-right: 47px !important;
  }
  .py-sm-47 {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }
  .px-sm-47 {
    padding-left: 47px !important;
    padding-right: 47px !important;
  }
}
@media (max-width: 768px) {
  .m-md-47 {
    margin: 47px !important;
  }
  .mt-md-47 {
    margin-top: 47px !important;
  }
  .mb-md-47 {
    margin-bottom: 47px !important;
  }
  .ml-md-47 {
    margin-left: 47px !important;
  }
  .mr-md-47 {
    margin-right: 47px !important;
  }
  .my-md-47 {
    margin-top: 47px !important;
    margin-bottom: 47px !important;
  }
  .mx-md-47 {
    margin-left: 47px !important;
    margin-right: 47px !important;
  }
  .p-md-47 {
    padding: 47px !important;
  }
  .pt-md-47 {
    padding-top: 47px !important;
  }
  .pb-md-47 {
    padding-bottom: 47px !important;
  }
  .pl-md-47 {
    padding-left: 47px !important;
  }
  .pr-md-47 {
    padding-right: 47px !important;
  }
  .py-md-47 {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }
  .px-md-47 {
    padding-left: 47px !important;
    padding-right: 47px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-47 {
    margin: 47px !important;
  }
  .mt-lg-47 {
    margin-top: 47px !important;
  }
  .mb-lg-47 {
    margin-bottom: 47px !important;
  }
  .ml-lg-47 {
    margin-left: 47px !important;
  }
  .mr-lg-47 {
    margin-right: 47px !important;
  }
  .my-lg-47 {
    margin-top: 47px !important;
    margin-bottom: 47px !important;
  }
  .mx-lg-47 {
    margin-left: 47px !important;
    margin-right: 47px !important;
  }
  .p-lg-47 {
    padding: 47px !important;
  }
  .pt-lg-47 {
    padding-top: 47px !important;
  }
  .pb-lg-47 {
    padding-bottom: 47px !important;
  }
  .pl-lg-47 {
    padding-left: 47px !important;
  }
  .pr-lg-47 {
    padding-right: 47px !important;
  }
  .py-lg-47 {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }
  .px-lg-47 {
    padding-left: 47px !important;
    padding-right: 47px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-47 {
    margin: 47px !important;
  }
  .mt-xl-47 {
    margin-top: 47px !important;
  }
  .mb-xl-47 {
    margin-bottom: 47px !important;
  }
  .ml-xl-47 {
    margin-left: 47px !important;
  }
  .mr-xl-47 {
    margin-right: 47px !important;
  }
  .my-xl-47 {
    margin-top: 47px !important;
    margin-bottom: 47px !important;
  }
  .mx-xl-47 {
    margin-left: 47px !important;
    margin-right: 47px !important;
  }
  .p-xl-47 {
    padding: 47px !important;
  }
  .pt-xl-47 {
    padding-top: 47px !important;
  }
  .pb-xl-47 {
    padding-bottom: 47px !important;
  }
  .pl-xl-47 {
    padding-left: 47px !important;
  }
  .pr-xl-47 {
    padding-right: 47px !important;
  }
  .py-xl-47 {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }
  .px-xl-47 {
    padding-left: 47px !important;
    padding-right: 47px !important;
  }
}
.m-47 {
  margin: 47px !important;
}

.mt-47 {
  margin-top: 47px !important;
}

.mb-47 {
  margin-bottom: 47px !important;
}

.ml-47 {
  margin-left: 47px !important;
}

.mr-47 {
  margin-right: 47px !important;
}

.my-47 {
  margin-top: 47px !important;
  margin-bottom: 47px !important;
}

.mx-47 {
  margin-left: 47px !important;
  margin-right: 47px !important;
}

.p-47 {
  padding: 47px !important;
}

.pt-47 {
  padding-top: 47px !important;
}

.pb-47 {
  padding-bottom: 47px !important;
}

.pl-47 {
  padding-left: 47px !important;
}

.pr-47 {
  padding-right: 47px !important;
}

.py-47 {
  padding-top: 47px !important;
  padding-bottom: 47px !important;
}

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

@media (max-width: 576px) {
  .m-sm-48 {
    margin: 48px !important;
  }
  .mt-sm-48 {
    margin-top: 48px !important;
  }
  .mb-sm-48 {
    margin-bottom: 48px !important;
  }
  .ml-sm-48 {
    margin-left: 48px !important;
  }
  .mr-sm-48 {
    margin-right: 48px !important;
  }
  .my-sm-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .mx-sm-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .p-sm-48 {
    padding: 48px !important;
  }
  .pt-sm-48 {
    padding-top: 48px !important;
  }
  .pb-sm-48 {
    padding-bottom: 48px !important;
  }
  .pl-sm-48 {
    padding-left: 48px !important;
  }
  .pr-sm-48 {
    padding-right: 48px !important;
  }
  .py-sm-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .px-sm-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
}
@media (max-width: 768px) {
  .m-md-48 {
    margin: 48px !important;
  }
  .mt-md-48 {
    margin-top: 48px !important;
  }
  .mb-md-48 {
    margin-bottom: 48px !important;
  }
  .ml-md-48 {
    margin-left: 48px !important;
  }
  .mr-md-48 {
    margin-right: 48px !important;
  }
  .my-md-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .mx-md-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .p-md-48 {
    padding: 48px !important;
  }
  .pt-md-48 {
    padding-top: 48px !important;
  }
  .pb-md-48 {
    padding-bottom: 48px !important;
  }
  .pl-md-48 {
    padding-left: 48px !important;
  }
  .pr-md-48 {
    padding-right: 48px !important;
  }
  .py-md-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .px-md-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-48 {
    margin: 48px !important;
  }
  .mt-lg-48 {
    margin-top: 48px !important;
  }
  .mb-lg-48 {
    margin-bottom: 48px !important;
  }
  .ml-lg-48 {
    margin-left: 48px !important;
  }
  .mr-lg-48 {
    margin-right: 48px !important;
  }
  .my-lg-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .mx-lg-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .p-lg-48 {
    padding: 48px !important;
  }
  .pt-lg-48 {
    padding-top: 48px !important;
  }
  .pb-lg-48 {
    padding-bottom: 48px !important;
  }
  .pl-lg-48 {
    padding-left: 48px !important;
  }
  .pr-lg-48 {
    padding-right: 48px !important;
  }
  .py-lg-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .px-lg-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-48 {
    margin: 48px !important;
  }
  .mt-xl-48 {
    margin-top: 48px !important;
  }
  .mb-xl-48 {
    margin-bottom: 48px !important;
  }
  .ml-xl-48 {
    margin-left: 48px !important;
  }
  .mr-xl-48 {
    margin-right: 48px !important;
  }
  .my-xl-48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .mx-xl-48 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .p-xl-48 {
    padding: 48px !important;
  }
  .pt-xl-48 {
    padding-top: 48px !important;
  }
  .pb-xl-48 {
    padding-bottom: 48px !important;
  }
  .pl-xl-48 {
    padding-left: 48px !important;
  }
  .pr-xl-48 {
    padding-right: 48px !important;
  }
  .py-xl-48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .px-xl-48 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
}
.m-48 {
  margin: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.my-48 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.mx-48 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.p-48 {
  padding: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.py-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

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

@media (max-width: 576px) {
  .m-sm-49 {
    margin: 49px !important;
  }
  .mt-sm-49 {
    margin-top: 49px !important;
  }
  .mb-sm-49 {
    margin-bottom: 49px !important;
  }
  .ml-sm-49 {
    margin-left: 49px !important;
  }
  .mr-sm-49 {
    margin-right: 49px !important;
  }
  .my-sm-49 {
    margin-top: 49px !important;
    margin-bottom: 49px !important;
  }
  .mx-sm-49 {
    margin-left: 49px !important;
    margin-right: 49px !important;
  }
  .p-sm-49 {
    padding: 49px !important;
  }
  .pt-sm-49 {
    padding-top: 49px !important;
  }
  .pb-sm-49 {
    padding-bottom: 49px !important;
  }
  .pl-sm-49 {
    padding-left: 49px !important;
  }
  .pr-sm-49 {
    padding-right: 49px !important;
  }
  .py-sm-49 {
    padding-top: 49px !important;
    padding-bottom: 49px !important;
  }
  .px-sm-49 {
    padding-left: 49px !important;
    padding-right: 49px !important;
  }
}
@media (max-width: 768px) {
  .m-md-49 {
    margin: 49px !important;
  }
  .mt-md-49 {
    margin-top: 49px !important;
  }
  .mb-md-49 {
    margin-bottom: 49px !important;
  }
  .ml-md-49 {
    margin-left: 49px !important;
  }
  .mr-md-49 {
    margin-right: 49px !important;
  }
  .my-md-49 {
    margin-top: 49px !important;
    margin-bottom: 49px !important;
  }
  .mx-md-49 {
    margin-left: 49px !important;
    margin-right: 49px !important;
  }
  .p-md-49 {
    padding: 49px !important;
  }
  .pt-md-49 {
    padding-top: 49px !important;
  }
  .pb-md-49 {
    padding-bottom: 49px !important;
  }
  .pl-md-49 {
    padding-left: 49px !important;
  }
  .pr-md-49 {
    padding-right: 49px !important;
  }
  .py-md-49 {
    padding-top: 49px !important;
    padding-bottom: 49px !important;
  }
  .px-md-49 {
    padding-left: 49px !important;
    padding-right: 49px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-49 {
    margin: 49px !important;
  }
  .mt-lg-49 {
    margin-top: 49px !important;
  }
  .mb-lg-49 {
    margin-bottom: 49px !important;
  }
  .ml-lg-49 {
    margin-left: 49px !important;
  }
  .mr-lg-49 {
    margin-right: 49px !important;
  }
  .my-lg-49 {
    margin-top: 49px !important;
    margin-bottom: 49px !important;
  }
  .mx-lg-49 {
    margin-left: 49px !important;
    margin-right: 49px !important;
  }
  .p-lg-49 {
    padding: 49px !important;
  }
  .pt-lg-49 {
    padding-top: 49px !important;
  }
  .pb-lg-49 {
    padding-bottom: 49px !important;
  }
  .pl-lg-49 {
    padding-left: 49px !important;
  }
  .pr-lg-49 {
    padding-right: 49px !important;
  }
  .py-lg-49 {
    padding-top: 49px !important;
    padding-bottom: 49px !important;
  }
  .px-lg-49 {
    padding-left: 49px !important;
    padding-right: 49px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-49 {
    margin: 49px !important;
  }
  .mt-xl-49 {
    margin-top: 49px !important;
  }
  .mb-xl-49 {
    margin-bottom: 49px !important;
  }
  .ml-xl-49 {
    margin-left: 49px !important;
  }
  .mr-xl-49 {
    margin-right: 49px !important;
  }
  .my-xl-49 {
    margin-top: 49px !important;
    margin-bottom: 49px !important;
  }
  .mx-xl-49 {
    margin-left: 49px !important;
    margin-right: 49px !important;
  }
  .p-xl-49 {
    padding: 49px !important;
  }
  .pt-xl-49 {
    padding-top: 49px !important;
  }
  .pb-xl-49 {
    padding-bottom: 49px !important;
  }
  .pl-xl-49 {
    padding-left: 49px !important;
  }
  .pr-xl-49 {
    padding-right: 49px !important;
  }
  .py-xl-49 {
    padding-top: 49px !important;
    padding-bottom: 49px !important;
  }
  .px-xl-49 {
    padding-left: 49px !important;
    padding-right: 49px !important;
  }
}
.m-49 {
  margin: 49px !important;
}

.mt-49 {
  margin-top: 49px !important;
}

.mb-49 {
  margin-bottom: 49px !important;
}

.ml-49 {
  margin-left: 49px !important;
}

.mr-49 {
  margin-right: 49px !important;
}

.my-49 {
  margin-top: 49px !important;
  margin-bottom: 49px !important;
}

.mx-49 {
  margin-left: 49px !important;
  margin-right: 49px !important;
}

.p-49 {
  padding: 49px !important;
}

.pt-49 {
  padding-top: 49px !important;
}

.pb-49 {
  padding-bottom: 49px !important;
}

.pl-49 {
  padding-left: 49px !important;
}

.pr-49 {
  padding-right: 49px !important;
}

.py-49 {
  padding-top: 49px !important;
  padding-bottom: 49px !important;
}

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

@media (max-width: 576px) {
  .m-sm-50 {
    margin: 50px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .ml-sm-50 {
    margin-left: 50px !important;
  }
  .mr-sm-50 {
    margin-right: 50px !important;
  }
  .my-sm-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mx-sm-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .pl-sm-50 {
    padding-left: 50px !important;
  }
  .pr-sm-50 {
    padding-right: 50px !important;
  }
  .py-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .px-sm-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (max-width: 768px) {
  .m-md-50 {
    margin: 50px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .ml-md-50 {
    margin-left: 50px !important;
  }
  .mr-md-50 {
    margin-right: 50px !important;
  }
  .my-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mx-md-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pl-md-50 {
    padding-left: 50px !important;
  }
  .pr-md-50 {
    padding-right: 50px !important;
  }
  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .px-md-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-50 {
    margin: 50px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .ml-lg-50 {
    margin-left: 50px !important;
  }
  .mr-lg-50 {
    margin-right: 50px !important;
  }
  .my-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mx-lg-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .pl-lg-50 {
    padding-left: 50px !important;
  }
  .pr-lg-50 {
    padding-right: 50px !important;
  }
  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .px-lg-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-50 {
    margin: 50px !important;
  }
  .mt-xl-50 {
    margin-top: 50px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .ml-xl-50 {
    margin-left: 50px !important;
  }
  .mr-xl-50 {
    margin-right: 50px !important;
  }
  .my-xl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mx-xl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .p-xl-50 {
    padding: 50px !important;
  }
  .pt-xl-50 {
    padding-top: 50px !important;
  }
  .pb-xl-50 {
    padding-bottom: 50px !important;
  }
  .pl-xl-50 {
    padding-left: 50px !important;
  }
  .pr-xl-50 {
    padding-right: 50px !important;
  }
  .py-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .px-xl-50 {
    padding-left: 50px !important;
    padding-right: 50px !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;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !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;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

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

@media (max-width: 576px) {
  .m-sm-51 {
    margin: 51px !important;
  }
  .mt-sm-51 {
    margin-top: 51px !important;
  }
  .mb-sm-51 {
    margin-bottom: 51px !important;
  }
  .ml-sm-51 {
    margin-left: 51px !important;
  }
  .mr-sm-51 {
    margin-right: 51px !important;
  }
  .my-sm-51 {
    margin-top: 51px !important;
    margin-bottom: 51px !important;
  }
  .mx-sm-51 {
    margin-left: 51px !important;
    margin-right: 51px !important;
  }
  .p-sm-51 {
    padding: 51px !important;
  }
  .pt-sm-51 {
    padding-top: 51px !important;
  }
  .pb-sm-51 {
    padding-bottom: 51px !important;
  }
  .pl-sm-51 {
    padding-left: 51px !important;
  }
  .pr-sm-51 {
    padding-right: 51px !important;
  }
  .py-sm-51 {
    padding-top: 51px !important;
    padding-bottom: 51px !important;
  }
  .px-sm-51 {
    padding-left: 51px !important;
    padding-right: 51px !important;
  }
}
@media (max-width: 768px) {
  .m-md-51 {
    margin: 51px !important;
  }
  .mt-md-51 {
    margin-top: 51px !important;
  }
  .mb-md-51 {
    margin-bottom: 51px !important;
  }
  .ml-md-51 {
    margin-left: 51px !important;
  }
  .mr-md-51 {
    margin-right: 51px !important;
  }
  .my-md-51 {
    margin-top: 51px !important;
    margin-bottom: 51px !important;
  }
  .mx-md-51 {
    margin-left: 51px !important;
    margin-right: 51px !important;
  }
  .p-md-51 {
    padding: 51px !important;
  }
  .pt-md-51 {
    padding-top: 51px !important;
  }
  .pb-md-51 {
    padding-bottom: 51px !important;
  }
  .pl-md-51 {
    padding-left: 51px !important;
  }
  .pr-md-51 {
    padding-right: 51px !important;
  }
  .py-md-51 {
    padding-top: 51px !important;
    padding-bottom: 51px !important;
  }
  .px-md-51 {
    padding-left: 51px !important;
    padding-right: 51px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-51 {
    margin: 51px !important;
  }
  .mt-lg-51 {
    margin-top: 51px !important;
  }
  .mb-lg-51 {
    margin-bottom: 51px !important;
  }
  .ml-lg-51 {
    margin-left: 51px !important;
  }
  .mr-lg-51 {
    margin-right: 51px !important;
  }
  .my-lg-51 {
    margin-top: 51px !important;
    margin-bottom: 51px !important;
  }
  .mx-lg-51 {
    margin-left: 51px !important;
    margin-right: 51px !important;
  }
  .p-lg-51 {
    padding: 51px !important;
  }
  .pt-lg-51 {
    padding-top: 51px !important;
  }
  .pb-lg-51 {
    padding-bottom: 51px !important;
  }
  .pl-lg-51 {
    padding-left: 51px !important;
  }
  .pr-lg-51 {
    padding-right: 51px !important;
  }
  .py-lg-51 {
    padding-top: 51px !important;
    padding-bottom: 51px !important;
  }
  .px-lg-51 {
    padding-left: 51px !important;
    padding-right: 51px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-51 {
    margin: 51px !important;
  }
  .mt-xl-51 {
    margin-top: 51px !important;
  }
  .mb-xl-51 {
    margin-bottom: 51px !important;
  }
  .ml-xl-51 {
    margin-left: 51px !important;
  }
  .mr-xl-51 {
    margin-right: 51px !important;
  }
  .my-xl-51 {
    margin-top: 51px !important;
    margin-bottom: 51px !important;
  }
  .mx-xl-51 {
    margin-left: 51px !important;
    margin-right: 51px !important;
  }
  .p-xl-51 {
    padding: 51px !important;
  }
  .pt-xl-51 {
    padding-top: 51px !important;
  }
  .pb-xl-51 {
    padding-bottom: 51px !important;
  }
  .pl-xl-51 {
    padding-left: 51px !important;
  }
  .pr-xl-51 {
    padding-right: 51px !important;
  }
  .py-xl-51 {
    padding-top: 51px !important;
    padding-bottom: 51px !important;
  }
  .px-xl-51 {
    padding-left: 51px !important;
    padding-right: 51px !important;
  }
}
.m-51 {
  margin: 51px !important;
}

.mt-51 {
  margin-top: 51px !important;
}

.mb-51 {
  margin-bottom: 51px !important;
}

.ml-51 {
  margin-left: 51px !important;
}

.mr-51 {
  margin-right: 51px !important;
}

.my-51 {
  margin-top: 51px !important;
  margin-bottom: 51px !important;
}

.mx-51 {
  margin-left: 51px !important;
  margin-right: 51px !important;
}

.p-51 {
  padding: 51px !important;
}

.pt-51 {
  padding-top: 51px !important;
}

.pb-51 {
  padding-bottom: 51px !important;
}

.pl-51 {
  padding-left: 51px !important;
}

.pr-51 {
  padding-right: 51px !important;
}

.py-51 {
  padding-top: 51px !important;
  padding-bottom: 51px !important;
}

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

@media (max-width: 576px) {
  .m-sm-52 {
    margin: 52px !important;
  }
  .mt-sm-52 {
    margin-top: 52px !important;
  }
  .mb-sm-52 {
    margin-bottom: 52px !important;
  }
  .ml-sm-52 {
    margin-left: 52px !important;
  }
  .mr-sm-52 {
    margin-right: 52px !important;
  }
  .my-sm-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .mx-sm-52 {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .p-sm-52 {
    padding: 52px !important;
  }
  .pt-sm-52 {
    padding-top: 52px !important;
  }
  .pb-sm-52 {
    padding-bottom: 52px !important;
  }
  .pl-sm-52 {
    padding-left: 52px !important;
  }
  .pr-sm-52 {
    padding-right: 52px !important;
  }
  .py-sm-52 {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .px-sm-52 {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
}
@media (max-width: 768px) {
  .m-md-52 {
    margin: 52px !important;
  }
  .mt-md-52 {
    margin-top: 52px !important;
  }
  .mb-md-52 {
    margin-bottom: 52px !important;
  }
  .ml-md-52 {
    margin-left: 52px !important;
  }
  .mr-md-52 {
    margin-right: 52px !important;
  }
  .my-md-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .mx-md-52 {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .p-md-52 {
    padding: 52px !important;
  }
  .pt-md-52 {
    padding-top: 52px !important;
  }
  .pb-md-52 {
    padding-bottom: 52px !important;
  }
  .pl-md-52 {
    padding-left: 52px !important;
  }
  .pr-md-52 {
    padding-right: 52px !important;
  }
  .py-md-52 {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .px-md-52 {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-52 {
    margin: 52px !important;
  }
  .mt-lg-52 {
    margin-top: 52px !important;
  }
  .mb-lg-52 {
    margin-bottom: 52px !important;
  }
  .ml-lg-52 {
    margin-left: 52px !important;
  }
  .mr-lg-52 {
    margin-right: 52px !important;
  }
  .my-lg-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .mx-lg-52 {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .p-lg-52 {
    padding: 52px !important;
  }
  .pt-lg-52 {
    padding-top: 52px !important;
  }
  .pb-lg-52 {
    padding-bottom: 52px !important;
  }
  .pl-lg-52 {
    padding-left: 52px !important;
  }
  .pr-lg-52 {
    padding-right: 52px !important;
  }
  .py-lg-52 {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .px-lg-52 {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-52 {
    margin: 52px !important;
  }
  .mt-xl-52 {
    margin-top: 52px !important;
  }
  .mb-xl-52 {
    margin-bottom: 52px !important;
  }
  .ml-xl-52 {
    margin-left: 52px !important;
  }
  .mr-xl-52 {
    margin-right: 52px !important;
  }
  .my-xl-52 {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .mx-xl-52 {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .p-xl-52 {
    padding: 52px !important;
  }
  .pt-xl-52 {
    padding-top: 52px !important;
  }
  .pb-xl-52 {
    padding-bottom: 52px !important;
  }
  .pl-xl-52 {
    padding-left: 52px !important;
  }
  .pr-xl-52 {
    padding-right: 52px !important;
  }
  .py-xl-52 {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .px-xl-52 {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
}
.m-52 {
  margin: 52px !important;
}

.mt-52 {
  margin-top: 52px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.ml-52 {
  margin-left: 52px !important;
}

.mr-52 {
  margin-right: 52px !important;
}

.my-52 {
  margin-top: 52px !important;
  margin-bottom: 52px !important;
}

.mx-52 {
  margin-left: 52px !important;
  margin-right: 52px !important;
}

.p-52 {
  padding: 52px !important;
}

.pt-52 {
  padding-top: 52px !important;
}

.pb-52 {
  padding-bottom: 52px !important;
}

.pl-52 {
  padding-left: 52px !important;
}

.pr-52 {
  padding-right: 52px !important;
}

.py-52 {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

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

@media (max-width: 576px) {
  .m-sm-53 {
    margin: 53px !important;
  }
  .mt-sm-53 {
    margin-top: 53px !important;
  }
  .mb-sm-53 {
    margin-bottom: 53px !important;
  }
  .ml-sm-53 {
    margin-left: 53px !important;
  }
  .mr-sm-53 {
    margin-right: 53px !important;
  }
  .my-sm-53 {
    margin-top: 53px !important;
    margin-bottom: 53px !important;
  }
  .mx-sm-53 {
    margin-left: 53px !important;
    margin-right: 53px !important;
  }
  .p-sm-53 {
    padding: 53px !important;
  }
  .pt-sm-53 {
    padding-top: 53px !important;
  }
  .pb-sm-53 {
    padding-bottom: 53px !important;
  }
  .pl-sm-53 {
    padding-left: 53px !important;
  }
  .pr-sm-53 {
    padding-right: 53px !important;
  }
  .py-sm-53 {
    padding-top: 53px !important;
    padding-bottom: 53px !important;
  }
  .px-sm-53 {
    padding-left: 53px !important;
    padding-right: 53px !important;
  }
}
@media (max-width: 768px) {
  .m-md-53 {
    margin: 53px !important;
  }
  .mt-md-53 {
    margin-top: 53px !important;
  }
  .mb-md-53 {
    margin-bottom: 53px !important;
  }
  .ml-md-53 {
    margin-left: 53px !important;
  }
  .mr-md-53 {
    margin-right: 53px !important;
  }
  .my-md-53 {
    margin-top: 53px !important;
    margin-bottom: 53px !important;
  }
  .mx-md-53 {
    margin-left: 53px !important;
    margin-right: 53px !important;
  }
  .p-md-53 {
    padding: 53px !important;
  }
  .pt-md-53 {
    padding-top: 53px !important;
  }
  .pb-md-53 {
    padding-bottom: 53px !important;
  }
  .pl-md-53 {
    padding-left: 53px !important;
  }
  .pr-md-53 {
    padding-right: 53px !important;
  }
  .py-md-53 {
    padding-top: 53px !important;
    padding-bottom: 53px !important;
  }
  .px-md-53 {
    padding-left: 53px !important;
    padding-right: 53px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-53 {
    margin: 53px !important;
  }
  .mt-lg-53 {
    margin-top: 53px !important;
  }
  .mb-lg-53 {
    margin-bottom: 53px !important;
  }
  .ml-lg-53 {
    margin-left: 53px !important;
  }
  .mr-lg-53 {
    margin-right: 53px !important;
  }
  .my-lg-53 {
    margin-top: 53px !important;
    margin-bottom: 53px !important;
  }
  .mx-lg-53 {
    margin-left: 53px !important;
    margin-right: 53px !important;
  }
  .p-lg-53 {
    padding: 53px !important;
  }
  .pt-lg-53 {
    padding-top: 53px !important;
  }
  .pb-lg-53 {
    padding-bottom: 53px !important;
  }
  .pl-lg-53 {
    padding-left: 53px !important;
  }
  .pr-lg-53 {
    padding-right: 53px !important;
  }
  .py-lg-53 {
    padding-top: 53px !important;
    padding-bottom: 53px !important;
  }
  .px-lg-53 {
    padding-left: 53px !important;
    padding-right: 53px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-53 {
    margin: 53px !important;
  }
  .mt-xl-53 {
    margin-top: 53px !important;
  }
  .mb-xl-53 {
    margin-bottom: 53px !important;
  }
  .ml-xl-53 {
    margin-left: 53px !important;
  }
  .mr-xl-53 {
    margin-right: 53px !important;
  }
  .my-xl-53 {
    margin-top: 53px !important;
    margin-bottom: 53px !important;
  }
  .mx-xl-53 {
    margin-left: 53px !important;
    margin-right: 53px !important;
  }
  .p-xl-53 {
    padding: 53px !important;
  }
  .pt-xl-53 {
    padding-top: 53px !important;
  }
  .pb-xl-53 {
    padding-bottom: 53px !important;
  }
  .pl-xl-53 {
    padding-left: 53px !important;
  }
  .pr-xl-53 {
    padding-right: 53px !important;
  }
  .py-xl-53 {
    padding-top: 53px !important;
    padding-bottom: 53px !important;
  }
  .px-xl-53 {
    padding-left: 53px !important;
    padding-right: 53px !important;
  }
}
.m-53 {
  margin: 53px !important;
}

.mt-53 {
  margin-top: 53px !important;
}

.mb-53 {
  margin-bottom: 53px !important;
}

.ml-53 {
  margin-left: 53px !important;
}

.mr-53 {
  margin-right: 53px !important;
}

.my-53 {
  margin-top: 53px !important;
  margin-bottom: 53px !important;
}

.mx-53 {
  margin-left: 53px !important;
  margin-right: 53px !important;
}

.p-53 {
  padding: 53px !important;
}

.pt-53 {
  padding-top: 53px !important;
}

.pb-53 {
  padding-bottom: 53px !important;
}

.pl-53 {
  padding-left: 53px !important;
}

.pr-53 {
  padding-right: 53px !important;
}

.py-53 {
  padding-top: 53px !important;
  padding-bottom: 53px !important;
}

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

@media (max-width: 576px) {
  .m-sm-54 {
    margin: 54px !important;
  }
  .mt-sm-54 {
    margin-top: 54px !important;
  }
  .mb-sm-54 {
    margin-bottom: 54px !important;
  }
  .ml-sm-54 {
    margin-left: 54px !important;
  }
  .mr-sm-54 {
    margin-right: 54px !important;
  }
  .my-sm-54 {
    margin-top: 54px !important;
    margin-bottom: 54px !important;
  }
  .mx-sm-54 {
    margin-left: 54px !important;
    margin-right: 54px !important;
  }
  .p-sm-54 {
    padding: 54px !important;
  }
  .pt-sm-54 {
    padding-top: 54px !important;
  }
  .pb-sm-54 {
    padding-bottom: 54px !important;
  }
  .pl-sm-54 {
    padding-left: 54px !important;
  }
  .pr-sm-54 {
    padding-right: 54px !important;
  }
  .py-sm-54 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .px-sm-54 {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }
}
@media (max-width: 768px) {
  .m-md-54 {
    margin: 54px !important;
  }
  .mt-md-54 {
    margin-top: 54px !important;
  }
  .mb-md-54 {
    margin-bottom: 54px !important;
  }
  .ml-md-54 {
    margin-left: 54px !important;
  }
  .mr-md-54 {
    margin-right: 54px !important;
  }
  .my-md-54 {
    margin-top: 54px !important;
    margin-bottom: 54px !important;
  }
  .mx-md-54 {
    margin-left: 54px !important;
    margin-right: 54px !important;
  }
  .p-md-54 {
    padding: 54px !important;
  }
  .pt-md-54 {
    padding-top: 54px !important;
  }
  .pb-md-54 {
    padding-bottom: 54px !important;
  }
  .pl-md-54 {
    padding-left: 54px !important;
  }
  .pr-md-54 {
    padding-right: 54px !important;
  }
  .py-md-54 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .px-md-54 {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-54 {
    margin: 54px !important;
  }
  .mt-lg-54 {
    margin-top: 54px !important;
  }
  .mb-lg-54 {
    margin-bottom: 54px !important;
  }
  .ml-lg-54 {
    margin-left: 54px !important;
  }
  .mr-lg-54 {
    margin-right: 54px !important;
  }
  .my-lg-54 {
    margin-top: 54px !important;
    margin-bottom: 54px !important;
  }
  .mx-lg-54 {
    margin-left: 54px !important;
    margin-right: 54px !important;
  }
  .p-lg-54 {
    padding: 54px !important;
  }
  .pt-lg-54 {
    padding-top: 54px !important;
  }
  .pb-lg-54 {
    padding-bottom: 54px !important;
  }
  .pl-lg-54 {
    padding-left: 54px !important;
  }
  .pr-lg-54 {
    padding-right: 54px !important;
  }
  .py-lg-54 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .px-lg-54 {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-54 {
    margin: 54px !important;
  }
  .mt-xl-54 {
    margin-top: 54px !important;
  }
  .mb-xl-54 {
    margin-bottom: 54px !important;
  }
  .ml-xl-54 {
    margin-left: 54px !important;
  }
  .mr-xl-54 {
    margin-right: 54px !important;
  }
  .my-xl-54 {
    margin-top: 54px !important;
    margin-bottom: 54px !important;
  }
  .mx-xl-54 {
    margin-left: 54px !important;
    margin-right: 54px !important;
  }
  .p-xl-54 {
    padding: 54px !important;
  }
  .pt-xl-54 {
    padding-top: 54px !important;
  }
  .pb-xl-54 {
    padding-bottom: 54px !important;
  }
  .pl-xl-54 {
    padding-left: 54px !important;
  }
  .pr-xl-54 {
    padding-right: 54px !important;
  }
  .py-xl-54 {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .px-xl-54 {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }
}
.m-54 {
  margin: 54px !important;
}

.mt-54 {
  margin-top: 54px !important;
}

.mb-54 {
  margin-bottom: 54px !important;
}

.ml-54 {
  margin-left: 54px !important;
}

.mr-54 {
  margin-right: 54px !important;
}

.my-54 {
  margin-top: 54px !important;
  margin-bottom: 54px !important;
}

.mx-54 {
  margin-left: 54px !important;
  margin-right: 54px !important;
}

.p-54 {
  padding: 54px !important;
}

.pt-54 {
  padding-top: 54px !important;
}

.pb-54 {
  padding-bottom: 54px !important;
}

.pl-54 {
  padding-left: 54px !important;
}

.pr-54 {
  padding-right: 54px !important;
}

.py-54 {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

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

@media (max-width: 576px) {
  .m-sm-55 {
    margin: 55px !important;
  }
  .mt-sm-55 {
    margin-top: 55px !important;
  }
  .mb-sm-55 {
    margin-bottom: 55px !important;
  }
  .ml-sm-55 {
    margin-left: 55px !important;
  }
  .mr-sm-55 {
    margin-right: 55px !important;
  }
  .my-sm-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mx-sm-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .p-sm-55 {
    padding: 55px !important;
  }
  .pt-sm-55 {
    padding-top: 55px !important;
  }
  .pb-sm-55 {
    padding-bottom: 55px !important;
  }
  .pl-sm-55 {
    padding-left: 55px !important;
  }
  .pr-sm-55 {
    padding-right: 55px !important;
  }
  .py-sm-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .px-sm-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
}
@media (max-width: 768px) {
  .m-md-55 {
    margin: 55px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .ml-md-55 {
    margin-left: 55px !important;
  }
  .mr-md-55 {
    margin-right: 55px !important;
  }
  .my-md-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mx-md-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .p-md-55 {
    padding: 55px !important;
  }
  .pt-md-55 {
    padding-top: 55px !important;
  }
  .pb-md-55 {
    padding-bottom: 55px !important;
  }
  .pl-md-55 {
    padding-left: 55px !important;
  }
  .pr-md-55 {
    padding-right: 55px !important;
  }
  .py-md-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .px-md-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-55 {
    margin: 55px !important;
  }
  .mt-lg-55 {
    margin-top: 55px !important;
  }
  .mb-lg-55 {
    margin-bottom: 55px !important;
  }
  .ml-lg-55 {
    margin-left: 55px !important;
  }
  .mr-lg-55 {
    margin-right: 55px !important;
  }
  .my-lg-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mx-lg-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .p-lg-55 {
    padding: 55px !important;
  }
  .pt-lg-55 {
    padding-top: 55px !important;
  }
  .pb-lg-55 {
    padding-bottom: 55px !important;
  }
  .pl-lg-55 {
    padding-left: 55px !important;
  }
  .pr-lg-55 {
    padding-right: 55px !important;
  }
  .py-lg-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .px-lg-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-55 {
    margin: 55px !important;
  }
  .mt-xl-55 {
    margin-top: 55px !important;
  }
  .mb-xl-55 {
    margin-bottom: 55px !important;
  }
  .ml-xl-55 {
    margin-left: 55px !important;
  }
  .mr-xl-55 {
    margin-right: 55px !important;
  }
  .my-xl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mx-xl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .p-xl-55 {
    padding: 55px !important;
  }
  .pt-xl-55 {
    padding-top: 55px !important;
  }
  .pb-xl-55 {
    padding-bottom: 55px !important;
  }
  .pl-xl-55 {
    padding-left: 55px !important;
  }
  .pr-xl-55 {
    padding-right: 55px !important;
  }
  .py-xl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .px-xl-55 {
    padding-left: 55px !important;
    padding-right: 55px !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;
}

.my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

.mx-55 {
  margin-left: 55px !important;
  margin-right: 55px !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;
}

.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

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

@media (max-width: 576px) {
  .m-sm-56 {
    margin: 56px !important;
  }
  .mt-sm-56 {
    margin-top: 56px !important;
  }
  .mb-sm-56 {
    margin-bottom: 56px !important;
  }
  .ml-sm-56 {
    margin-left: 56px !important;
  }
  .mr-sm-56 {
    margin-right: 56px !important;
  }
  .my-sm-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .mx-sm-56 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .p-sm-56 {
    padding: 56px !important;
  }
  .pt-sm-56 {
    padding-top: 56px !important;
  }
  .pb-sm-56 {
    padding-bottom: 56px !important;
  }
  .pl-sm-56 {
    padding-left: 56px !important;
  }
  .pr-sm-56 {
    padding-right: 56px !important;
  }
  .py-sm-56 {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .px-sm-56 {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}
@media (max-width: 768px) {
  .m-md-56 {
    margin: 56px !important;
  }
  .mt-md-56 {
    margin-top: 56px !important;
  }
  .mb-md-56 {
    margin-bottom: 56px !important;
  }
  .ml-md-56 {
    margin-left: 56px !important;
  }
  .mr-md-56 {
    margin-right: 56px !important;
  }
  .my-md-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .mx-md-56 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .p-md-56 {
    padding: 56px !important;
  }
  .pt-md-56 {
    padding-top: 56px !important;
  }
  .pb-md-56 {
    padding-bottom: 56px !important;
  }
  .pl-md-56 {
    padding-left: 56px !important;
  }
  .pr-md-56 {
    padding-right: 56px !important;
  }
  .py-md-56 {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .px-md-56 {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-56 {
    margin: 56px !important;
  }
  .mt-lg-56 {
    margin-top: 56px !important;
  }
  .mb-lg-56 {
    margin-bottom: 56px !important;
  }
  .ml-lg-56 {
    margin-left: 56px !important;
  }
  .mr-lg-56 {
    margin-right: 56px !important;
  }
  .my-lg-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .mx-lg-56 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .p-lg-56 {
    padding: 56px !important;
  }
  .pt-lg-56 {
    padding-top: 56px !important;
  }
  .pb-lg-56 {
    padding-bottom: 56px !important;
  }
  .pl-lg-56 {
    padding-left: 56px !important;
  }
  .pr-lg-56 {
    padding-right: 56px !important;
  }
  .py-lg-56 {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .px-lg-56 {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-56 {
    margin: 56px !important;
  }
  .mt-xl-56 {
    margin-top: 56px !important;
  }
  .mb-xl-56 {
    margin-bottom: 56px !important;
  }
  .ml-xl-56 {
    margin-left: 56px !important;
  }
  .mr-xl-56 {
    margin-right: 56px !important;
  }
  .my-xl-56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .mx-xl-56 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .p-xl-56 {
    padding: 56px !important;
  }
  .pt-xl-56 {
    padding-top: 56px !important;
  }
  .pb-xl-56 {
    padding-bottom: 56px !important;
  }
  .pl-xl-56 {
    padding-left: 56px !important;
  }
  .pr-xl-56 {
    padding-right: 56px !important;
  }
  .py-xl-56 {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .px-xl-56 {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
}
.m-56 {
  margin: 56px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.my-56 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.mx-56 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}

.p-56 {
  padding: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

.pb-56 {
  padding-bottom: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.py-56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

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

@media (max-width: 576px) {
  .m-sm-57 {
    margin: 57px !important;
  }
  .mt-sm-57 {
    margin-top: 57px !important;
  }
  .mb-sm-57 {
    margin-bottom: 57px !important;
  }
  .ml-sm-57 {
    margin-left: 57px !important;
  }
  .mr-sm-57 {
    margin-right: 57px !important;
  }
  .my-sm-57 {
    margin-top: 57px !important;
    margin-bottom: 57px !important;
  }
  .mx-sm-57 {
    margin-left: 57px !important;
    margin-right: 57px !important;
  }
  .p-sm-57 {
    padding: 57px !important;
  }
  .pt-sm-57 {
    padding-top: 57px !important;
  }
  .pb-sm-57 {
    padding-bottom: 57px !important;
  }
  .pl-sm-57 {
    padding-left: 57px !important;
  }
  .pr-sm-57 {
    padding-right: 57px !important;
  }
  .py-sm-57 {
    padding-top: 57px !important;
    padding-bottom: 57px !important;
  }
  .px-sm-57 {
    padding-left: 57px !important;
    padding-right: 57px !important;
  }
}
@media (max-width: 768px) {
  .m-md-57 {
    margin: 57px !important;
  }
  .mt-md-57 {
    margin-top: 57px !important;
  }
  .mb-md-57 {
    margin-bottom: 57px !important;
  }
  .ml-md-57 {
    margin-left: 57px !important;
  }
  .mr-md-57 {
    margin-right: 57px !important;
  }
  .my-md-57 {
    margin-top: 57px !important;
    margin-bottom: 57px !important;
  }
  .mx-md-57 {
    margin-left: 57px !important;
    margin-right: 57px !important;
  }
  .p-md-57 {
    padding: 57px !important;
  }
  .pt-md-57 {
    padding-top: 57px !important;
  }
  .pb-md-57 {
    padding-bottom: 57px !important;
  }
  .pl-md-57 {
    padding-left: 57px !important;
  }
  .pr-md-57 {
    padding-right: 57px !important;
  }
  .py-md-57 {
    padding-top: 57px !important;
    padding-bottom: 57px !important;
  }
  .px-md-57 {
    padding-left: 57px !important;
    padding-right: 57px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-57 {
    margin: 57px !important;
  }
  .mt-lg-57 {
    margin-top: 57px !important;
  }
  .mb-lg-57 {
    margin-bottom: 57px !important;
  }
  .ml-lg-57 {
    margin-left: 57px !important;
  }
  .mr-lg-57 {
    margin-right: 57px !important;
  }
  .my-lg-57 {
    margin-top: 57px !important;
    margin-bottom: 57px !important;
  }
  .mx-lg-57 {
    margin-left: 57px !important;
    margin-right: 57px !important;
  }
  .p-lg-57 {
    padding: 57px !important;
  }
  .pt-lg-57 {
    padding-top: 57px !important;
  }
  .pb-lg-57 {
    padding-bottom: 57px !important;
  }
  .pl-lg-57 {
    padding-left: 57px !important;
  }
  .pr-lg-57 {
    padding-right: 57px !important;
  }
  .py-lg-57 {
    padding-top: 57px !important;
    padding-bottom: 57px !important;
  }
  .px-lg-57 {
    padding-left: 57px !important;
    padding-right: 57px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-57 {
    margin: 57px !important;
  }
  .mt-xl-57 {
    margin-top: 57px !important;
  }
  .mb-xl-57 {
    margin-bottom: 57px !important;
  }
  .ml-xl-57 {
    margin-left: 57px !important;
  }
  .mr-xl-57 {
    margin-right: 57px !important;
  }
  .my-xl-57 {
    margin-top: 57px !important;
    margin-bottom: 57px !important;
  }
  .mx-xl-57 {
    margin-left: 57px !important;
    margin-right: 57px !important;
  }
  .p-xl-57 {
    padding: 57px !important;
  }
  .pt-xl-57 {
    padding-top: 57px !important;
  }
  .pb-xl-57 {
    padding-bottom: 57px !important;
  }
  .pl-xl-57 {
    padding-left: 57px !important;
  }
  .pr-xl-57 {
    padding-right: 57px !important;
  }
  .py-xl-57 {
    padding-top: 57px !important;
    padding-bottom: 57px !important;
  }
  .px-xl-57 {
    padding-left: 57px !important;
    padding-right: 57px !important;
  }
}
.m-57 {
  margin: 57px !important;
}

.mt-57 {
  margin-top: 57px !important;
}

.mb-57 {
  margin-bottom: 57px !important;
}

.ml-57 {
  margin-left: 57px !important;
}

.mr-57 {
  margin-right: 57px !important;
}

.my-57 {
  margin-top: 57px !important;
  margin-bottom: 57px !important;
}

.mx-57 {
  margin-left: 57px !important;
  margin-right: 57px !important;
}

.p-57 {
  padding: 57px !important;
}

.pt-57 {
  padding-top: 57px !important;
}

.pb-57 {
  padding-bottom: 57px !important;
}

.pl-57 {
  padding-left: 57px !important;
}

.pr-57 {
  padding-right: 57px !important;
}

.py-57 {
  padding-top: 57px !important;
  padding-bottom: 57px !important;
}

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

@media (max-width: 576px) {
  .m-sm-58 {
    margin: 58px !important;
  }
  .mt-sm-58 {
    margin-top: 58px !important;
  }
  .mb-sm-58 {
    margin-bottom: 58px !important;
  }
  .ml-sm-58 {
    margin-left: 58px !important;
  }
  .mr-sm-58 {
    margin-right: 58px !important;
  }
  .my-sm-58 {
    margin-top: 58px !important;
    margin-bottom: 58px !important;
  }
  .mx-sm-58 {
    margin-left: 58px !important;
    margin-right: 58px !important;
  }
  .p-sm-58 {
    padding: 58px !important;
  }
  .pt-sm-58 {
    padding-top: 58px !important;
  }
  .pb-sm-58 {
    padding-bottom: 58px !important;
  }
  .pl-sm-58 {
    padding-left: 58px !important;
  }
  .pr-sm-58 {
    padding-right: 58px !important;
  }
  .py-sm-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }
  .px-sm-58 {
    padding-left: 58px !important;
    padding-right: 58px !important;
  }
}
@media (max-width: 768px) {
  .m-md-58 {
    margin: 58px !important;
  }
  .mt-md-58 {
    margin-top: 58px !important;
  }
  .mb-md-58 {
    margin-bottom: 58px !important;
  }
  .ml-md-58 {
    margin-left: 58px !important;
  }
  .mr-md-58 {
    margin-right: 58px !important;
  }
  .my-md-58 {
    margin-top: 58px !important;
    margin-bottom: 58px !important;
  }
  .mx-md-58 {
    margin-left: 58px !important;
    margin-right: 58px !important;
  }
  .p-md-58 {
    padding: 58px !important;
  }
  .pt-md-58 {
    padding-top: 58px !important;
  }
  .pb-md-58 {
    padding-bottom: 58px !important;
  }
  .pl-md-58 {
    padding-left: 58px !important;
  }
  .pr-md-58 {
    padding-right: 58px !important;
  }
  .py-md-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }
  .px-md-58 {
    padding-left: 58px !important;
    padding-right: 58px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-58 {
    margin: 58px !important;
  }
  .mt-lg-58 {
    margin-top: 58px !important;
  }
  .mb-lg-58 {
    margin-bottom: 58px !important;
  }
  .ml-lg-58 {
    margin-left: 58px !important;
  }
  .mr-lg-58 {
    margin-right: 58px !important;
  }
  .my-lg-58 {
    margin-top: 58px !important;
    margin-bottom: 58px !important;
  }
  .mx-lg-58 {
    margin-left: 58px !important;
    margin-right: 58px !important;
  }
  .p-lg-58 {
    padding: 58px !important;
  }
  .pt-lg-58 {
    padding-top: 58px !important;
  }
  .pb-lg-58 {
    padding-bottom: 58px !important;
  }
  .pl-lg-58 {
    padding-left: 58px !important;
  }
  .pr-lg-58 {
    padding-right: 58px !important;
  }
  .py-lg-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }
  .px-lg-58 {
    padding-left: 58px !important;
    padding-right: 58px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-58 {
    margin: 58px !important;
  }
  .mt-xl-58 {
    margin-top: 58px !important;
  }
  .mb-xl-58 {
    margin-bottom: 58px !important;
  }
  .ml-xl-58 {
    margin-left: 58px !important;
  }
  .mr-xl-58 {
    margin-right: 58px !important;
  }
  .my-xl-58 {
    margin-top: 58px !important;
    margin-bottom: 58px !important;
  }
  .mx-xl-58 {
    margin-left: 58px !important;
    margin-right: 58px !important;
  }
  .p-xl-58 {
    padding: 58px !important;
  }
  .pt-xl-58 {
    padding-top: 58px !important;
  }
  .pb-xl-58 {
    padding-bottom: 58px !important;
  }
  .pl-xl-58 {
    padding-left: 58px !important;
  }
  .pr-xl-58 {
    padding-right: 58px !important;
  }
  .py-xl-58 {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }
  .px-xl-58 {
    padding-left: 58px !important;
    padding-right: 58px !important;
  }
}
.m-58 {
  margin: 58px !important;
}

.mt-58 {
  margin-top: 58px !important;
}

.mb-58 {
  margin-bottom: 58px !important;
}

.ml-58 {
  margin-left: 58px !important;
}

.mr-58 {
  margin-right: 58px !important;
}

.my-58 {
  margin-top: 58px !important;
  margin-bottom: 58px !important;
}

.mx-58 {
  margin-left: 58px !important;
  margin-right: 58px !important;
}

.p-58 {
  padding: 58px !important;
}

.pt-58 {
  padding-top: 58px !important;
}

.pb-58 {
  padding-bottom: 58px !important;
}

.pl-58 {
  padding-left: 58px !important;
}

.pr-58 {
  padding-right: 58px !important;
}

.py-58 {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

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

@media (max-width: 576px) {
  .m-sm-59 {
    margin: 59px !important;
  }
  .mt-sm-59 {
    margin-top: 59px !important;
  }
  .mb-sm-59 {
    margin-bottom: 59px !important;
  }
  .ml-sm-59 {
    margin-left: 59px !important;
  }
  .mr-sm-59 {
    margin-right: 59px !important;
  }
  .my-sm-59 {
    margin-top: 59px !important;
    margin-bottom: 59px !important;
  }
  .mx-sm-59 {
    margin-left: 59px !important;
    margin-right: 59px !important;
  }
  .p-sm-59 {
    padding: 59px !important;
  }
  .pt-sm-59 {
    padding-top: 59px !important;
  }
  .pb-sm-59 {
    padding-bottom: 59px !important;
  }
  .pl-sm-59 {
    padding-left: 59px !important;
  }
  .pr-sm-59 {
    padding-right: 59px !important;
  }
  .py-sm-59 {
    padding-top: 59px !important;
    padding-bottom: 59px !important;
  }
  .px-sm-59 {
    padding-left: 59px !important;
    padding-right: 59px !important;
  }
}
@media (max-width: 768px) {
  .m-md-59 {
    margin: 59px !important;
  }
  .mt-md-59 {
    margin-top: 59px !important;
  }
  .mb-md-59 {
    margin-bottom: 59px !important;
  }
  .ml-md-59 {
    margin-left: 59px !important;
  }
  .mr-md-59 {
    margin-right: 59px !important;
  }
  .my-md-59 {
    margin-top: 59px !important;
    margin-bottom: 59px !important;
  }
  .mx-md-59 {
    margin-left: 59px !important;
    margin-right: 59px !important;
  }
  .p-md-59 {
    padding: 59px !important;
  }
  .pt-md-59 {
    padding-top: 59px !important;
  }
  .pb-md-59 {
    padding-bottom: 59px !important;
  }
  .pl-md-59 {
    padding-left: 59px !important;
  }
  .pr-md-59 {
    padding-right: 59px !important;
  }
  .py-md-59 {
    padding-top: 59px !important;
    padding-bottom: 59px !important;
  }
  .px-md-59 {
    padding-left: 59px !important;
    padding-right: 59px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-59 {
    margin: 59px !important;
  }
  .mt-lg-59 {
    margin-top: 59px !important;
  }
  .mb-lg-59 {
    margin-bottom: 59px !important;
  }
  .ml-lg-59 {
    margin-left: 59px !important;
  }
  .mr-lg-59 {
    margin-right: 59px !important;
  }
  .my-lg-59 {
    margin-top: 59px !important;
    margin-bottom: 59px !important;
  }
  .mx-lg-59 {
    margin-left: 59px !important;
    margin-right: 59px !important;
  }
  .p-lg-59 {
    padding: 59px !important;
  }
  .pt-lg-59 {
    padding-top: 59px !important;
  }
  .pb-lg-59 {
    padding-bottom: 59px !important;
  }
  .pl-lg-59 {
    padding-left: 59px !important;
  }
  .pr-lg-59 {
    padding-right: 59px !important;
  }
  .py-lg-59 {
    padding-top: 59px !important;
    padding-bottom: 59px !important;
  }
  .px-lg-59 {
    padding-left: 59px !important;
    padding-right: 59px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-59 {
    margin: 59px !important;
  }
  .mt-xl-59 {
    margin-top: 59px !important;
  }
  .mb-xl-59 {
    margin-bottom: 59px !important;
  }
  .ml-xl-59 {
    margin-left: 59px !important;
  }
  .mr-xl-59 {
    margin-right: 59px !important;
  }
  .my-xl-59 {
    margin-top: 59px !important;
    margin-bottom: 59px !important;
  }
  .mx-xl-59 {
    margin-left: 59px !important;
    margin-right: 59px !important;
  }
  .p-xl-59 {
    padding: 59px !important;
  }
  .pt-xl-59 {
    padding-top: 59px !important;
  }
  .pb-xl-59 {
    padding-bottom: 59px !important;
  }
  .pl-xl-59 {
    padding-left: 59px !important;
  }
  .pr-xl-59 {
    padding-right: 59px !important;
  }
  .py-xl-59 {
    padding-top: 59px !important;
    padding-bottom: 59px !important;
  }
  .px-xl-59 {
    padding-left: 59px !important;
    padding-right: 59px !important;
  }
}
.m-59 {
  margin: 59px !important;
}

.mt-59 {
  margin-top: 59px !important;
}

.mb-59 {
  margin-bottom: 59px !important;
}

.ml-59 {
  margin-left: 59px !important;
}

.mr-59 {
  margin-right: 59px !important;
}

.my-59 {
  margin-top: 59px !important;
  margin-bottom: 59px !important;
}

.mx-59 {
  margin-left: 59px !important;
  margin-right: 59px !important;
}

.p-59 {
  padding: 59px !important;
}

.pt-59 {
  padding-top: 59px !important;
}

.pb-59 {
  padding-bottom: 59px !important;
}

.pl-59 {
  padding-left: 59px !important;
}

.pr-59 {
  padding-right: 59px !important;
}

.py-59 {
  padding-top: 59px !important;
  padding-bottom: 59px !important;
}

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

@media (max-width: 576px) {
  .m-sm-60 {
    margin: 60px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .ml-sm-60 {
    margin-left: 60px !important;
  }
  .mr-sm-60 {
    margin-right: 60px !important;
  }
  .my-sm-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mx-sm-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .p-sm-60 {
    padding: 60px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .pl-sm-60 {
    padding-left: 60px !important;
  }
  .pr-sm-60 {
    padding-right: 60px !important;
  }
  .py-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-sm-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .m-md-60 {
    margin: 60px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .ml-md-60 {
    margin-left: 60px !important;
  }
  .mr-md-60 {
    margin-right: 60px !important;
  }
  .my-md-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mx-md-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .p-md-60 {
    padding: 60px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .pl-md-60 {
    padding-left: 60px !important;
  }
  .pr-md-60 {
    padding-right: 60px !important;
  }
  .py-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-md-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-60 {
    margin: 60px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .ml-lg-60 {
    margin-left: 60px !important;
  }
  .mr-lg-60 {
    margin-right: 60px !important;
  }
  .my-lg-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mx-lg-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .p-lg-60 {
    padding: 60px !important;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .pb-lg-60 {
    padding-bottom: 60px !important;
  }
  .pl-lg-60 {
    padding-left: 60px !important;
  }
  .pr-lg-60 {
    padding-right: 60px !important;
  }
  .py-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-lg-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-60 {
    margin: 60px !important;
  }
  .mt-xl-60 {
    margin-top: 60px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .ml-xl-60 {
    margin-left: 60px !important;
  }
  .mr-xl-60 {
    margin-right: 60px !important;
  }
  .my-xl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mx-xl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .p-xl-60 {
    padding: 60px !important;
  }
  .pt-xl-60 {
    padding-top: 60px !important;
  }
  .pb-xl-60 {
    padding-bottom: 60px !important;
  }
  .pl-xl-60 {
    padding-left: 60px !important;
  }
  .pr-xl-60 {
    padding-right: 60px !important;
  }
  .py-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-xl-60 {
    padding-left: 60px !important;
    padding-right: 60px !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;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !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;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

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

@media (max-width: 576px) {
  .m-sm-61 {
    margin: 61px !important;
  }
  .mt-sm-61 {
    margin-top: 61px !important;
  }
  .mb-sm-61 {
    margin-bottom: 61px !important;
  }
  .ml-sm-61 {
    margin-left: 61px !important;
  }
  .mr-sm-61 {
    margin-right: 61px !important;
  }
  .my-sm-61 {
    margin-top: 61px !important;
    margin-bottom: 61px !important;
  }
  .mx-sm-61 {
    margin-left: 61px !important;
    margin-right: 61px !important;
  }
  .p-sm-61 {
    padding: 61px !important;
  }
  .pt-sm-61 {
    padding-top: 61px !important;
  }
  .pb-sm-61 {
    padding-bottom: 61px !important;
  }
  .pl-sm-61 {
    padding-left: 61px !important;
  }
  .pr-sm-61 {
    padding-right: 61px !important;
  }
  .py-sm-61 {
    padding-top: 61px !important;
    padding-bottom: 61px !important;
  }
  .px-sm-61 {
    padding-left: 61px !important;
    padding-right: 61px !important;
  }
}
@media (max-width: 768px) {
  .m-md-61 {
    margin: 61px !important;
  }
  .mt-md-61 {
    margin-top: 61px !important;
  }
  .mb-md-61 {
    margin-bottom: 61px !important;
  }
  .ml-md-61 {
    margin-left: 61px !important;
  }
  .mr-md-61 {
    margin-right: 61px !important;
  }
  .my-md-61 {
    margin-top: 61px !important;
    margin-bottom: 61px !important;
  }
  .mx-md-61 {
    margin-left: 61px !important;
    margin-right: 61px !important;
  }
  .p-md-61 {
    padding: 61px !important;
  }
  .pt-md-61 {
    padding-top: 61px !important;
  }
  .pb-md-61 {
    padding-bottom: 61px !important;
  }
  .pl-md-61 {
    padding-left: 61px !important;
  }
  .pr-md-61 {
    padding-right: 61px !important;
  }
  .py-md-61 {
    padding-top: 61px !important;
    padding-bottom: 61px !important;
  }
  .px-md-61 {
    padding-left: 61px !important;
    padding-right: 61px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-61 {
    margin: 61px !important;
  }
  .mt-lg-61 {
    margin-top: 61px !important;
  }
  .mb-lg-61 {
    margin-bottom: 61px !important;
  }
  .ml-lg-61 {
    margin-left: 61px !important;
  }
  .mr-lg-61 {
    margin-right: 61px !important;
  }
  .my-lg-61 {
    margin-top: 61px !important;
    margin-bottom: 61px !important;
  }
  .mx-lg-61 {
    margin-left: 61px !important;
    margin-right: 61px !important;
  }
  .p-lg-61 {
    padding: 61px !important;
  }
  .pt-lg-61 {
    padding-top: 61px !important;
  }
  .pb-lg-61 {
    padding-bottom: 61px !important;
  }
  .pl-lg-61 {
    padding-left: 61px !important;
  }
  .pr-lg-61 {
    padding-right: 61px !important;
  }
  .py-lg-61 {
    padding-top: 61px !important;
    padding-bottom: 61px !important;
  }
  .px-lg-61 {
    padding-left: 61px !important;
    padding-right: 61px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-61 {
    margin: 61px !important;
  }
  .mt-xl-61 {
    margin-top: 61px !important;
  }
  .mb-xl-61 {
    margin-bottom: 61px !important;
  }
  .ml-xl-61 {
    margin-left: 61px !important;
  }
  .mr-xl-61 {
    margin-right: 61px !important;
  }
  .my-xl-61 {
    margin-top: 61px !important;
    margin-bottom: 61px !important;
  }
  .mx-xl-61 {
    margin-left: 61px !important;
    margin-right: 61px !important;
  }
  .p-xl-61 {
    padding: 61px !important;
  }
  .pt-xl-61 {
    padding-top: 61px !important;
  }
  .pb-xl-61 {
    padding-bottom: 61px !important;
  }
  .pl-xl-61 {
    padding-left: 61px !important;
  }
  .pr-xl-61 {
    padding-right: 61px !important;
  }
  .py-xl-61 {
    padding-top: 61px !important;
    padding-bottom: 61px !important;
  }
  .px-xl-61 {
    padding-left: 61px !important;
    padding-right: 61px !important;
  }
}
.m-61 {
  margin: 61px !important;
}

.mt-61 {
  margin-top: 61px !important;
}

.mb-61 {
  margin-bottom: 61px !important;
}

.ml-61 {
  margin-left: 61px !important;
}

.mr-61 {
  margin-right: 61px !important;
}

.my-61 {
  margin-top: 61px !important;
  margin-bottom: 61px !important;
}

.mx-61 {
  margin-left: 61px !important;
  margin-right: 61px !important;
}

.p-61 {
  padding: 61px !important;
}

.pt-61 {
  padding-top: 61px !important;
}

.pb-61 {
  padding-bottom: 61px !important;
}

.pl-61 {
  padding-left: 61px !important;
}

.pr-61 {
  padding-right: 61px !important;
}

.py-61 {
  padding-top: 61px !important;
  padding-bottom: 61px !important;
}

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

@media (max-width: 576px) {
  .m-sm-62 {
    margin: 62px !important;
  }
  .mt-sm-62 {
    margin-top: 62px !important;
  }
  .mb-sm-62 {
    margin-bottom: 62px !important;
  }
  .ml-sm-62 {
    margin-left: 62px !important;
  }
  .mr-sm-62 {
    margin-right: 62px !important;
  }
  .my-sm-62 {
    margin-top: 62px !important;
    margin-bottom: 62px !important;
  }
  .mx-sm-62 {
    margin-left: 62px !important;
    margin-right: 62px !important;
  }
  .p-sm-62 {
    padding: 62px !important;
  }
  .pt-sm-62 {
    padding-top: 62px !important;
  }
  .pb-sm-62 {
    padding-bottom: 62px !important;
  }
  .pl-sm-62 {
    padding-left: 62px !important;
  }
  .pr-sm-62 {
    padding-right: 62px !important;
  }
  .py-sm-62 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }
  .px-sm-62 {
    padding-left: 62px !important;
    padding-right: 62px !important;
  }
}
@media (max-width: 768px) {
  .m-md-62 {
    margin: 62px !important;
  }
  .mt-md-62 {
    margin-top: 62px !important;
  }
  .mb-md-62 {
    margin-bottom: 62px !important;
  }
  .ml-md-62 {
    margin-left: 62px !important;
  }
  .mr-md-62 {
    margin-right: 62px !important;
  }
  .my-md-62 {
    margin-top: 62px !important;
    margin-bottom: 62px !important;
  }
  .mx-md-62 {
    margin-left: 62px !important;
    margin-right: 62px !important;
  }
  .p-md-62 {
    padding: 62px !important;
  }
  .pt-md-62 {
    padding-top: 62px !important;
  }
  .pb-md-62 {
    padding-bottom: 62px !important;
  }
  .pl-md-62 {
    padding-left: 62px !important;
  }
  .pr-md-62 {
    padding-right: 62px !important;
  }
  .py-md-62 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }
  .px-md-62 {
    padding-left: 62px !important;
    padding-right: 62px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-62 {
    margin: 62px !important;
  }
  .mt-lg-62 {
    margin-top: 62px !important;
  }
  .mb-lg-62 {
    margin-bottom: 62px !important;
  }
  .ml-lg-62 {
    margin-left: 62px !important;
  }
  .mr-lg-62 {
    margin-right: 62px !important;
  }
  .my-lg-62 {
    margin-top: 62px !important;
    margin-bottom: 62px !important;
  }
  .mx-lg-62 {
    margin-left: 62px !important;
    margin-right: 62px !important;
  }
  .p-lg-62 {
    padding: 62px !important;
  }
  .pt-lg-62 {
    padding-top: 62px !important;
  }
  .pb-lg-62 {
    padding-bottom: 62px !important;
  }
  .pl-lg-62 {
    padding-left: 62px !important;
  }
  .pr-lg-62 {
    padding-right: 62px !important;
  }
  .py-lg-62 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }
  .px-lg-62 {
    padding-left: 62px !important;
    padding-right: 62px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-62 {
    margin: 62px !important;
  }
  .mt-xl-62 {
    margin-top: 62px !important;
  }
  .mb-xl-62 {
    margin-bottom: 62px !important;
  }
  .ml-xl-62 {
    margin-left: 62px !important;
  }
  .mr-xl-62 {
    margin-right: 62px !important;
  }
  .my-xl-62 {
    margin-top: 62px !important;
    margin-bottom: 62px !important;
  }
  .mx-xl-62 {
    margin-left: 62px !important;
    margin-right: 62px !important;
  }
  .p-xl-62 {
    padding: 62px !important;
  }
  .pt-xl-62 {
    padding-top: 62px !important;
  }
  .pb-xl-62 {
    padding-bottom: 62px !important;
  }
  .pl-xl-62 {
    padding-left: 62px !important;
  }
  .pr-xl-62 {
    padding-right: 62px !important;
  }
  .py-xl-62 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }
  .px-xl-62 {
    padding-left: 62px !important;
    padding-right: 62px !important;
  }
}
.m-62 {
  margin: 62px !important;
}

.mt-62 {
  margin-top: 62px !important;
}

.mb-62 {
  margin-bottom: 62px !important;
}

.ml-62 {
  margin-left: 62px !important;
}

.mr-62 {
  margin-right: 62px !important;
}

.my-62 {
  margin-top: 62px !important;
  margin-bottom: 62px !important;
}

.mx-62 {
  margin-left: 62px !important;
  margin-right: 62px !important;
}

.p-62 {
  padding: 62px !important;
}

.pt-62 {
  padding-top: 62px !important;
}

.pb-62 {
  padding-bottom: 62px !important;
}

.pl-62 {
  padding-left: 62px !important;
}

.pr-62 {
  padding-right: 62px !important;
}

.py-62 {
  padding-top: 62px !important;
  padding-bottom: 62px !important;
}

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

@media (max-width: 576px) {
  .m-sm-63 {
    margin: 63px !important;
  }
  .mt-sm-63 {
    margin-top: 63px !important;
  }
  .mb-sm-63 {
    margin-bottom: 63px !important;
  }
  .ml-sm-63 {
    margin-left: 63px !important;
  }
  .mr-sm-63 {
    margin-right: 63px !important;
  }
  .my-sm-63 {
    margin-top: 63px !important;
    margin-bottom: 63px !important;
  }
  .mx-sm-63 {
    margin-left: 63px !important;
    margin-right: 63px !important;
  }
  .p-sm-63 {
    padding: 63px !important;
  }
  .pt-sm-63 {
    padding-top: 63px !important;
  }
  .pb-sm-63 {
    padding-bottom: 63px !important;
  }
  .pl-sm-63 {
    padding-left: 63px !important;
  }
  .pr-sm-63 {
    padding-right: 63px !important;
  }
  .py-sm-63 {
    padding-top: 63px !important;
    padding-bottom: 63px !important;
  }
  .px-sm-63 {
    padding-left: 63px !important;
    padding-right: 63px !important;
  }
}
@media (max-width: 768px) {
  .m-md-63 {
    margin: 63px !important;
  }
  .mt-md-63 {
    margin-top: 63px !important;
  }
  .mb-md-63 {
    margin-bottom: 63px !important;
  }
  .ml-md-63 {
    margin-left: 63px !important;
  }
  .mr-md-63 {
    margin-right: 63px !important;
  }
  .my-md-63 {
    margin-top: 63px !important;
    margin-bottom: 63px !important;
  }
  .mx-md-63 {
    margin-left: 63px !important;
    margin-right: 63px !important;
  }
  .p-md-63 {
    padding: 63px !important;
  }
  .pt-md-63 {
    padding-top: 63px !important;
  }
  .pb-md-63 {
    padding-bottom: 63px !important;
  }
  .pl-md-63 {
    padding-left: 63px !important;
  }
  .pr-md-63 {
    padding-right: 63px !important;
  }
  .py-md-63 {
    padding-top: 63px !important;
    padding-bottom: 63px !important;
  }
  .px-md-63 {
    padding-left: 63px !important;
    padding-right: 63px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-63 {
    margin: 63px !important;
  }
  .mt-lg-63 {
    margin-top: 63px !important;
  }
  .mb-lg-63 {
    margin-bottom: 63px !important;
  }
  .ml-lg-63 {
    margin-left: 63px !important;
  }
  .mr-lg-63 {
    margin-right: 63px !important;
  }
  .my-lg-63 {
    margin-top: 63px !important;
    margin-bottom: 63px !important;
  }
  .mx-lg-63 {
    margin-left: 63px !important;
    margin-right: 63px !important;
  }
  .p-lg-63 {
    padding: 63px !important;
  }
  .pt-lg-63 {
    padding-top: 63px !important;
  }
  .pb-lg-63 {
    padding-bottom: 63px !important;
  }
  .pl-lg-63 {
    padding-left: 63px !important;
  }
  .pr-lg-63 {
    padding-right: 63px !important;
  }
  .py-lg-63 {
    padding-top: 63px !important;
    padding-bottom: 63px !important;
  }
  .px-lg-63 {
    padding-left: 63px !important;
    padding-right: 63px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-63 {
    margin: 63px !important;
  }
  .mt-xl-63 {
    margin-top: 63px !important;
  }
  .mb-xl-63 {
    margin-bottom: 63px !important;
  }
  .ml-xl-63 {
    margin-left: 63px !important;
  }
  .mr-xl-63 {
    margin-right: 63px !important;
  }
  .my-xl-63 {
    margin-top: 63px !important;
    margin-bottom: 63px !important;
  }
  .mx-xl-63 {
    margin-left: 63px !important;
    margin-right: 63px !important;
  }
  .p-xl-63 {
    padding: 63px !important;
  }
  .pt-xl-63 {
    padding-top: 63px !important;
  }
  .pb-xl-63 {
    padding-bottom: 63px !important;
  }
  .pl-xl-63 {
    padding-left: 63px !important;
  }
  .pr-xl-63 {
    padding-right: 63px !important;
  }
  .py-xl-63 {
    padding-top: 63px !important;
    padding-bottom: 63px !important;
  }
  .px-xl-63 {
    padding-left: 63px !important;
    padding-right: 63px !important;
  }
}
.m-63 {
  margin: 63px !important;
}

.mt-63 {
  margin-top: 63px !important;
}

.mb-63 {
  margin-bottom: 63px !important;
}

.ml-63 {
  margin-left: 63px !important;
}

.mr-63 {
  margin-right: 63px !important;
}

.my-63 {
  margin-top: 63px !important;
  margin-bottom: 63px !important;
}

.mx-63 {
  margin-left: 63px !important;
  margin-right: 63px !important;
}

.p-63 {
  padding: 63px !important;
}

.pt-63 {
  padding-top: 63px !important;
}

.pb-63 {
  padding-bottom: 63px !important;
}

.pl-63 {
  padding-left: 63px !important;
}

.pr-63 {
  padding-right: 63px !important;
}

.py-63 {
  padding-top: 63px !important;
  padding-bottom: 63px !important;
}

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

@media (max-width: 576px) {
  .m-sm-64 {
    margin: 64px !important;
  }
  .mt-sm-64 {
    margin-top: 64px !important;
  }
  .mb-sm-64 {
    margin-bottom: 64px !important;
  }
  .ml-sm-64 {
    margin-left: 64px !important;
  }
  .mr-sm-64 {
    margin-right: 64px !important;
  }
  .my-sm-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .mx-sm-64 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .p-sm-64 {
    padding: 64px !important;
  }
  .pt-sm-64 {
    padding-top: 64px !important;
  }
  .pb-sm-64 {
    padding-bottom: 64px !important;
  }
  .pl-sm-64 {
    padding-left: 64px !important;
  }
  .pr-sm-64 {
    padding-right: 64px !important;
  }
  .py-sm-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .px-sm-64 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}
@media (max-width: 768px) {
  .m-md-64 {
    margin: 64px !important;
  }
  .mt-md-64 {
    margin-top: 64px !important;
  }
  .mb-md-64 {
    margin-bottom: 64px !important;
  }
  .ml-md-64 {
    margin-left: 64px !important;
  }
  .mr-md-64 {
    margin-right: 64px !important;
  }
  .my-md-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .mx-md-64 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .p-md-64 {
    padding: 64px !important;
  }
  .pt-md-64 {
    padding-top: 64px !important;
  }
  .pb-md-64 {
    padding-bottom: 64px !important;
  }
  .pl-md-64 {
    padding-left: 64px !important;
  }
  .pr-md-64 {
    padding-right: 64px !important;
  }
  .py-md-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .px-md-64 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-64 {
    margin: 64px !important;
  }
  .mt-lg-64 {
    margin-top: 64px !important;
  }
  .mb-lg-64 {
    margin-bottom: 64px !important;
  }
  .ml-lg-64 {
    margin-left: 64px !important;
  }
  .mr-lg-64 {
    margin-right: 64px !important;
  }
  .my-lg-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .mx-lg-64 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .p-lg-64 {
    padding: 64px !important;
  }
  .pt-lg-64 {
    padding-top: 64px !important;
  }
  .pb-lg-64 {
    padding-bottom: 64px !important;
  }
  .pl-lg-64 {
    padding-left: 64px !important;
  }
  .pr-lg-64 {
    padding-right: 64px !important;
  }
  .py-lg-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .px-lg-64 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-64 {
    margin: 64px !important;
  }
  .mt-xl-64 {
    margin-top: 64px !important;
  }
  .mb-xl-64 {
    margin-bottom: 64px !important;
  }
  .ml-xl-64 {
    margin-left: 64px !important;
  }
  .mr-xl-64 {
    margin-right: 64px !important;
  }
  .my-xl-64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .mx-xl-64 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .p-xl-64 {
    padding: 64px !important;
  }
  .pt-xl-64 {
    padding-top: 64px !important;
  }
  .pb-xl-64 {
    padding-bottom: 64px !important;
  }
  .pl-xl-64 {
    padding-left: 64px !important;
  }
  .pr-xl-64 {
    padding-right: 64px !important;
  }
  .py-xl-64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .px-xl-64 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}
.m-64 {
  margin: 64px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.my-64 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.mx-64 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.p-64 {
  padding: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.py-64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

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

@media (max-width: 576px) {
  .m-sm-65 {
    margin: 65px !important;
  }
  .mt-sm-65 {
    margin-top: 65px !important;
  }
  .mb-sm-65 {
    margin-bottom: 65px !important;
  }
  .ml-sm-65 {
    margin-left: 65px !important;
  }
  .mr-sm-65 {
    margin-right: 65px !important;
  }
  .my-sm-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mx-sm-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .p-sm-65 {
    padding: 65px !important;
  }
  .pt-sm-65 {
    padding-top: 65px !important;
  }
  .pb-sm-65 {
    padding-bottom: 65px !important;
  }
  .pl-sm-65 {
    padding-left: 65px !important;
  }
  .pr-sm-65 {
    padding-right: 65px !important;
  }
  .py-sm-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .px-sm-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
}
@media (max-width: 768px) {
  .m-md-65 {
    margin: 65px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .ml-md-65 {
    margin-left: 65px !important;
  }
  .mr-md-65 {
    margin-right: 65px !important;
  }
  .my-md-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mx-md-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .p-md-65 {
    padding: 65px !important;
  }
  .pt-md-65 {
    padding-top: 65px !important;
  }
  .pb-md-65 {
    padding-bottom: 65px !important;
  }
  .pl-md-65 {
    padding-left: 65px !important;
  }
  .pr-md-65 {
    padding-right: 65px !important;
  }
  .py-md-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .px-md-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-65 {
    margin: 65px !important;
  }
  .mt-lg-65 {
    margin-top: 65px !important;
  }
  .mb-lg-65 {
    margin-bottom: 65px !important;
  }
  .ml-lg-65 {
    margin-left: 65px !important;
  }
  .mr-lg-65 {
    margin-right: 65px !important;
  }
  .my-lg-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mx-lg-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .p-lg-65 {
    padding: 65px !important;
  }
  .pt-lg-65 {
    padding-top: 65px !important;
  }
  .pb-lg-65 {
    padding-bottom: 65px !important;
  }
  .pl-lg-65 {
    padding-left: 65px !important;
  }
  .pr-lg-65 {
    padding-right: 65px !important;
  }
  .py-lg-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .px-lg-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-65 {
    margin: 65px !important;
  }
  .mt-xl-65 {
    margin-top: 65px !important;
  }
  .mb-xl-65 {
    margin-bottom: 65px !important;
  }
  .ml-xl-65 {
    margin-left: 65px !important;
  }
  .mr-xl-65 {
    margin-right: 65px !important;
  }
  .my-xl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mx-xl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .p-xl-65 {
    padding: 65px !important;
  }
  .pt-xl-65 {
    padding-top: 65px !important;
  }
  .pb-xl-65 {
    padding-bottom: 65px !important;
  }
  .pl-xl-65 {
    padding-left: 65px !important;
  }
  .pr-xl-65 {
    padding-right: 65px !important;
  }
  .py-xl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .px-xl-65 {
    padding-left: 65px !important;
    padding-right: 65px !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;
}

.my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

.mx-65 {
  margin-left: 65px !important;
  margin-right: 65px !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;
}

.py-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

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

@media (max-width: 576px) {
  .m-sm-66 {
    margin: 66px !important;
  }
  .mt-sm-66 {
    margin-top: 66px !important;
  }
  .mb-sm-66 {
    margin-bottom: 66px !important;
  }
  .ml-sm-66 {
    margin-left: 66px !important;
  }
  .mr-sm-66 {
    margin-right: 66px !important;
  }
  .my-sm-66 {
    margin-top: 66px !important;
    margin-bottom: 66px !important;
  }
  .mx-sm-66 {
    margin-left: 66px !important;
    margin-right: 66px !important;
  }
  .p-sm-66 {
    padding: 66px !important;
  }
  .pt-sm-66 {
    padding-top: 66px !important;
  }
  .pb-sm-66 {
    padding-bottom: 66px !important;
  }
  .pl-sm-66 {
    padding-left: 66px !important;
  }
  .pr-sm-66 {
    padding-right: 66px !important;
  }
  .py-sm-66 {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }
  .px-sm-66 {
    padding-left: 66px !important;
    padding-right: 66px !important;
  }
}
@media (max-width: 768px) {
  .m-md-66 {
    margin: 66px !important;
  }
  .mt-md-66 {
    margin-top: 66px !important;
  }
  .mb-md-66 {
    margin-bottom: 66px !important;
  }
  .ml-md-66 {
    margin-left: 66px !important;
  }
  .mr-md-66 {
    margin-right: 66px !important;
  }
  .my-md-66 {
    margin-top: 66px !important;
    margin-bottom: 66px !important;
  }
  .mx-md-66 {
    margin-left: 66px !important;
    margin-right: 66px !important;
  }
  .p-md-66 {
    padding: 66px !important;
  }
  .pt-md-66 {
    padding-top: 66px !important;
  }
  .pb-md-66 {
    padding-bottom: 66px !important;
  }
  .pl-md-66 {
    padding-left: 66px !important;
  }
  .pr-md-66 {
    padding-right: 66px !important;
  }
  .py-md-66 {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }
  .px-md-66 {
    padding-left: 66px !important;
    padding-right: 66px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-66 {
    margin: 66px !important;
  }
  .mt-lg-66 {
    margin-top: 66px !important;
  }
  .mb-lg-66 {
    margin-bottom: 66px !important;
  }
  .ml-lg-66 {
    margin-left: 66px !important;
  }
  .mr-lg-66 {
    margin-right: 66px !important;
  }
  .my-lg-66 {
    margin-top: 66px !important;
    margin-bottom: 66px !important;
  }
  .mx-lg-66 {
    margin-left: 66px !important;
    margin-right: 66px !important;
  }
  .p-lg-66 {
    padding: 66px !important;
  }
  .pt-lg-66 {
    padding-top: 66px !important;
  }
  .pb-lg-66 {
    padding-bottom: 66px !important;
  }
  .pl-lg-66 {
    padding-left: 66px !important;
  }
  .pr-lg-66 {
    padding-right: 66px !important;
  }
  .py-lg-66 {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }
  .px-lg-66 {
    padding-left: 66px !important;
    padding-right: 66px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-66 {
    margin: 66px !important;
  }
  .mt-xl-66 {
    margin-top: 66px !important;
  }
  .mb-xl-66 {
    margin-bottom: 66px !important;
  }
  .ml-xl-66 {
    margin-left: 66px !important;
  }
  .mr-xl-66 {
    margin-right: 66px !important;
  }
  .my-xl-66 {
    margin-top: 66px !important;
    margin-bottom: 66px !important;
  }
  .mx-xl-66 {
    margin-left: 66px !important;
    margin-right: 66px !important;
  }
  .p-xl-66 {
    padding: 66px !important;
  }
  .pt-xl-66 {
    padding-top: 66px !important;
  }
  .pb-xl-66 {
    padding-bottom: 66px !important;
  }
  .pl-xl-66 {
    padding-left: 66px !important;
  }
  .pr-xl-66 {
    padding-right: 66px !important;
  }
  .py-xl-66 {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }
  .px-xl-66 {
    padding-left: 66px !important;
    padding-right: 66px !important;
  }
}
.m-66 {
  margin: 66px !important;
}

.mt-66 {
  margin-top: 66px !important;
}

.mb-66 {
  margin-bottom: 66px !important;
}

.ml-66 {
  margin-left: 66px !important;
}

.mr-66 {
  margin-right: 66px !important;
}

.my-66 {
  margin-top: 66px !important;
  margin-bottom: 66px !important;
}

.mx-66 {
  margin-left: 66px !important;
  margin-right: 66px !important;
}

.p-66 {
  padding: 66px !important;
}

.pt-66 {
  padding-top: 66px !important;
}

.pb-66 {
  padding-bottom: 66px !important;
}

.pl-66 {
  padding-left: 66px !important;
}

.pr-66 {
  padding-right: 66px !important;
}

.py-66 {
  padding-top: 66px !important;
  padding-bottom: 66px !important;
}

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

@media (max-width: 576px) {
  .m-sm-67 {
    margin: 67px !important;
  }
  .mt-sm-67 {
    margin-top: 67px !important;
  }
  .mb-sm-67 {
    margin-bottom: 67px !important;
  }
  .ml-sm-67 {
    margin-left: 67px !important;
  }
  .mr-sm-67 {
    margin-right: 67px !important;
  }
  .my-sm-67 {
    margin-top: 67px !important;
    margin-bottom: 67px !important;
  }
  .mx-sm-67 {
    margin-left: 67px !important;
    margin-right: 67px !important;
  }
  .p-sm-67 {
    padding: 67px !important;
  }
  .pt-sm-67 {
    padding-top: 67px !important;
  }
  .pb-sm-67 {
    padding-bottom: 67px !important;
  }
  .pl-sm-67 {
    padding-left: 67px !important;
  }
  .pr-sm-67 {
    padding-right: 67px !important;
  }
  .py-sm-67 {
    padding-top: 67px !important;
    padding-bottom: 67px !important;
  }
  .px-sm-67 {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}
@media (max-width: 768px) {
  .m-md-67 {
    margin: 67px !important;
  }
  .mt-md-67 {
    margin-top: 67px !important;
  }
  .mb-md-67 {
    margin-bottom: 67px !important;
  }
  .ml-md-67 {
    margin-left: 67px !important;
  }
  .mr-md-67 {
    margin-right: 67px !important;
  }
  .my-md-67 {
    margin-top: 67px !important;
    margin-bottom: 67px !important;
  }
  .mx-md-67 {
    margin-left: 67px !important;
    margin-right: 67px !important;
  }
  .p-md-67 {
    padding: 67px !important;
  }
  .pt-md-67 {
    padding-top: 67px !important;
  }
  .pb-md-67 {
    padding-bottom: 67px !important;
  }
  .pl-md-67 {
    padding-left: 67px !important;
  }
  .pr-md-67 {
    padding-right: 67px !important;
  }
  .py-md-67 {
    padding-top: 67px !important;
    padding-bottom: 67px !important;
  }
  .px-md-67 {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-67 {
    margin: 67px !important;
  }
  .mt-lg-67 {
    margin-top: 67px !important;
  }
  .mb-lg-67 {
    margin-bottom: 67px !important;
  }
  .ml-lg-67 {
    margin-left: 67px !important;
  }
  .mr-lg-67 {
    margin-right: 67px !important;
  }
  .my-lg-67 {
    margin-top: 67px !important;
    margin-bottom: 67px !important;
  }
  .mx-lg-67 {
    margin-left: 67px !important;
    margin-right: 67px !important;
  }
  .p-lg-67 {
    padding: 67px !important;
  }
  .pt-lg-67 {
    padding-top: 67px !important;
  }
  .pb-lg-67 {
    padding-bottom: 67px !important;
  }
  .pl-lg-67 {
    padding-left: 67px !important;
  }
  .pr-lg-67 {
    padding-right: 67px !important;
  }
  .py-lg-67 {
    padding-top: 67px !important;
    padding-bottom: 67px !important;
  }
  .px-lg-67 {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-67 {
    margin: 67px !important;
  }
  .mt-xl-67 {
    margin-top: 67px !important;
  }
  .mb-xl-67 {
    margin-bottom: 67px !important;
  }
  .ml-xl-67 {
    margin-left: 67px !important;
  }
  .mr-xl-67 {
    margin-right: 67px !important;
  }
  .my-xl-67 {
    margin-top: 67px !important;
    margin-bottom: 67px !important;
  }
  .mx-xl-67 {
    margin-left: 67px !important;
    margin-right: 67px !important;
  }
  .p-xl-67 {
    padding: 67px !important;
  }
  .pt-xl-67 {
    padding-top: 67px !important;
  }
  .pb-xl-67 {
    padding-bottom: 67px !important;
  }
  .pl-xl-67 {
    padding-left: 67px !important;
  }
  .pr-xl-67 {
    padding-right: 67px !important;
  }
  .py-xl-67 {
    padding-top: 67px !important;
    padding-bottom: 67px !important;
  }
  .px-xl-67 {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}
.m-67 {
  margin: 67px !important;
}

.mt-67 {
  margin-top: 67px !important;
}

.mb-67 {
  margin-bottom: 67px !important;
}

.ml-67 {
  margin-left: 67px !important;
}

.mr-67 {
  margin-right: 67px !important;
}

.my-67 {
  margin-top: 67px !important;
  margin-bottom: 67px !important;
}

.mx-67 {
  margin-left: 67px !important;
  margin-right: 67px !important;
}

.p-67 {
  padding: 67px !important;
}

.pt-67 {
  padding-top: 67px !important;
}

.pb-67 {
  padding-bottom: 67px !important;
}

.pl-67 {
  padding-left: 67px !important;
}

.pr-67 {
  padding-right: 67px !important;
}

.py-67 {
  padding-top: 67px !important;
  padding-bottom: 67px !important;
}

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

@media (max-width: 576px) {
  .m-sm-68 {
    margin: 68px !important;
  }
  .mt-sm-68 {
    margin-top: 68px !important;
  }
  .mb-sm-68 {
    margin-bottom: 68px !important;
  }
  .ml-sm-68 {
    margin-left: 68px !important;
  }
  .mr-sm-68 {
    margin-right: 68px !important;
  }
  .my-sm-68 {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .mx-sm-68 {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .p-sm-68 {
    padding: 68px !important;
  }
  .pt-sm-68 {
    padding-top: 68px !important;
  }
  .pb-sm-68 {
    padding-bottom: 68px !important;
  }
  .pl-sm-68 {
    padding-left: 68px !important;
  }
  .pr-sm-68 {
    padding-right: 68px !important;
  }
  .py-sm-68 {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .px-sm-68 {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
}
@media (max-width: 768px) {
  .m-md-68 {
    margin: 68px !important;
  }
  .mt-md-68 {
    margin-top: 68px !important;
  }
  .mb-md-68 {
    margin-bottom: 68px !important;
  }
  .ml-md-68 {
    margin-left: 68px !important;
  }
  .mr-md-68 {
    margin-right: 68px !important;
  }
  .my-md-68 {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .mx-md-68 {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .p-md-68 {
    padding: 68px !important;
  }
  .pt-md-68 {
    padding-top: 68px !important;
  }
  .pb-md-68 {
    padding-bottom: 68px !important;
  }
  .pl-md-68 {
    padding-left: 68px !important;
  }
  .pr-md-68 {
    padding-right: 68px !important;
  }
  .py-md-68 {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .px-md-68 {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-68 {
    margin: 68px !important;
  }
  .mt-lg-68 {
    margin-top: 68px !important;
  }
  .mb-lg-68 {
    margin-bottom: 68px !important;
  }
  .ml-lg-68 {
    margin-left: 68px !important;
  }
  .mr-lg-68 {
    margin-right: 68px !important;
  }
  .my-lg-68 {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .mx-lg-68 {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .p-lg-68 {
    padding: 68px !important;
  }
  .pt-lg-68 {
    padding-top: 68px !important;
  }
  .pb-lg-68 {
    padding-bottom: 68px !important;
  }
  .pl-lg-68 {
    padding-left: 68px !important;
  }
  .pr-lg-68 {
    padding-right: 68px !important;
  }
  .py-lg-68 {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .px-lg-68 {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-68 {
    margin: 68px !important;
  }
  .mt-xl-68 {
    margin-top: 68px !important;
  }
  .mb-xl-68 {
    margin-bottom: 68px !important;
  }
  .ml-xl-68 {
    margin-left: 68px !important;
  }
  .mr-xl-68 {
    margin-right: 68px !important;
  }
  .my-xl-68 {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .mx-xl-68 {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .p-xl-68 {
    padding: 68px !important;
  }
  .pt-xl-68 {
    padding-top: 68px !important;
  }
  .pb-xl-68 {
    padding-bottom: 68px !important;
  }
  .pl-xl-68 {
    padding-left: 68px !important;
  }
  .pr-xl-68 {
    padding-right: 68px !important;
  }
  .py-xl-68 {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .px-xl-68 {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
}
.m-68 {
  margin: 68px !important;
}

.mt-68 {
  margin-top: 68px !important;
}

.mb-68 {
  margin-bottom: 68px !important;
}

.ml-68 {
  margin-left: 68px !important;
}

.mr-68 {
  margin-right: 68px !important;
}

.my-68 {
  margin-top: 68px !important;
  margin-bottom: 68px !important;
}

.mx-68 {
  margin-left: 68px !important;
  margin-right: 68px !important;
}

.p-68 {
  padding: 68px !important;
}

.pt-68 {
  padding-top: 68px !important;
}

.pb-68 {
  padding-bottom: 68px !important;
}

.pl-68 {
  padding-left: 68px !important;
}

.pr-68 {
  padding-right: 68px !important;
}

.py-68 {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

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

@media (max-width: 576px) {
  .m-sm-69 {
    margin: 69px !important;
  }
  .mt-sm-69 {
    margin-top: 69px !important;
  }
  .mb-sm-69 {
    margin-bottom: 69px !important;
  }
  .ml-sm-69 {
    margin-left: 69px !important;
  }
  .mr-sm-69 {
    margin-right: 69px !important;
  }
  .my-sm-69 {
    margin-top: 69px !important;
    margin-bottom: 69px !important;
  }
  .mx-sm-69 {
    margin-left: 69px !important;
    margin-right: 69px !important;
  }
  .p-sm-69 {
    padding: 69px !important;
  }
  .pt-sm-69 {
    padding-top: 69px !important;
  }
  .pb-sm-69 {
    padding-bottom: 69px !important;
  }
  .pl-sm-69 {
    padding-left: 69px !important;
  }
  .pr-sm-69 {
    padding-right: 69px !important;
  }
  .py-sm-69 {
    padding-top: 69px !important;
    padding-bottom: 69px !important;
  }
  .px-sm-69 {
    padding-left: 69px !important;
    padding-right: 69px !important;
  }
}
@media (max-width: 768px) {
  .m-md-69 {
    margin: 69px !important;
  }
  .mt-md-69 {
    margin-top: 69px !important;
  }
  .mb-md-69 {
    margin-bottom: 69px !important;
  }
  .ml-md-69 {
    margin-left: 69px !important;
  }
  .mr-md-69 {
    margin-right: 69px !important;
  }
  .my-md-69 {
    margin-top: 69px !important;
    margin-bottom: 69px !important;
  }
  .mx-md-69 {
    margin-left: 69px !important;
    margin-right: 69px !important;
  }
  .p-md-69 {
    padding: 69px !important;
  }
  .pt-md-69 {
    padding-top: 69px !important;
  }
  .pb-md-69 {
    padding-bottom: 69px !important;
  }
  .pl-md-69 {
    padding-left: 69px !important;
  }
  .pr-md-69 {
    padding-right: 69px !important;
  }
  .py-md-69 {
    padding-top: 69px !important;
    padding-bottom: 69px !important;
  }
  .px-md-69 {
    padding-left: 69px !important;
    padding-right: 69px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-69 {
    margin: 69px !important;
  }
  .mt-lg-69 {
    margin-top: 69px !important;
  }
  .mb-lg-69 {
    margin-bottom: 69px !important;
  }
  .ml-lg-69 {
    margin-left: 69px !important;
  }
  .mr-lg-69 {
    margin-right: 69px !important;
  }
  .my-lg-69 {
    margin-top: 69px !important;
    margin-bottom: 69px !important;
  }
  .mx-lg-69 {
    margin-left: 69px !important;
    margin-right: 69px !important;
  }
  .p-lg-69 {
    padding: 69px !important;
  }
  .pt-lg-69 {
    padding-top: 69px !important;
  }
  .pb-lg-69 {
    padding-bottom: 69px !important;
  }
  .pl-lg-69 {
    padding-left: 69px !important;
  }
  .pr-lg-69 {
    padding-right: 69px !important;
  }
  .py-lg-69 {
    padding-top: 69px !important;
    padding-bottom: 69px !important;
  }
  .px-lg-69 {
    padding-left: 69px !important;
    padding-right: 69px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-69 {
    margin: 69px !important;
  }
  .mt-xl-69 {
    margin-top: 69px !important;
  }
  .mb-xl-69 {
    margin-bottom: 69px !important;
  }
  .ml-xl-69 {
    margin-left: 69px !important;
  }
  .mr-xl-69 {
    margin-right: 69px !important;
  }
  .my-xl-69 {
    margin-top: 69px !important;
    margin-bottom: 69px !important;
  }
  .mx-xl-69 {
    margin-left: 69px !important;
    margin-right: 69px !important;
  }
  .p-xl-69 {
    padding: 69px !important;
  }
  .pt-xl-69 {
    padding-top: 69px !important;
  }
  .pb-xl-69 {
    padding-bottom: 69px !important;
  }
  .pl-xl-69 {
    padding-left: 69px !important;
  }
  .pr-xl-69 {
    padding-right: 69px !important;
  }
  .py-xl-69 {
    padding-top: 69px !important;
    padding-bottom: 69px !important;
  }
  .px-xl-69 {
    padding-left: 69px !important;
    padding-right: 69px !important;
  }
}
.m-69 {
  margin: 69px !important;
}

.mt-69 {
  margin-top: 69px !important;
}

.mb-69 {
  margin-bottom: 69px !important;
}

.ml-69 {
  margin-left: 69px !important;
}

.mr-69 {
  margin-right: 69px !important;
}

.my-69 {
  margin-top: 69px !important;
  margin-bottom: 69px !important;
}

.mx-69 {
  margin-left: 69px !important;
  margin-right: 69px !important;
}

.p-69 {
  padding: 69px !important;
}

.pt-69 {
  padding-top: 69px !important;
}

.pb-69 {
  padding-bottom: 69px !important;
}

.pl-69 {
  padding-left: 69px !important;
}

.pr-69 {
  padding-right: 69px !important;
}

.py-69 {
  padding-top: 69px !important;
  padding-bottom: 69px !important;
}

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

@media (max-width: 576px) {
  .m-sm-70 {
    margin: 70px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .ml-sm-70 {
    margin-left: 70px !important;
  }
  .mr-sm-70 {
    margin-right: 70px !important;
  }
  .my-sm-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mx-sm-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .p-sm-70 {
    padding: 70px !important;
  }
  .pt-sm-70 {
    padding-top: 70px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .pl-sm-70 {
    padding-left: 70px !important;
  }
  .pr-sm-70 {
    padding-right: 70px !important;
  }
  .py-sm-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .px-sm-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
}
@media (max-width: 768px) {
  .m-md-70 {
    margin: 70px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .ml-md-70 {
    margin-left: 70px !important;
  }
  .mr-md-70 {
    margin-right: 70px !important;
  }
  .my-md-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mx-md-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .p-md-70 {
    padding: 70px !important;
  }
  .pt-md-70 {
    padding-top: 70px !important;
  }
  .pb-md-70 {
    padding-bottom: 70px !important;
  }
  .pl-md-70 {
    padding-left: 70px !important;
  }
  .pr-md-70 {
    padding-right: 70px !important;
  }
  .py-md-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .px-md-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-70 {
    margin: 70px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .ml-lg-70 {
    margin-left: 70px !important;
  }
  .mr-lg-70 {
    margin-right: 70px !important;
  }
  .my-lg-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mx-lg-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .p-lg-70 {
    padding: 70px !important;
  }
  .pt-lg-70 {
    padding-top: 70px !important;
  }
  .pb-lg-70 {
    padding-bottom: 70px !important;
  }
  .pl-lg-70 {
    padding-left: 70px !important;
  }
  .pr-lg-70 {
    padding-right: 70px !important;
  }
  .py-lg-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .px-lg-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-70 {
    margin: 70px !important;
  }
  .mt-xl-70 {
    margin-top: 70px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .ml-xl-70 {
    margin-left: 70px !important;
  }
  .mr-xl-70 {
    margin-right: 70px !important;
  }
  .my-xl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mx-xl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .p-xl-70 {
    padding: 70px !important;
  }
  .pt-xl-70 {
    padding-top: 70px !important;
  }
  .pb-xl-70 {
    padding-bottom: 70px !important;
  }
  .pl-xl-70 {
    padding-left: 70px !important;
  }
  .pr-xl-70 {
    padding-right: 70px !important;
  }
  .py-xl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .px-xl-70 {
    padding-left: 70px !important;
    padding-right: 70px !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;
}

.my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.mx-70 {
  margin-left: 70px !important;
  margin-right: 70px !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;
}

.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

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

@media (max-width: 576px) {
  .m-sm-71 {
    margin: 71px !important;
  }
  .mt-sm-71 {
    margin-top: 71px !important;
  }
  .mb-sm-71 {
    margin-bottom: 71px !important;
  }
  .ml-sm-71 {
    margin-left: 71px !important;
  }
  .mr-sm-71 {
    margin-right: 71px !important;
  }
  .my-sm-71 {
    margin-top: 71px !important;
    margin-bottom: 71px !important;
  }
  .mx-sm-71 {
    margin-left: 71px !important;
    margin-right: 71px !important;
  }
  .p-sm-71 {
    padding: 71px !important;
  }
  .pt-sm-71 {
    padding-top: 71px !important;
  }
  .pb-sm-71 {
    padding-bottom: 71px !important;
  }
  .pl-sm-71 {
    padding-left: 71px !important;
  }
  .pr-sm-71 {
    padding-right: 71px !important;
  }
  .py-sm-71 {
    padding-top: 71px !important;
    padding-bottom: 71px !important;
  }
  .px-sm-71 {
    padding-left: 71px !important;
    padding-right: 71px !important;
  }
}
@media (max-width: 768px) {
  .m-md-71 {
    margin: 71px !important;
  }
  .mt-md-71 {
    margin-top: 71px !important;
  }
  .mb-md-71 {
    margin-bottom: 71px !important;
  }
  .ml-md-71 {
    margin-left: 71px !important;
  }
  .mr-md-71 {
    margin-right: 71px !important;
  }
  .my-md-71 {
    margin-top: 71px !important;
    margin-bottom: 71px !important;
  }
  .mx-md-71 {
    margin-left: 71px !important;
    margin-right: 71px !important;
  }
  .p-md-71 {
    padding: 71px !important;
  }
  .pt-md-71 {
    padding-top: 71px !important;
  }
  .pb-md-71 {
    padding-bottom: 71px !important;
  }
  .pl-md-71 {
    padding-left: 71px !important;
  }
  .pr-md-71 {
    padding-right: 71px !important;
  }
  .py-md-71 {
    padding-top: 71px !important;
    padding-bottom: 71px !important;
  }
  .px-md-71 {
    padding-left: 71px !important;
    padding-right: 71px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-71 {
    margin: 71px !important;
  }
  .mt-lg-71 {
    margin-top: 71px !important;
  }
  .mb-lg-71 {
    margin-bottom: 71px !important;
  }
  .ml-lg-71 {
    margin-left: 71px !important;
  }
  .mr-lg-71 {
    margin-right: 71px !important;
  }
  .my-lg-71 {
    margin-top: 71px !important;
    margin-bottom: 71px !important;
  }
  .mx-lg-71 {
    margin-left: 71px !important;
    margin-right: 71px !important;
  }
  .p-lg-71 {
    padding: 71px !important;
  }
  .pt-lg-71 {
    padding-top: 71px !important;
  }
  .pb-lg-71 {
    padding-bottom: 71px !important;
  }
  .pl-lg-71 {
    padding-left: 71px !important;
  }
  .pr-lg-71 {
    padding-right: 71px !important;
  }
  .py-lg-71 {
    padding-top: 71px !important;
    padding-bottom: 71px !important;
  }
  .px-lg-71 {
    padding-left: 71px !important;
    padding-right: 71px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-71 {
    margin: 71px !important;
  }
  .mt-xl-71 {
    margin-top: 71px !important;
  }
  .mb-xl-71 {
    margin-bottom: 71px !important;
  }
  .ml-xl-71 {
    margin-left: 71px !important;
  }
  .mr-xl-71 {
    margin-right: 71px !important;
  }
  .my-xl-71 {
    margin-top: 71px !important;
    margin-bottom: 71px !important;
  }
  .mx-xl-71 {
    margin-left: 71px !important;
    margin-right: 71px !important;
  }
  .p-xl-71 {
    padding: 71px !important;
  }
  .pt-xl-71 {
    padding-top: 71px !important;
  }
  .pb-xl-71 {
    padding-bottom: 71px !important;
  }
  .pl-xl-71 {
    padding-left: 71px !important;
  }
  .pr-xl-71 {
    padding-right: 71px !important;
  }
  .py-xl-71 {
    padding-top: 71px !important;
    padding-bottom: 71px !important;
  }
  .px-xl-71 {
    padding-left: 71px !important;
    padding-right: 71px !important;
  }
}
.m-71 {
  margin: 71px !important;
}

.mt-71 {
  margin-top: 71px !important;
}

.mb-71 {
  margin-bottom: 71px !important;
}

.ml-71 {
  margin-left: 71px !important;
}

.mr-71 {
  margin-right: 71px !important;
}

.my-71 {
  margin-top: 71px !important;
  margin-bottom: 71px !important;
}

.mx-71 {
  margin-left: 71px !important;
  margin-right: 71px !important;
}

.p-71 {
  padding: 71px !important;
}

.pt-71 {
  padding-top: 71px !important;
}

.pb-71 {
  padding-bottom: 71px !important;
}

.pl-71 {
  padding-left: 71px !important;
}

.pr-71 {
  padding-right: 71px !important;
}

.py-71 {
  padding-top: 71px !important;
  padding-bottom: 71px !important;
}

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

@media (max-width: 576px) {
  .m-sm-72 {
    margin: 72px !important;
  }
  .mt-sm-72 {
    margin-top: 72px !important;
  }
  .mb-sm-72 {
    margin-bottom: 72px !important;
  }
  .ml-sm-72 {
    margin-left: 72px !important;
  }
  .mr-sm-72 {
    margin-right: 72px !important;
  }
  .my-sm-72 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .mx-sm-72 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .p-sm-72 {
    padding: 72px !important;
  }
  .pt-sm-72 {
    padding-top: 72px !important;
  }
  .pb-sm-72 {
    padding-bottom: 72px !important;
  }
  .pl-sm-72 {
    padding-left: 72px !important;
  }
  .pr-sm-72 {
    padding-right: 72px !important;
  }
  .py-sm-72 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .px-sm-72 {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
}
@media (max-width: 768px) {
  .m-md-72 {
    margin: 72px !important;
  }
  .mt-md-72 {
    margin-top: 72px !important;
  }
  .mb-md-72 {
    margin-bottom: 72px !important;
  }
  .ml-md-72 {
    margin-left: 72px !important;
  }
  .mr-md-72 {
    margin-right: 72px !important;
  }
  .my-md-72 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .mx-md-72 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .p-md-72 {
    padding: 72px !important;
  }
  .pt-md-72 {
    padding-top: 72px !important;
  }
  .pb-md-72 {
    padding-bottom: 72px !important;
  }
  .pl-md-72 {
    padding-left: 72px !important;
  }
  .pr-md-72 {
    padding-right: 72px !important;
  }
  .py-md-72 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .px-md-72 {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-72 {
    margin: 72px !important;
  }
  .mt-lg-72 {
    margin-top: 72px !important;
  }
  .mb-lg-72 {
    margin-bottom: 72px !important;
  }
  .ml-lg-72 {
    margin-left: 72px !important;
  }
  .mr-lg-72 {
    margin-right: 72px !important;
  }
  .my-lg-72 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .mx-lg-72 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .p-lg-72 {
    padding: 72px !important;
  }
  .pt-lg-72 {
    padding-top: 72px !important;
  }
  .pb-lg-72 {
    padding-bottom: 72px !important;
  }
  .pl-lg-72 {
    padding-left: 72px !important;
  }
  .pr-lg-72 {
    padding-right: 72px !important;
  }
  .py-lg-72 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .px-lg-72 {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-72 {
    margin: 72px !important;
  }
  .mt-xl-72 {
    margin-top: 72px !important;
  }
  .mb-xl-72 {
    margin-bottom: 72px !important;
  }
  .ml-xl-72 {
    margin-left: 72px !important;
  }
  .mr-xl-72 {
    margin-right: 72px !important;
  }
  .my-xl-72 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .mx-xl-72 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .p-xl-72 {
    padding: 72px !important;
  }
  .pt-xl-72 {
    padding-top: 72px !important;
  }
  .pb-xl-72 {
    padding-bottom: 72px !important;
  }
  .pl-xl-72 {
    padding-left: 72px !important;
  }
  .pr-xl-72 {
    padding-right: 72px !important;
  }
  .py-xl-72 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .px-xl-72 {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
}
.m-72 {
  margin: 72px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.mr-72 {
  margin-right: 72px !important;
}

.my-72 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}

.mx-72 {
  margin-left: 72px !important;
  margin-right: 72px !important;
}

.p-72 {
  padding: 72px !important;
}

.pt-72 {
  padding-top: 72px !important;
}

.pb-72 {
  padding-bottom: 72px !important;
}

.pl-72 {
  padding-left: 72px !important;
}

.pr-72 {
  padding-right: 72px !important;
}

.py-72 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

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

@media (max-width: 576px) {
  .m-sm-73 {
    margin: 73px !important;
  }
  .mt-sm-73 {
    margin-top: 73px !important;
  }
  .mb-sm-73 {
    margin-bottom: 73px !important;
  }
  .ml-sm-73 {
    margin-left: 73px !important;
  }
  .mr-sm-73 {
    margin-right: 73px !important;
  }
  .my-sm-73 {
    margin-top: 73px !important;
    margin-bottom: 73px !important;
  }
  .mx-sm-73 {
    margin-left: 73px !important;
    margin-right: 73px !important;
  }
  .p-sm-73 {
    padding: 73px !important;
  }
  .pt-sm-73 {
    padding-top: 73px !important;
  }
  .pb-sm-73 {
    padding-bottom: 73px !important;
  }
  .pl-sm-73 {
    padding-left: 73px !important;
  }
  .pr-sm-73 {
    padding-right: 73px !important;
  }
  .py-sm-73 {
    padding-top: 73px !important;
    padding-bottom: 73px !important;
  }
  .px-sm-73 {
    padding-left: 73px !important;
    padding-right: 73px !important;
  }
}
@media (max-width: 768px) {
  .m-md-73 {
    margin: 73px !important;
  }
  .mt-md-73 {
    margin-top: 73px !important;
  }
  .mb-md-73 {
    margin-bottom: 73px !important;
  }
  .ml-md-73 {
    margin-left: 73px !important;
  }
  .mr-md-73 {
    margin-right: 73px !important;
  }
  .my-md-73 {
    margin-top: 73px !important;
    margin-bottom: 73px !important;
  }
  .mx-md-73 {
    margin-left: 73px !important;
    margin-right: 73px !important;
  }
  .p-md-73 {
    padding: 73px !important;
  }
  .pt-md-73 {
    padding-top: 73px !important;
  }
  .pb-md-73 {
    padding-bottom: 73px !important;
  }
  .pl-md-73 {
    padding-left: 73px !important;
  }
  .pr-md-73 {
    padding-right: 73px !important;
  }
  .py-md-73 {
    padding-top: 73px !important;
    padding-bottom: 73px !important;
  }
  .px-md-73 {
    padding-left: 73px !important;
    padding-right: 73px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-73 {
    margin: 73px !important;
  }
  .mt-lg-73 {
    margin-top: 73px !important;
  }
  .mb-lg-73 {
    margin-bottom: 73px !important;
  }
  .ml-lg-73 {
    margin-left: 73px !important;
  }
  .mr-lg-73 {
    margin-right: 73px !important;
  }
  .my-lg-73 {
    margin-top: 73px !important;
    margin-bottom: 73px !important;
  }
  .mx-lg-73 {
    margin-left: 73px !important;
    margin-right: 73px !important;
  }
  .p-lg-73 {
    padding: 73px !important;
  }
  .pt-lg-73 {
    padding-top: 73px !important;
  }
  .pb-lg-73 {
    padding-bottom: 73px !important;
  }
  .pl-lg-73 {
    padding-left: 73px !important;
  }
  .pr-lg-73 {
    padding-right: 73px !important;
  }
  .py-lg-73 {
    padding-top: 73px !important;
    padding-bottom: 73px !important;
  }
  .px-lg-73 {
    padding-left: 73px !important;
    padding-right: 73px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-73 {
    margin: 73px !important;
  }
  .mt-xl-73 {
    margin-top: 73px !important;
  }
  .mb-xl-73 {
    margin-bottom: 73px !important;
  }
  .ml-xl-73 {
    margin-left: 73px !important;
  }
  .mr-xl-73 {
    margin-right: 73px !important;
  }
  .my-xl-73 {
    margin-top: 73px !important;
    margin-bottom: 73px !important;
  }
  .mx-xl-73 {
    margin-left: 73px !important;
    margin-right: 73px !important;
  }
  .p-xl-73 {
    padding: 73px !important;
  }
  .pt-xl-73 {
    padding-top: 73px !important;
  }
  .pb-xl-73 {
    padding-bottom: 73px !important;
  }
  .pl-xl-73 {
    padding-left: 73px !important;
  }
  .pr-xl-73 {
    padding-right: 73px !important;
  }
  .py-xl-73 {
    padding-top: 73px !important;
    padding-bottom: 73px !important;
  }
  .px-xl-73 {
    padding-left: 73px !important;
    padding-right: 73px !important;
  }
}
.m-73 {
  margin: 73px !important;
}

.mt-73 {
  margin-top: 73px !important;
}

.mb-73 {
  margin-bottom: 73px !important;
}

.ml-73 {
  margin-left: 73px !important;
}

.mr-73 {
  margin-right: 73px !important;
}

.my-73 {
  margin-top: 73px !important;
  margin-bottom: 73px !important;
}

.mx-73 {
  margin-left: 73px !important;
  margin-right: 73px !important;
}

.p-73 {
  padding: 73px !important;
}

.pt-73 {
  padding-top: 73px !important;
}

.pb-73 {
  padding-bottom: 73px !important;
}

.pl-73 {
  padding-left: 73px !important;
}

.pr-73 {
  padding-right: 73px !important;
}

.py-73 {
  padding-top: 73px !important;
  padding-bottom: 73px !important;
}

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

@media (max-width: 576px) {
  .m-sm-74 {
    margin: 74px !important;
  }
  .mt-sm-74 {
    margin-top: 74px !important;
  }
  .mb-sm-74 {
    margin-bottom: 74px !important;
  }
  .ml-sm-74 {
    margin-left: 74px !important;
  }
  .mr-sm-74 {
    margin-right: 74px !important;
  }
  .my-sm-74 {
    margin-top: 74px !important;
    margin-bottom: 74px !important;
  }
  .mx-sm-74 {
    margin-left: 74px !important;
    margin-right: 74px !important;
  }
  .p-sm-74 {
    padding: 74px !important;
  }
  .pt-sm-74 {
    padding-top: 74px !important;
  }
  .pb-sm-74 {
    padding-bottom: 74px !important;
  }
  .pl-sm-74 {
    padding-left: 74px !important;
  }
  .pr-sm-74 {
    padding-right: 74px !important;
  }
  .py-sm-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }
  .px-sm-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }
}
@media (max-width: 768px) {
  .m-md-74 {
    margin: 74px !important;
  }
  .mt-md-74 {
    margin-top: 74px !important;
  }
  .mb-md-74 {
    margin-bottom: 74px !important;
  }
  .ml-md-74 {
    margin-left: 74px !important;
  }
  .mr-md-74 {
    margin-right: 74px !important;
  }
  .my-md-74 {
    margin-top: 74px !important;
    margin-bottom: 74px !important;
  }
  .mx-md-74 {
    margin-left: 74px !important;
    margin-right: 74px !important;
  }
  .p-md-74 {
    padding: 74px !important;
  }
  .pt-md-74 {
    padding-top: 74px !important;
  }
  .pb-md-74 {
    padding-bottom: 74px !important;
  }
  .pl-md-74 {
    padding-left: 74px !important;
  }
  .pr-md-74 {
    padding-right: 74px !important;
  }
  .py-md-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }
  .px-md-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-74 {
    margin: 74px !important;
  }
  .mt-lg-74 {
    margin-top: 74px !important;
  }
  .mb-lg-74 {
    margin-bottom: 74px !important;
  }
  .ml-lg-74 {
    margin-left: 74px !important;
  }
  .mr-lg-74 {
    margin-right: 74px !important;
  }
  .my-lg-74 {
    margin-top: 74px !important;
    margin-bottom: 74px !important;
  }
  .mx-lg-74 {
    margin-left: 74px !important;
    margin-right: 74px !important;
  }
  .p-lg-74 {
    padding: 74px !important;
  }
  .pt-lg-74 {
    padding-top: 74px !important;
  }
  .pb-lg-74 {
    padding-bottom: 74px !important;
  }
  .pl-lg-74 {
    padding-left: 74px !important;
  }
  .pr-lg-74 {
    padding-right: 74px !important;
  }
  .py-lg-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }
  .px-lg-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-74 {
    margin: 74px !important;
  }
  .mt-xl-74 {
    margin-top: 74px !important;
  }
  .mb-xl-74 {
    margin-bottom: 74px !important;
  }
  .ml-xl-74 {
    margin-left: 74px !important;
  }
  .mr-xl-74 {
    margin-right: 74px !important;
  }
  .my-xl-74 {
    margin-top: 74px !important;
    margin-bottom: 74px !important;
  }
  .mx-xl-74 {
    margin-left: 74px !important;
    margin-right: 74px !important;
  }
  .p-xl-74 {
    padding: 74px !important;
  }
  .pt-xl-74 {
    padding-top: 74px !important;
  }
  .pb-xl-74 {
    padding-bottom: 74px !important;
  }
  .pl-xl-74 {
    padding-left: 74px !important;
  }
  .pr-xl-74 {
    padding-right: 74px !important;
  }
  .py-xl-74 {
    padding-top: 74px !important;
    padding-bottom: 74px !important;
  }
  .px-xl-74 {
    padding-left: 74px !important;
    padding-right: 74px !important;
  }
}
.m-74 {
  margin: 74px !important;
}

.mt-74 {
  margin-top: 74px !important;
}

.mb-74 {
  margin-bottom: 74px !important;
}

.ml-74 {
  margin-left: 74px !important;
}

.mr-74 {
  margin-right: 74px !important;
}

.my-74 {
  margin-top: 74px !important;
  margin-bottom: 74px !important;
}

.mx-74 {
  margin-left: 74px !important;
  margin-right: 74px !important;
}

.p-74 {
  padding: 74px !important;
}

.pt-74 {
  padding-top: 74px !important;
}

.pb-74 {
  padding-bottom: 74px !important;
}

.pl-74 {
  padding-left: 74px !important;
}

.pr-74 {
  padding-right: 74px !important;
}

.py-74 {
  padding-top: 74px !important;
  padding-bottom: 74px !important;
}

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

@media (max-width: 576px) {
  .m-sm-75 {
    margin: 75px !important;
  }
  .mt-sm-75 {
    margin-top: 75px !important;
  }
  .mb-sm-75 {
    margin-bottom: 75px !important;
  }
  .ml-sm-75 {
    margin-left: 75px !important;
  }
  .mr-sm-75 {
    margin-right: 75px !important;
  }
  .my-sm-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mx-sm-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .p-sm-75 {
    padding: 75px !important;
  }
  .pt-sm-75 {
    padding-top: 75px !important;
  }
  .pb-sm-75 {
    padding-bottom: 75px !important;
  }
  .pl-sm-75 {
    padding-left: 75px !important;
  }
  .pr-sm-75 {
    padding-right: 75px !important;
  }
  .py-sm-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .px-sm-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
}
@media (max-width: 768px) {
  .m-md-75 {
    margin: 75px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .ml-md-75 {
    margin-left: 75px !important;
  }
  .mr-md-75 {
    margin-right: 75px !important;
  }
  .my-md-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mx-md-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .p-md-75 {
    padding: 75px !important;
  }
  .pt-md-75 {
    padding-top: 75px !important;
  }
  .pb-md-75 {
    padding-bottom: 75px !important;
  }
  .pl-md-75 {
    padding-left: 75px !important;
  }
  .pr-md-75 {
    padding-right: 75px !important;
  }
  .py-md-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .px-md-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-75 {
    margin: 75px !important;
  }
  .mt-lg-75 {
    margin-top: 75px !important;
  }
  .mb-lg-75 {
    margin-bottom: 75px !important;
  }
  .ml-lg-75 {
    margin-left: 75px !important;
  }
  .mr-lg-75 {
    margin-right: 75px !important;
  }
  .my-lg-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mx-lg-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .p-lg-75 {
    padding: 75px !important;
  }
  .pt-lg-75 {
    padding-top: 75px !important;
  }
  .pb-lg-75 {
    padding-bottom: 75px !important;
  }
  .pl-lg-75 {
    padding-left: 75px !important;
  }
  .pr-lg-75 {
    padding-right: 75px !important;
  }
  .py-lg-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .px-lg-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-75 {
    margin: 75px !important;
  }
  .mt-xl-75 {
    margin-top: 75px !important;
  }
  .mb-xl-75 {
    margin-bottom: 75px !important;
  }
  .ml-xl-75 {
    margin-left: 75px !important;
  }
  .mr-xl-75 {
    margin-right: 75px !important;
  }
  .my-xl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mx-xl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .p-xl-75 {
    padding: 75px !important;
  }
  .pt-xl-75 {
    padding-top: 75px !important;
  }
  .pb-xl-75 {
    padding-bottom: 75px !important;
  }
  .pl-xl-75 {
    padding-left: 75px !important;
  }
  .pr-xl-75 {
    padding-right: 75px !important;
  }
  .py-xl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .px-xl-75 {
    padding-left: 75px !important;
    padding-right: 75px !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;
}

.my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.mx-75 {
  margin-left: 75px !important;
  margin-right: 75px !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;
}

.py-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

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

@media (max-width: 576px) {
  .m-sm-76 {
    margin: 76px !important;
  }
  .mt-sm-76 {
    margin-top: 76px !important;
  }
  .mb-sm-76 {
    margin-bottom: 76px !important;
  }
  .ml-sm-76 {
    margin-left: 76px !important;
  }
  .mr-sm-76 {
    margin-right: 76px !important;
  }
  .my-sm-76 {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .mx-sm-76 {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .p-sm-76 {
    padding: 76px !important;
  }
  .pt-sm-76 {
    padding-top: 76px !important;
  }
  .pb-sm-76 {
    padding-bottom: 76px !important;
  }
  .pl-sm-76 {
    padding-left: 76px !important;
  }
  .pr-sm-76 {
    padding-right: 76px !important;
  }
  .py-sm-76 {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .px-sm-76 {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
}
@media (max-width: 768px) {
  .m-md-76 {
    margin: 76px !important;
  }
  .mt-md-76 {
    margin-top: 76px !important;
  }
  .mb-md-76 {
    margin-bottom: 76px !important;
  }
  .ml-md-76 {
    margin-left: 76px !important;
  }
  .mr-md-76 {
    margin-right: 76px !important;
  }
  .my-md-76 {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .mx-md-76 {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .p-md-76 {
    padding: 76px !important;
  }
  .pt-md-76 {
    padding-top: 76px !important;
  }
  .pb-md-76 {
    padding-bottom: 76px !important;
  }
  .pl-md-76 {
    padding-left: 76px !important;
  }
  .pr-md-76 {
    padding-right: 76px !important;
  }
  .py-md-76 {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .px-md-76 {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-76 {
    margin: 76px !important;
  }
  .mt-lg-76 {
    margin-top: 76px !important;
  }
  .mb-lg-76 {
    margin-bottom: 76px !important;
  }
  .ml-lg-76 {
    margin-left: 76px !important;
  }
  .mr-lg-76 {
    margin-right: 76px !important;
  }
  .my-lg-76 {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .mx-lg-76 {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .p-lg-76 {
    padding: 76px !important;
  }
  .pt-lg-76 {
    padding-top: 76px !important;
  }
  .pb-lg-76 {
    padding-bottom: 76px !important;
  }
  .pl-lg-76 {
    padding-left: 76px !important;
  }
  .pr-lg-76 {
    padding-right: 76px !important;
  }
  .py-lg-76 {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .px-lg-76 {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-76 {
    margin: 76px !important;
  }
  .mt-xl-76 {
    margin-top: 76px !important;
  }
  .mb-xl-76 {
    margin-bottom: 76px !important;
  }
  .ml-xl-76 {
    margin-left: 76px !important;
  }
  .mr-xl-76 {
    margin-right: 76px !important;
  }
  .my-xl-76 {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .mx-xl-76 {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .p-xl-76 {
    padding: 76px !important;
  }
  .pt-xl-76 {
    padding-top: 76px !important;
  }
  .pb-xl-76 {
    padding-bottom: 76px !important;
  }
  .pl-xl-76 {
    padding-left: 76px !important;
  }
  .pr-xl-76 {
    padding-right: 76px !important;
  }
  .py-xl-76 {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .px-xl-76 {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
}
.m-76 {
  margin: 76px !important;
}

.mt-76 {
  margin-top: 76px !important;
}

.mb-76 {
  margin-bottom: 76px !important;
}

.ml-76 {
  margin-left: 76px !important;
}

.mr-76 {
  margin-right: 76px !important;
}

.my-76 {
  margin-top: 76px !important;
  margin-bottom: 76px !important;
}

.mx-76 {
  margin-left: 76px !important;
  margin-right: 76px !important;
}

.p-76 {
  padding: 76px !important;
}

.pt-76 {
  padding-top: 76px !important;
}

.pb-76 {
  padding-bottom: 76px !important;
}

.pl-76 {
  padding-left: 76px !important;
}

.pr-76 {
  padding-right: 76px !important;
}

.py-76 {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

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

@media (max-width: 576px) {
  .m-sm-77 {
    margin: 77px !important;
  }
  .mt-sm-77 {
    margin-top: 77px !important;
  }
  .mb-sm-77 {
    margin-bottom: 77px !important;
  }
  .ml-sm-77 {
    margin-left: 77px !important;
  }
  .mr-sm-77 {
    margin-right: 77px !important;
  }
  .my-sm-77 {
    margin-top: 77px !important;
    margin-bottom: 77px !important;
  }
  .mx-sm-77 {
    margin-left: 77px !important;
    margin-right: 77px !important;
  }
  .p-sm-77 {
    padding: 77px !important;
  }
  .pt-sm-77 {
    padding-top: 77px !important;
  }
  .pb-sm-77 {
    padding-bottom: 77px !important;
  }
  .pl-sm-77 {
    padding-left: 77px !important;
  }
  .pr-sm-77 {
    padding-right: 77px !important;
  }
  .py-sm-77 {
    padding-top: 77px !important;
    padding-bottom: 77px !important;
  }
  .px-sm-77 {
    padding-left: 77px !important;
    padding-right: 77px !important;
  }
}
@media (max-width: 768px) {
  .m-md-77 {
    margin: 77px !important;
  }
  .mt-md-77 {
    margin-top: 77px !important;
  }
  .mb-md-77 {
    margin-bottom: 77px !important;
  }
  .ml-md-77 {
    margin-left: 77px !important;
  }
  .mr-md-77 {
    margin-right: 77px !important;
  }
  .my-md-77 {
    margin-top: 77px !important;
    margin-bottom: 77px !important;
  }
  .mx-md-77 {
    margin-left: 77px !important;
    margin-right: 77px !important;
  }
  .p-md-77 {
    padding: 77px !important;
  }
  .pt-md-77 {
    padding-top: 77px !important;
  }
  .pb-md-77 {
    padding-bottom: 77px !important;
  }
  .pl-md-77 {
    padding-left: 77px !important;
  }
  .pr-md-77 {
    padding-right: 77px !important;
  }
  .py-md-77 {
    padding-top: 77px !important;
    padding-bottom: 77px !important;
  }
  .px-md-77 {
    padding-left: 77px !important;
    padding-right: 77px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-77 {
    margin: 77px !important;
  }
  .mt-lg-77 {
    margin-top: 77px !important;
  }
  .mb-lg-77 {
    margin-bottom: 77px !important;
  }
  .ml-lg-77 {
    margin-left: 77px !important;
  }
  .mr-lg-77 {
    margin-right: 77px !important;
  }
  .my-lg-77 {
    margin-top: 77px !important;
    margin-bottom: 77px !important;
  }
  .mx-lg-77 {
    margin-left: 77px !important;
    margin-right: 77px !important;
  }
  .p-lg-77 {
    padding: 77px !important;
  }
  .pt-lg-77 {
    padding-top: 77px !important;
  }
  .pb-lg-77 {
    padding-bottom: 77px !important;
  }
  .pl-lg-77 {
    padding-left: 77px !important;
  }
  .pr-lg-77 {
    padding-right: 77px !important;
  }
  .py-lg-77 {
    padding-top: 77px !important;
    padding-bottom: 77px !important;
  }
  .px-lg-77 {
    padding-left: 77px !important;
    padding-right: 77px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-77 {
    margin: 77px !important;
  }
  .mt-xl-77 {
    margin-top: 77px !important;
  }
  .mb-xl-77 {
    margin-bottom: 77px !important;
  }
  .ml-xl-77 {
    margin-left: 77px !important;
  }
  .mr-xl-77 {
    margin-right: 77px !important;
  }
  .my-xl-77 {
    margin-top: 77px !important;
    margin-bottom: 77px !important;
  }
  .mx-xl-77 {
    margin-left: 77px !important;
    margin-right: 77px !important;
  }
  .p-xl-77 {
    padding: 77px !important;
  }
  .pt-xl-77 {
    padding-top: 77px !important;
  }
  .pb-xl-77 {
    padding-bottom: 77px !important;
  }
  .pl-xl-77 {
    padding-left: 77px !important;
  }
  .pr-xl-77 {
    padding-right: 77px !important;
  }
  .py-xl-77 {
    padding-top: 77px !important;
    padding-bottom: 77px !important;
  }
  .px-xl-77 {
    padding-left: 77px !important;
    padding-right: 77px !important;
  }
}
.m-77 {
  margin: 77px !important;
}

.mt-77 {
  margin-top: 77px !important;
}

.mb-77 {
  margin-bottom: 77px !important;
}

.ml-77 {
  margin-left: 77px !important;
}

.mr-77 {
  margin-right: 77px !important;
}

.my-77 {
  margin-top: 77px !important;
  margin-bottom: 77px !important;
}

.mx-77 {
  margin-left: 77px !important;
  margin-right: 77px !important;
}

.p-77 {
  padding: 77px !important;
}

.pt-77 {
  padding-top: 77px !important;
}

.pb-77 {
  padding-bottom: 77px !important;
}

.pl-77 {
  padding-left: 77px !important;
}

.pr-77 {
  padding-right: 77px !important;
}

.py-77 {
  padding-top: 77px !important;
  padding-bottom: 77px !important;
}

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

@media (max-width: 576px) {
  .m-sm-78 {
    margin: 78px !important;
  }
  .mt-sm-78 {
    margin-top: 78px !important;
  }
  .mb-sm-78 {
    margin-bottom: 78px !important;
  }
  .ml-sm-78 {
    margin-left: 78px !important;
  }
  .mr-sm-78 {
    margin-right: 78px !important;
  }
  .my-sm-78 {
    margin-top: 78px !important;
    margin-bottom: 78px !important;
  }
  .mx-sm-78 {
    margin-left: 78px !important;
    margin-right: 78px !important;
  }
  .p-sm-78 {
    padding: 78px !important;
  }
  .pt-sm-78 {
    padding-top: 78px !important;
  }
  .pb-sm-78 {
    padding-bottom: 78px !important;
  }
  .pl-sm-78 {
    padding-left: 78px !important;
  }
  .pr-sm-78 {
    padding-right: 78px !important;
  }
  .py-sm-78 {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
  .px-sm-78 {
    padding-left: 78px !important;
    padding-right: 78px !important;
  }
}
@media (max-width: 768px) {
  .m-md-78 {
    margin: 78px !important;
  }
  .mt-md-78 {
    margin-top: 78px !important;
  }
  .mb-md-78 {
    margin-bottom: 78px !important;
  }
  .ml-md-78 {
    margin-left: 78px !important;
  }
  .mr-md-78 {
    margin-right: 78px !important;
  }
  .my-md-78 {
    margin-top: 78px !important;
    margin-bottom: 78px !important;
  }
  .mx-md-78 {
    margin-left: 78px !important;
    margin-right: 78px !important;
  }
  .p-md-78 {
    padding: 78px !important;
  }
  .pt-md-78 {
    padding-top: 78px !important;
  }
  .pb-md-78 {
    padding-bottom: 78px !important;
  }
  .pl-md-78 {
    padding-left: 78px !important;
  }
  .pr-md-78 {
    padding-right: 78px !important;
  }
  .py-md-78 {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
  .px-md-78 {
    padding-left: 78px !important;
    padding-right: 78px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-78 {
    margin: 78px !important;
  }
  .mt-lg-78 {
    margin-top: 78px !important;
  }
  .mb-lg-78 {
    margin-bottom: 78px !important;
  }
  .ml-lg-78 {
    margin-left: 78px !important;
  }
  .mr-lg-78 {
    margin-right: 78px !important;
  }
  .my-lg-78 {
    margin-top: 78px !important;
    margin-bottom: 78px !important;
  }
  .mx-lg-78 {
    margin-left: 78px !important;
    margin-right: 78px !important;
  }
  .p-lg-78 {
    padding: 78px !important;
  }
  .pt-lg-78 {
    padding-top: 78px !important;
  }
  .pb-lg-78 {
    padding-bottom: 78px !important;
  }
  .pl-lg-78 {
    padding-left: 78px !important;
  }
  .pr-lg-78 {
    padding-right: 78px !important;
  }
  .py-lg-78 {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
  .px-lg-78 {
    padding-left: 78px !important;
    padding-right: 78px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-78 {
    margin: 78px !important;
  }
  .mt-xl-78 {
    margin-top: 78px !important;
  }
  .mb-xl-78 {
    margin-bottom: 78px !important;
  }
  .ml-xl-78 {
    margin-left: 78px !important;
  }
  .mr-xl-78 {
    margin-right: 78px !important;
  }
  .my-xl-78 {
    margin-top: 78px !important;
    margin-bottom: 78px !important;
  }
  .mx-xl-78 {
    margin-left: 78px !important;
    margin-right: 78px !important;
  }
  .p-xl-78 {
    padding: 78px !important;
  }
  .pt-xl-78 {
    padding-top: 78px !important;
  }
  .pb-xl-78 {
    padding-bottom: 78px !important;
  }
  .pl-xl-78 {
    padding-left: 78px !important;
  }
  .pr-xl-78 {
    padding-right: 78px !important;
  }
  .py-xl-78 {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
  .px-xl-78 {
    padding-left: 78px !important;
    padding-right: 78px !important;
  }
}
.m-78 {
  margin: 78px !important;
}

.mt-78 {
  margin-top: 78px !important;
}

.mb-78 {
  margin-bottom: 78px !important;
}

.ml-78 {
  margin-left: 78px !important;
}

.mr-78 {
  margin-right: 78px !important;
}

.my-78 {
  margin-top: 78px !important;
  margin-bottom: 78px !important;
}

.mx-78 {
  margin-left: 78px !important;
  margin-right: 78px !important;
}

.p-78 {
  padding: 78px !important;
}

.pt-78 {
  padding-top: 78px !important;
}

.pb-78 {
  padding-bottom: 78px !important;
}

.pl-78 {
  padding-left: 78px !important;
}

.pr-78 {
  padding-right: 78px !important;
}

.py-78 {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}

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

@media (max-width: 576px) {
  .m-sm-79 {
    margin: 79px !important;
  }
  .mt-sm-79 {
    margin-top: 79px !important;
  }
  .mb-sm-79 {
    margin-bottom: 79px !important;
  }
  .ml-sm-79 {
    margin-left: 79px !important;
  }
  .mr-sm-79 {
    margin-right: 79px !important;
  }
  .my-sm-79 {
    margin-top: 79px !important;
    margin-bottom: 79px !important;
  }
  .mx-sm-79 {
    margin-left: 79px !important;
    margin-right: 79px !important;
  }
  .p-sm-79 {
    padding: 79px !important;
  }
  .pt-sm-79 {
    padding-top: 79px !important;
  }
  .pb-sm-79 {
    padding-bottom: 79px !important;
  }
  .pl-sm-79 {
    padding-left: 79px !important;
  }
  .pr-sm-79 {
    padding-right: 79px !important;
  }
  .py-sm-79 {
    padding-top: 79px !important;
    padding-bottom: 79px !important;
  }
  .px-sm-79 {
    padding-left: 79px !important;
    padding-right: 79px !important;
  }
}
@media (max-width: 768px) {
  .m-md-79 {
    margin: 79px !important;
  }
  .mt-md-79 {
    margin-top: 79px !important;
  }
  .mb-md-79 {
    margin-bottom: 79px !important;
  }
  .ml-md-79 {
    margin-left: 79px !important;
  }
  .mr-md-79 {
    margin-right: 79px !important;
  }
  .my-md-79 {
    margin-top: 79px !important;
    margin-bottom: 79px !important;
  }
  .mx-md-79 {
    margin-left: 79px !important;
    margin-right: 79px !important;
  }
  .p-md-79 {
    padding: 79px !important;
  }
  .pt-md-79 {
    padding-top: 79px !important;
  }
  .pb-md-79 {
    padding-bottom: 79px !important;
  }
  .pl-md-79 {
    padding-left: 79px !important;
  }
  .pr-md-79 {
    padding-right: 79px !important;
  }
  .py-md-79 {
    padding-top: 79px !important;
    padding-bottom: 79px !important;
  }
  .px-md-79 {
    padding-left: 79px !important;
    padding-right: 79px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-79 {
    margin: 79px !important;
  }
  .mt-lg-79 {
    margin-top: 79px !important;
  }
  .mb-lg-79 {
    margin-bottom: 79px !important;
  }
  .ml-lg-79 {
    margin-left: 79px !important;
  }
  .mr-lg-79 {
    margin-right: 79px !important;
  }
  .my-lg-79 {
    margin-top: 79px !important;
    margin-bottom: 79px !important;
  }
  .mx-lg-79 {
    margin-left: 79px !important;
    margin-right: 79px !important;
  }
  .p-lg-79 {
    padding: 79px !important;
  }
  .pt-lg-79 {
    padding-top: 79px !important;
  }
  .pb-lg-79 {
    padding-bottom: 79px !important;
  }
  .pl-lg-79 {
    padding-left: 79px !important;
  }
  .pr-lg-79 {
    padding-right: 79px !important;
  }
  .py-lg-79 {
    padding-top: 79px !important;
    padding-bottom: 79px !important;
  }
  .px-lg-79 {
    padding-left: 79px !important;
    padding-right: 79px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-79 {
    margin: 79px !important;
  }
  .mt-xl-79 {
    margin-top: 79px !important;
  }
  .mb-xl-79 {
    margin-bottom: 79px !important;
  }
  .ml-xl-79 {
    margin-left: 79px !important;
  }
  .mr-xl-79 {
    margin-right: 79px !important;
  }
  .my-xl-79 {
    margin-top: 79px !important;
    margin-bottom: 79px !important;
  }
  .mx-xl-79 {
    margin-left: 79px !important;
    margin-right: 79px !important;
  }
  .p-xl-79 {
    padding: 79px !important;
  }
  .pt-xl-79 {
    padding-top: 79px !important;
  }
  .pb-xl-79 {
    padding-bottom: 79px !important;
  }
  .pl-xl-79 {
    padding-left: 79px !important;
  }
  .pr-xl-79 {
    padding-right: 79px !important;
  }
  .py-xl-79 {
    padding-top: 79px !important;
    padding-bottom: 79px !important;
  }
  .px-xl-79 {
    padding-left: 79px !important;
    padding-right: 79px !important;
  }
}
.m-79 {
  margin: 79px !important;
}

.mt-79 {
  margin-top: 79px !important;
}

.mb-79 {
  margin-bottom: 79px !important;
}

.ml-79 {
  margin-left: 79px !important;
}

.mr-79 {
  margin-right: 79px !important;
}

.my-79 {
  margin-top: 79px !important;
  margin-bottom: 79px !important;
}

.mx-79 {
  margin-left: 79px !important;
  margin-right: 79px !important;
}

.p-79 {
  padding: 79px !important;
}

.pt-79 {
  padding-top: 79px !important;
}

.pb-79 {
  padding-bottom: 79px !important;
}

.pl-79 {
  padding-left: 79px !important;
}

.pr-79 {
  padding-right: 79px !important;
}

.py-79 {
  padding-top: 79px !important;
  padding-bottom: 79px !important;
}

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

@media (max-width: 576px) {
  .m-sm-80 {
    margin: 80px !important;
  }
  .mt-sm-80 {
    margin-top: 80px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .ml-sm-80 {
    margin-left: 80px !important;
  }
  .mr-sm-80 {
    margin-right: 80px !important;
  }
  .my-sm-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mx-sm-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .p-sm-80 {
    padding: 80px !important;
  }
  .pt-sm-80 {
    padding-top: 80px !important;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .pl-sm-80 {
    padding-left: 80px !important;
  }
  .pr-sm-80 {
    padding-right: 80px !important;
  }
  .py-sm-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .px-sm-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}
@media (max-width: 768px) {
  .m-md-80 {
    margin: 80px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .ml-md-80 {
    margin-left: 80px !important;
  }
  .mr-md-80 {
    margin-right: 80px !important;
  }
  .my-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mx-md-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .p-md-80 {
    padding: 80px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .pl-md-80 {
    padding-left: 80px !important;
  }
  .pr-md-80 {
    padding-right: 80px !important;
  }
  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .px-md-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-80 {
    margin: 80px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .ml-lg-80 {
    margin-left: 80px !important;
  }
  .mr-lg-80 {
    margin-right: 80px !important;
  }
  .my-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mx-lg-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .p-lg-80 {
    padding: 80px !important;
  }
  .pt-lg-80 {
    padding-top: 80px !important;
  }
  .pb-lg-80 {
    padding-bottom: 80px !important;
  }
  .pl-lg-80 {
    padding-left: 80px !important;
  }
  .pr-lg-80 {
    padding-right: 80px !important;
  }
  .py-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .px-lg-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-80 {
    margin: 80px !important;
  }
  .mt-xl-80 {
    margin-top: 80px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .ml-xl-80 {
    margin-left: 80px !important;
  }
  .mr-xl-80 {
    margin-right: 80px !important;
  }
  .my-xl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mx-xl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .p-xl-80 {
    padding: 80px !important;
  }
  .pt-xl-80 {
    padding-top: 80px !important;
  }
  .pb-xl-80 {
    padding-bottom: 80px !important;
  }
  .pl-xl-80 {
    padding-left: 80px !important;
  }
  .pr-xl-80 {
    padding-right: 80px !important;
  }
  .py-xl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .px-xl-80 {
    padding-left: 80px !important;
    padding-right: 80px !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;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !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;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

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

@media (max-width: 576px) {
  .m-sm-81 {
    margin: 81px !important;
  }
  .mt-sm-81 {
    margin-top: 81px !important;
  }
  .mb-sm-81 {
    margin-bottom: 81px !important;
  }
  .ml-sm-81 {
    margin-left: 81px !important;
  }
  .mr-sm-81 {
    margin-right: 81px !important;
  }
  .my-sm-81 {
    margin-top: 81px !important;
    margin-bottom: 81px !important;
  }
  .mx-sm-81 {
    margin-left: 81px !important;
    margin-right: 81px !important;
  }
  .p-sm-81 {
    padding: 81px !important;
  }
  .pt-sm-81 {
    padding-top: 81px !important;
  }
  .pb-sm-81 {
    padding-bottom: 81px !important;
  }
  .pl-sm-81 {
    padding-left: 81px !important;
  }
  .pr-sm-81 {
    padding-right: 81px !important;
  }
  .py-sm-81 {
    padding-top: 81px !important;
    padding-bottom: 81px !important;
  }
  .px-sm-81 {
    padding-left: 81px !important;
    padding-right: 81px !important;
  }
}
@media (max-width: 768px) {
  .m-md-81 {
    margin: 81px !important;
  }
  .mt-md-81 {
    margin-top: 81px !important;
  }
  .mb-md-81 {
    margin-bottom: 81px !important;
  }
  .ml-md-81 {
    margin-left: 81px !important;
  }
  .mr-md-81 {
    margin-right: 81px !important;
  }
  .my-md-81 {
    margin-top: 81px !important;
    margin-bottom: 81px !important;
  }
  .mx-md-81 {
    margin-left: 81px !important;
    margin-right: 81px !important;
  }
  .p-md-81 {
    padding: 81px !important;
  }
  .pt-md-81 {
    padding-top: 81px !important;
  }
  .pb-md-81 {
    padding-bottom: 81px !important;
  }
  .pl-md-81 {
    padding-left: 81px !important;
  }
  .pr-md-81 {
    padding-right: 81px !important;
  }
  .py-md-81 {
    padding-top: 81px !important;
    padding-bottom: 81px !important;
  }
  .px-md-81 {
    padding-left: 81px !important;
    padding-right: 81px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-81 {
    margin: 81px !important;
  }
  .mt-lg-81 {
    margin-top: 81px !important;
  }
  .mb-lg-81 {
    margin-bottom: 81px !important;
  }
  .ml-lg-81 {
    margin-left: 81px !important;
  }
  .mr-lg-81 {
    margin-right: 81px !important;
  }
  .my-lg-81 {
    margin-top: 81px !important;
    margin-bottom: 81px !important;
  }
  .mx-lg-81 {
    margin-left: 81px !important;
    margin-right: 81px !important;
  }
  .p-lg-81 {
    padding: 81px !important;
  }
  .pt-lg-81 {
    padding-top: 81px !important;
  }
  .pb-lg-81 {
    padding-bottom: 81px !important;
  }
  .pl-lg-81 {
    padding-left: 81px !important;
  }
  .pr-lg-81 {
    padding-right: 81px !important;
  }
  .py-lg-81 {
    padding-top: 81px !important;
    padding-bottom: 81px !important;
  }
  .px-lg-81 {
    padding-left: 81px !important;
    padding-right: 81px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-81 {
    margin: 81px !important;
  }
  .mt-xl-81 {
    margin-top: 81px !important;
  }
  .mb-xl-81 {
    margin-bottom: 81px !important;
  }
  .ml-xl-81 {
    margin-left: 81px !important;
  }
  .mr-xl-81 {
    margin-right: 81px !important;
  }
  .my-xl-81 {
    margin-top: 81px !important;
    margin-bottom: 81px !important;
  }
  .mx-xl-81 {
    margin-left: 81px !important;
    margin-right: 81px !important;
  }
  .p-xl-81 {
    padding: 81px !important;
  }
  .pt-xl-81 {
    padding-top: 81px !important;
  }
  .pb-xl-81 {
    padding-bottom: 81px !important;
  }
  .pl-xl-81 {
    padding-left: 81px !important;
  }
  .pr-xl-81 {
    padding-right: 81px !important;
  }
  .py-xl-81 {
    padding-top: 81px !important;
    padding-bottom: 81px !important;
  }
  .px-xl-81 {
    padding-left: 81px !important;
    padding-right: 81px !important;
  }
}
.m-81 {
  margin: 81px !important;
}

.mt-81 {
  margin-top: 81px !important;
}

.mb-81 {
  margin-bottom: 81px !important;
}

.ml-81 {
  margin-left: 81px !important;
}

.mr-81 {
  margin-right: 81px !important;
}

.my-81 {
  margin-top: 81px !important;
  margin-bottom: 81px !important;
}

.mx-81 {
  margin-left: 81px !important;
  margin-right: 81px !important;
}

.p-81 {
  padding: 81px !important;
}

.pt-81 {
  padding-top: 81px !important;
}

.pb-81 {
  padding-bottom: 81px !important;
}

.pl-81 {
  padding-left: 81px !important;
}

.pr-81 {
  padding-right: 81px !important;
}

.py-81 {
  padding-top: 81px !important;
  padding-bottom: 81px !important;
}

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

@media (max-width: 576px) {
  .m-sm-82 {
    margin: 82px !important;
  }
  .mt-sm-82 {
    margin-top: 82px !important;
  }
  .mb-sm-82 {
    margin-bottom: 82px !important;
  }
  .ml-sm-82 {
    margin-left: 82px !important;
  }
  .mr-sm-82 {
    margin-right: 82px !important;
  }
  .my-sm-82 {
    margin-top: 82px !important;
    margin-bottom: 82px !important;
  }
  .mx-sm-82 {
    margin-left: 82px !important;
    margin-right: 82px !important;
  }
  .p-sm-82 {
    padding: 82px !important;
  }
  .pt-sm-82 {
    padding-top: 82px !important;
  }
  .pb-sm-82 {
    padding-bottom: 82px !important;
  }
  .pl-sm-82 {
    padding-left: 82px !important;
  }
  .pr-sm-82 {
    padding-right: 82px !important;
  }
  .py-sm-82 {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }
  .px-sm-82 {
    padding-left: 82px !important;
    padding-right: 82px !important;
  }
}
@media (max-width: 768px) {
  .m-md-82 {
    margin: 82px !important;
  }
  .mt-md-82 {
    margin-top: 82px !important;
  }
  .mb-md-82 {
    margin-bottom: 82px !important;
  }
  .ml-md-82 {
    margin-left: 82px !important;
  }
  .mr-md-82 {
    margin-right: 82px !important;
  }
  .my-md-82 {
    margin-top: 82px !important;
    margin-bottom: 82px !important;
  }
  .mx-md-82 {
    margin-left: 82px !important;
    margin-right: 82px !important;
  }
  .p-md-82 {
    padding: 82px !important;
  }
  .pt-md-82 {
    padding-top: 82px !important;
  }
  .pb-md-82 {
    padding-bottom: 82px !important;
  }
  .pl-md-82 {
    padding-left: 82px !important;
  }
  .pr-md-82 {
    padding-right: 82px !important;
  }
  .py-md-82 {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }
  .px-md-82 {
    padding-left: 82px !important;
    padding-right: 82px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-82 {
    margin: 82px !important;
  }
  .mt-lg-82 {
    margin-top: 82px !important;
  }
  .mb-lg-82 {
    margin-bottom: 82px !important;
  }
  .ml-lg-82 {
    margin-left: 82px !important;
  }
  .mr-lg-82 {
    margin-right: 82px !important;
  }
  .my-lg-82 {
    margin-top: 82px !important;
    margin-bottom: 82px !important;
  }
  .mx-lg-82 {
    margin-left: 82px !important;
    margin-right: 82px !important;
  }
  .p-lg-82 {
    padding: 82px !important;
  }
  .pt-lg-82 {
    padding-top: 82px !important;
  }
  .pb-lg-82 {
    padding-bottom: 82px !important;
  }
  .pl-lg-82 {
    padding-left: 82px !important;
  }
  .pr-lg-82 {
    padding-right: 82px !important;
  }
  .py-lg-82 {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }
  .px-lg-82 {
    padding-left: 82px !important;
    padding-right: 82px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-82 {
    margin: 82px !important;
  }
  .mt-xl-82 {
    margin-top: 82px !important;
  }
  .mb-xl-82 {
    margin-bottom: 82px !important;
  }
  .ml-xl-82 {
    margin-left: 82px !important;
  }
  .mr-xl-82 {
    margin-right: 82px !important;
  }
  .my-xl-82 {
    margin-top: 82px !important;
    margin-bottom: 82px !important;
  }
  .mx-xl-82 {
    margin-left: 82px !important;
    margin-right: 82px !important;
  }
  .p-xl-82 {
    padding: 82px !important;
  }
  .pt-xl-82 {
    padding-top: 82px !important;
  }
  .pb-xl-82 {
    padding-bottom: 82px !important;
  }
  .pl-xl-82 {
    padding-left: 82px !important;
  }
  .pr-xl-82 {
    padding-right: 82px !important;
  }
  .py-xl-82 {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }
  .px-xl-82 {
    padding-left: 82px !important;
    padding-right: 82px !important;
  }
}
.m-82 {
  margin: 82px !important;
}

.mt-82 {
  margin-top: 82px !important;
}

.mb-82 {
  margin-bottom: 82px !important;
}

.ml-82 {
  margin-left: 82px !important;
}

.mr-82 {
  margin-right: 82px !important;
}

.my-82 {
  margin-top: 82px !important;
  margin-bottom: 82px !important;
}

.mx-82 {
  margin-left: 82px !important;
  margin-right: 82px !important;
}

.p-82 {
  padding: 82px !important;
}

.pt-82 {
  padding-top: 82px !important;
}

.pb-82 {
  padding-bottom: 82px !important;
}

.pl-82 {
  padding-left: 82px !important;
}

.pr-82 {
  padding-right: 82px !important;
}

.py-82 {
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}

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

@media (max-width: 576px) {
  .m-sm-83 {
    margin: 83px !important;
  }
  .mt-sm-83 {
    margin-top: 83px !important;
  }
  .mb-sm-83 {
    margin-bottom: 83px !important;
  }
  .ml-sm-83 {
    margin-left: 83px !important;
  }
  .mr-sm-83 {
    margin-right: 83px !important;
  }
  .my-sm-83 {
    margin-top: 83px !important;
    margin-bottom: 83px !important;
  }
  .mx-sm-83 {
    margin-left: 83px !important;
    margin-right: 83px !important;
  }
  .p-sm-83 {
    padding: 83px !important;
  }
  .pt-sm-83 {
    padding-top: 83px !important;
  }
  .pb-sm-83 {
    padding-bottom: 83px !important;
  }
  .pl-sm-83 {
    padding-left: 83px !important;
  }
  .pr-sm-83 {
    padding-right: 83px !important;
  }
  .py-sm-83 {
    padding-top: 83px !important;
    padding-bottom: 83px !important;
  }
  .px-sm-83 {
    padding-left: 83px !important;
    padding-right: 83px !important;
  }
}
@media (max-width: 768px) {
  .m-md-83 {
    margin: 83px !important;
  }
  .mt-md-83 {
    margin-top: 83px !important;
  }
  .mb-md-83 {
    margin-bottom: 83px !important;
  }
  .ml-md-83 {
    margin-left: 83px !important;
  }
  .mr-md-83 {
    margin-right: 83px !important;
  }
  .my-md-83 {
    margin-top: 83px !important;
    margin-bottom: 83px !important;
  }
  .mx-md-83 {
    margin-left: 83px !important;
    margin-right: 83px !important;
  }
  .p-md-83 {
    padding: 83px !important;
  }
  .pt-md-83 {
    padding-top: 83px !important;
  }
  .pb-md-83 {
    padding-bottom: 83px !important;
  }
  .pl-md-83 {
    padding-left: 83px !important;
  }
  .pr-md-83 {
    padding-right: 83px !important;
  }
  .py-md-83 {
    padding-top: 83px !important;
    padding-bottom: 83px !important;
  }
  .px-md-83 {
    padding-left: 83px !important;
    padding-right: 83px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-83 {
    margin: 83px !important;
  }
  .mt-lg-83 {
    margin-top: 83px !important;
  }
  .mb-lg-83 {
    margin-bottom: 83px !important;
  }
  .ml-lg-83 {
    margin-left: 83px !important;
  }
  .mr-lg-83 {
    margin-right: 83px !important;
  }
  .my-lg-83 {
    margin-top: 83px !important;
    margin-bottom: 83px !important;
  }
  .mx-lg-83 {
    margin-left: 83px !important;
    margin-right: 83px !important;
  }
  .p-lg-83 {
    padding: 83px !important;
  }
  .pt-lg-83 {
    padding-top: 83px !important;
  }
  .pb-lg-83 {
    padding-bottom: 83px !important;
  }
  .pl-lg-83 {
    padding-left: 83px !important;
  }
  .pr-lg-83 {
    padding-right: 83px !important;
  }
  .py-lg-83 {
    padding-top: 83px !important;
    padding-bottom: 83px !important;
  }
  .px-lg-83 {
    padding-left: 83px !important;
    padding-right: 83px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-83 {
    margin: 83px !important;
  }
  .mt-xl-83 {
    margin-top: 83px !important;
  }
  .mb-xl-83 {
    margin-bottom: 83px !important;
  }
  .ml-xl-83 {
    margin-left: 83px !important;
  }
  .mr-xl-83 {
    margin-right: 83px !important;
  }
  .my-xl-83 {
    margin-top: 83px !important;
    margin-bottom: 83px !important;
  }
  .mx-xl-83 {
    margin-left: 83px !important;
    margin-right: 83px !important;
  }
  .p-xl-83 {
    padding: 83px !important;
  }
  .pt-xl-83 {
    padding-top: 83px !important;
  }
  .pb-xl-83 {
    padding-bottom: 83px !important;
  }
  .pl-xl-83 {
    padding-left: 83px !important;
  }
  .pr-xl-83 {
    padding-right: 83px !important;
  }
  .py-xl-83 {
    padding-top: 83px !important;
    padding-bottom: 83px !important;
  }
  .px-xl-83 {
    padding-left: 83px !important;
    padding-right: 83px !important;
  }
}
.m-83 {
  margin: 83px !important;
}

.mt-83 {
  margin-top: 83px !important;
}

.mb-83 {
  margin-bottom: 83px !important;
}

.ml-83 {
  margin-left: 83px !important;
}

.mr-83 {
  margin-right: 83px !important;
}

.my-83 {
  margin-top: 83px !important;
  margin-bottom: 83px !important;
}

.mx-83 {
  margin-left: 83px !important;
  margin-right: 83px !important;
}

.p-83 {
  padding: 83px !important;
}

.pt-83 {
  padding-top: 83px !important;
}

.pb-83 {
  padding-bottom: 83px !important;
}

.pl-83 {
  padding-left: 83px !important;
}

.pr-83 {
  padding-right: 83px !important;
}

.py-83 {
  padding-top: 83px !important;
  padding-bottom: 83px !important;
}

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

@media (max-width: 576px) {
  .m-sm-84 {
    margin: 84px !important;
  }
  .mt-sm-84 {
    margin-top: 84px !important;
  }
  .mb-sm-84 {
    margin-bottom: 84px !important;
  }
  .ml-sm-84 {
    margin-left: 84px !important;
  }
  .mr-sm-84 {
    margin-right: 84px !important;
  }
  .my-sm-84 {
    margin-top: 84px !important;
    margin-bottom: 84px !important;
  }
  .mx-sm-84 {
    margin-left: 84px !important;
    margin-right: 84px !important;
  }
  .p-sm-84 {
    padding: 84px !important;
  }
  .pt-sm-84 {
    padding-top: 84px !important;
  }
  .pb-sm-84 {
    padding-bottom: 84px !important;
  }
  .pl-sm-84 {
    padding-left: 84px !important;
  }
  .pr-sm-84 {
    padding-right: 84px !important;
  }
  .py-sm-84 {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
  }
  .px-sm-84 {
    padding-left: 84px !important;
    padding-right: 84px !important;
  }
}
@media (max-width: 768px) {
  .m-md-84 {
    margin: 84px !important;
  }
  .mt-md-84 {
    margin-top: 84px !important;
  }
  .mb-md-84 {
    margin-bottom: 84px !important;
  }
  .ml-md-84 {
    margin-left: 84px !important;
  }
  .mr-md-84 {
    margin-right: 84px !important;
  }
  .my-md-84 {
    margin-top: 84px !important;
    margin-bottom: 84px !important;
  }
  .mx-md-84 {
    margin-left: 84px !important;
    margin-right: 84px !important;
  }
  .p-md-84 {
    padding: 84px !important;
  }
  .pt-md-84 {
    padding-top: 84px !important;
  }
  .pb-md-84 {
    padding-bottom: 84px !important;
  }
  .pl-md-84 {
    padding-left: 84px !important;
  }
  .pr-md-84 {
    padding-right: 84px !important;
  }
  .py-md-84 {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
  }
  .px-md-84 {
    padding-left: 84px !important;
    padding-right: 84px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-84 {
    margin: 84px !important;
  }
  .mt-lg-84 {
    margin-top: 84px !important;
  }
  .mb-lg-84 {
    margin-bottom: 84px !important;
  }
  .ml-lg-84 {
    margin-left: 84px !important;
  }
  .mr-lg-84 {
    margin-right: 84px !important;
  }
  .my-lg-84 {
    margin-top: 84px !important;
    margin-bottom: 84px !important;
  }
  .mx-lg-84 {
    margin-left: 84px !important;
    margin-right: 84px !important;
  }
  .p-lg-84 {
    padding: 84px !important;
  }
  .pt-lg-84 {
    padding-top: 84px !important;
  }
  .pb-lg-84 {
    padding-bottom: 84px !important;
  }
  .pl-lg-84 {
    padding-left: 84px !important;
  }
  .pr-lg-84 {
    padding-right: 84px !important;
  }
  .py-lg-84 {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
  }
  .px-lg-84 {
    padding-left: 84px !important;
    padding-right: 84px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-84 {
    margin: 84px !important;
  }
  .mt-xl-84 {
    margin-top: 84px !important;
  }
  .mb-xl-84 {
    margin-bottom: 84px !important;
  }
  .ml-xl-84 {
    margin-left: 84px !important;
  }
  .mr-xl-84 {
    margin-right: 84px !important;
  }
  .my-xl-84 {
    margin-top: 84px !important;
    margin-bottom: 84px !important;
  }
  .mx-xl-84 {
    margin-left: 84px !important;
    margin-right: 84px !important;
  }
  .p-xl-84 {
    padding: 84px !important;
  }
  .pt-xl-84 {
    padding-top: 84px !important;
  }
  .pb-xl-84 {
    padding-bottom: 84px !important;
  }
  .pl-xl-84 {
    padding-left: 84px !important;
  }
  .pr-xl-84 {
    padding-right: 84px !important;
  }
  .py-xl-84 {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
  }
  .px-xl-84 {
    padding-left: 84px !important;
    padding-right: 84px !important;
  }
}
.m-84 {
  margin: 84px !important;
}

.mt-84 {
  margin-top: 84px !important;
}

.mb-84 {
  margin-bottom: 84px !important;
}

.ml-84 {
  margin-left: 84px !important;
}

.mr-84 {
  margin-right: 84px !important;
}

.my-84 {
  margin-top: 84px !important;
  margin-bottom: 84px !important;
}

.mx-84 {
  margin-left: 84px !important;
  margin-right: 84px !important;
}

.p-84 {
  padding: 84px !important;
}

.pt-84 {
  padding-top: 84px !important;
}

.pb-84 {
  padding-bottom: 84px !important;
}

.pl-84 {
  padding-left: 84px !important;
}

.pr-84 {
  padding-right: 84px !important;
}

.py-84 {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}

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

@media (max-width: 576px) {
  .m-sm-85 {
    margin: 85px !important;
  }
  .mt-sm-85 {
    margin-top: 85px !important;
  }
  .mb-sm-85 {
    margin-bottom: 85px !important;
  }
  .ml-sm-85 {
    margin-left: 85px !important;
  }
  .mr-sm-85 {
    margin-right: 85px !important;
  }
  .my-sm-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mx-sm-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .p-sm-85 {
    padding: 85px !important;
  }
  .pt-sm-85 {
    padding-top: 85px !important;
  }
  .pb-sm-85 {
    padding-bottom: 85px !important;
  }
  .pl-sm-85 {
    padding-left: 85px !important;
  }
  .pr-sm-85 {
    padding-right: 85px !important;
  }
  .py-sm-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .px-sm-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
}
@media (max-width: 768px) {
  .m-md-85 {
    margin: 85px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .ml-md-85 {
    margin-left: 85px !important;
  }
  .mr-md-85 {
    margin-right: 85px !important;
  }
  .my-md-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mx-md-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .p-md-85 {
    padding: 85px !important;
  }
  .pt-md-85 {
    padding-top: 85px !important;
  }
  .pb-md-85 {
    padding-bottom: 85px !important;
  }
  .pl-md-85 {
    padding-left: 85px !important;
  }
  .pr-md-85 {
    padding-right: 85px !important;
  }
  .py-md-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .px-md-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-85 {
    margin: 85px !important;
  }
  .mt-lg-85 {
    margin-top: 85px !important;
  }
  .mb-lg-85 {
    margin-bottom: 85px !important;
  }
  .ml-lg-85 {
    margin-left: 85px !important;
  }
  .mr-lg-85 {
    margin-right: 85px !important;
  }
  .my-lg-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mx-lg-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .p-lg-85 {
    padding: 85px !important;
  }
  .pt-lg-85 {
    padding-top: 85px !important;
  }
  .pb-lg-85 {
    padding-bottom: 85px !important;
  }
  .pl-lg-85 {
    padding-left: 85px !important;
  }
  .pr-lg-85 {
    padding-right: 85px !important;
  }
  .py-lg-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .px-lg-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-85 {
    margin: 85px !important;
  }
  .mt-xl-85 {
    margin-top: 85px !important;
  }
  .mb-xl-85 {
    margin-bottom: 85px !important;
  }
  .ml-xl-85 {
    margin-left: 85px !important;
  }
  .mr-xl-85 {
    margin-right: 85px !important;
  }
  .my-xl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mx-xl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .p-xl-85 {
    padding: 85px !important;
  }
  .pt-xl-85 {
    padding-top: 85px !important;
  }
  .pb-xl-85 {
    padding-bottom: 85px !important;
  }
  .pl-xl-85 {
    padding-left: 85px !important;
  }
  .pr-xl-85 {
    padding-right: 85px !important;
  }
  .py-xl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .px-xl-85 {
    padding-left: 85px !important;
    padding-right: 85px !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;
}

.my-85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important;
}

.mx-85 {
  margin-left: 85px !important;
  margin-right: 85px !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;
}

.py-85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}

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

@media (max-width: 576px) {
  .m-sm-86 {
    margin: 86px !important;
  }
  .mt-sm-86 {
    margin-top: 86px !important;
  }
  .mb-sm-86 {
    margin-bottom: 86px !important;
  }
  .ml-sm-86 {
    margin-left: 86px !important;
  }
  .mr-sm-86 {
    margin-right: 86px !important;
  }
  .my-sm-86 {
    margin-top: 86px !important;
    margin-bottom: 86px !important;
  }
  .mx-sm-86 {
    margin-left: 86px !important;
    margin-right: 86px !important;
  }
  .p-sm-86 {
    padding: 86px !important;
  }
  .pt-sm-86 {
    padding-top: 86px !important;
  }
  .pb-sm-86 {
    padding-bottom: 86px !important;
  }
  .pl-sm-86 {
    padding-left: 86px !important;
  }
  .pr-sm-86 {
    padding-right: 86px !important;
  }
  .py-sm-86 {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
  }
  .px-sm-86 {
    padding-left: 86px !important;
    padding-right: 86px !important;
  }
}
@media (max-width: 768px) {
  .m-md-86 {
    margin: 86px !important;
  }
  .mt-md-86 {
    margin-top: 86px !important;
  }
  .mb-md-86 {
    margin-bottom: 86px !important;
  }
  .ml-md-86 {
    margin-left: 86px !important;
  }
  .mr-md-86 {
    margin-right: 86px !important;
  }
  .my-md-86 {
    margin-top: 86px !important;
    margin-bottom: 86px !important;
  }
  .mx-md-86 {
    margin-left: 86px !important;
    margin-right: 86px !important;
  }
  .p-md-86 {
    padding: 86px !important;
  }
  .pt-md-86 {
    padding-top: 86px !important;
  }
  .pb-md-86 {
    padding-bottom: 86px !important;
  }
  .pl-md-86 {
    padding-left: 86px !important;
  }
  .pr-md-86 {
    padding-right: 86px !important;
  }
  .py-md-86 {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
  }
  .px-md-86 {
    padding-left: 86px !important;
    padding-right: 86px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-86 {
    margin: 86px !important;
  }
  .mt-lg-86 {
    margin-top: 86px !important;
  }
  .mb-lg-86 {
    margin-bottom: 86px !important;
  }
  .ml-lg-86 {
    margin-left: 86px !important;
  }
  .mr-lg-86 {
    margin-right: 86px !important;
  }
  .my-lg-86 {
    margin-top: 86px !important;
    margin-bottom: 86px !important;
  }
  .mx-lg-86 {
    margin-left: 86px !important;
    margin-right: 86px !important;
  }
  .p-lg-86 {
    padding: 86px !important;
  }
  .pt-lg-86 {
    padding-top: 86px !important;
  }
  .pb-lg-86 {
    padding-bottom: 86px !important;
  }
  .pl-lg-86 {
    padding-left: 86px !important;
  }
  .pr-lg-86 {
    padding-right: 86px !important;
  }
  .py-lg-86 {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
  }
  .px-lg-86 {
    padding-left: 86px !important;
    padding-right: 86px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-86 {
    margin: 86px !important;
  }
  .mt-xl-86 {
    margin-top: 86px !important;
  }
  .mb-xl-86 {
    margin-bottom: 86px !important;
  }
  .ml-xl-86 {
    margin-left: 86px !important;
  }
  .mr-xl-86 {
    margin-right: 86px !important;
  }
  .my-xl-86 {
    margin-top: 86px !important;
    margin-bottom: 86px !important;
  }
  .mx-xl-86 {
    margin-left: 86px !important;
    margin-right: 86px !important;
  }
  .p-xl-86 {
    padding: 86px !important;
  }
  .pt-xl-86 {
    padding-top: 86px !important;
  }
  .pb-xl-86 {
    padding-bottom: 86px !important;
  }
  .pl-xl-86 {
    padding-left: 86px !important;
  }
  .pr-xl-86 {
    padding-right: 86px !important;
  }
  .py-xl-86 {
    padding-top: 86px !important;
    padding-bottom: 86px !important;
  }
  .px-xl-86 {
    padding-left: 86px !important;
    padding-right: 86px !important;
  }
}
.m-86 {
  margin: 86px !important;
}

.mt-86 {
  margin-top: 86px !important;
}

.mb-86 {
  margin-bottom: 86px !important;
}

.ml-86 {
  margin-left: 86px !important;
}

.mr-86 {
  margin-right: 86px !important;
}

.my-86 {
  margin-top: 86px !important;
  margin-bottom: 86px !important;
}

.mx-86 {
  margin-left: 86px !important;
  margin-right: 86px !important;
}

.p-86 {
  padding: 86px !important;
}

.pt-86 {
  padding-top: 86px !important;
}

.pb-86 {
  padding-bottom: 86px !important;
}

.pl-86 {
  padding-left: 86px !important;
}

.pr-86 {
  padding-right: 86px !important;
}

.py-86 {
  padding-top: 86px !important;
  padding-bottom: 86px !important;
}

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

@media (max-width: 576px) {
  .m-sm-87 {
    margin: 87px !important;
  }
  .mt-sm-87 {
    margin-top: 87px !important;
  }
  .mb-sm-87 {
    margin-bottom: 87px !important;
  }
  .ml-sm-87 {
    margin-left: 87px !important;
  }
  .mr-sm-87 {
    margin-right: 87px !important;
  }
  .my-sm-87 {
    margin-top: 87px !important;
    margin-bottom: 87px !important;
  }
  .mx-sm-87 {
    margin-left: 87px !important;
    margin-right: 87px !important;
  }
  .p-sm-87 {
    padding: 87px !important;
  }
  .pt-sm-87 {
    padding-top: 87px !important;
  }
  .pb-sm-87 {
    padding-bottom: 87px !important;
  }
  .pl-sm-87 {
    padding-left: 87px !important;
  }
  .pr-sm-87 {
    padding-right: 87px !important;
  }
  .py-sm-87 {
    padding-top: 87px !important;
    padding-bottom: 87px !important;
  }
  .px-sm-87 {
    padding-left: 87px !important;
    padding-right: 87px !important;
  }
}
@media (max-width: 768px) {
  .m-md-87 {
    margin: 87px !important;
  }
  .mt-md-87 {
    margin-top: 87px !important;
  }
  .mb-md-87 {
    margin-bottom: 87px !important;
  }
  .ml-md-87 {
    margin-left: 87px !important;
  }
  .mr-md-87 {
    margin-right: 87px !important;
  }
  .my-md-87 {
    margin-top: 87px !important;
    margin-bottom: 87px !important;
  }
  .mx-md-87 {
    margin-left: 87px !important;
    margin-right: 87px !important;
  }
  .p-md-87 {
    padding: 87px !important;
  }
  .pt-md-87 {
    padding-top: 87px !important;
  }
  .pb-md-87 {
    padding-bottom: 87px !important;
  }
  .pl-md-87 {
    padding-left: 87px !important;
  }
  .pr-md-87 {
    padding-right: 87px !important;
  }
  .py-md-87 {
    padding-top: 87px !important;
    padding-bottom: 87px !important;
  }
  .px-md-87 {
    padding-left: 87px !important;
    padding-right: 87px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-87 {
    margin: 87px !important;
  }
  .mt-lg-87 {
    margin-top: 87px !important;
  }
  .mb-lg-87 {
    margin-bottom: 87px !important;
  }
  .ml-lg-87 {
    margin-left: 87px !important;
  }
  .mr-lg-87 {
    margin-right: 87px !important;
  }
  .my-lg-87 {
    margin-top: 87px !important;
    margin-bottom: 87px !important;
  }
  .mx-lg-87 {
    margin-left: 87px !important;
    margin-right: 87px !important;
  }
  .p-lg-87 {
    padding: 87px !important;
  }
  .pt-lg-87 {
    padding-top: 87px !important;
  }
  .pb-lg-87 {
    padding-bottom: 87px !important;
  }
  .pl-lg-87 {
    padding-left: 87px !important;
  }
  .pr-lg-87 {
    padding-right: 87px !important;
  }
  .py-lg-87 {
    padding-top: 87px !important;
    padding-bottom: 87px !important;
  }
  .px-lg-87 {
    padding-left: 87px !important;
    padding-right: 87px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-87 {
    margin: 87px !important;
  }
  .mt-xl-87 {
    margin-top: 87px !important;
  }
  .mb-xl-87 {
    margin-bottom: 87px !important;
  }
  .ml-xl-87 {
    margin-left: 87px !important;
  }
  .mr-xl-87 {
    margin-right: 87px !important;
  }
  .my-xl-87 {
    margin-top: 87px !important;
    margin-bottom: 87px !important;
  }
  .mx-xl-87 {
    margin-left: 87px !important;
    margin-right: 87px !important;
  }
  .p-xl-87 {
    padding: 87px !important;
  }
  .pt-xl-87 {
    padding-top: 87px !important;
  }
  .pb-xl-87 {
    padding-bottom: 87px !important;
  }
  .pl-xl-87 {
    padding-left: 87px !important;
  }
  .pr-xl-87 {
    padding-right: 87px !important;
  }
  .py-xl-87 {
    padding-top: 87px !important;
    padding-bottom: 87px !important;
  }
  .px-xl-87 {
    padding-left: 87px !important;
    padding-right: 87px !important;
  }
}
.m-87 {
  margin: 87px !important;
}

.mt-87 {
  margin-top: 87px !important;
}

.mb-87 {
  margin-bottom: 87px !important;
}

.ml-87 {
  margin-left: 87px !important;
}

.mr-87 {
  margin-right: 87px !important;
}

.my-87 {
  margin-top: 87px !important;
  margin-bottom: 87px !important;
}

.mx-87 {
  margin-left: 87px !important;
  margin-right: 87px !important;
}

.p-87 {
  padding: 87px !important;
}

.pt-87 {
  padding-top: 87px !important;
}

.pb-87 {
  padding-bottom: 87px !important;
}

.pl-87 {
  padding-left: 87px !important;
}

.pr-87 {
  padding-right: 87px !important;
}

.py-87 {
  padding-top: 87px !important;
  padding-bottom: 87px !important;
}

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

@media (max-width: 576px) {
  .m-sm-88 {
    margin: 88px !important;
  }
  .mt-sm-88 {
    margin-top: 88px !important;
  }
  .mb-sm-88 {
    margin-bottom: 88px !important;
  }
  .ml-sm-88 {
    margin-left: 88px !important;
  }
  .mr-sm-88 {
    margin-right: 88px !important;
  }
  .my-sm-88 {
    margin-top: 88px !important;
    margin-bottom: 88px !important;
  }
  .mx-sm-88 {
    margin-left: 88px !important;
    margin-right: 88px !important;
  }
  .p-sm-88 {
    padding: 88px !important;
  }
  .pt-sm-88 {
    padding-top: 88px !important;
  }
  .pb-sm-88 {
    padding-bottom: 88px !important;
  }
  .pl-sm-88 {
    padding-left: 88px !important;
  }
  .pr-sm-88 {
    padding-right: 88px !important;
  }
  .py-sm-88 {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
  }
  .px-sm-88 {
    padding-left: 88px !important;
    padding-right: 88px !important;
  }
}
@media (max-width: 768px) {
  .m-md-88 {
    margin: 88px !important;
  }
  .mt-md-88 {
    margin-top: 88px !important;
  }
  .mb-md-88 {
    margin-bottom: 88px !important;
  }
  .ml-md-88 {
    margin-left: 88px !important;
  }
  .mr-md-88 {
    margin-right: 88px !important;
  }
  .my-md-88 {
    margin-top: 88px !important;
    margin-bottom: 88px !important;
  }
  .mx-md-88 {
    margin-left: 88px !important;
    margin-right: 88px !important;
  }
  .p-md-88 {
    padding: 88px !important;
  }
  .pt-md-88 {
    padding-top: 88px !important;
  }
  .pb-md-88 {
    padding-bottom: 88px !important;
  }
  .pl-md-88 {
    padding-left: 88px !important;
  }
  .pr-md-88 {
    padding-right: 88px !important;
  }
  .py-md-88 {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
  }
  .px-md-88 {
    padding-left: 88px !important;
    padding-right: 88px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-88 {
    margin: 88px !important;
  }
  .mt-lg-88 {
    margin-top: 88px !important;
  }
  .mb-lg-88 {
    margin-bottom: 88px !important;
  }
  .ml-lg-88 {
    margin-left: 88px !important;
  }
  .mr-lg-88 {
    margin-right: 88px !important;
  }
  .my-lg-88 {
    margin-top: 88px !important;
    margin-bottom: 88px !important;
  }
  .mx-lg-88 {
    margin-left: 88px !important;
    margin-right: 88px !important;
  }
  .p-lg-88 {
    padding: 88px !important;
  }
  .pt-lg-88 {
    padding-top: 88px !important;
  }
  .pb-lg-88 {
    padding-bottom: 88px !important;
  }
  .pl-lg-88 {
    padding-left: 88px !important;
  }
  .pr-lg-88 {
    padding-right: 88px !important;
  }
  .py-lg-88 {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
  }
  .px-lg-88 {
    padding-left: 88px !important;
    padding-right: 88px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-88 {
    margin: 88px !important;
  }
  .mt-xl-88 {
    margin-top: 88px !important;
  }
  .mb-xl-88 {
    margin-bottom: 88px !important;
  }
  .ml-xl-88 {
    margin-left: 88px !important;
  }
  .mr-xl-88 {
    margin-right: 88px !important;
  }
  .my-xl-88 {
    margin-top: 88px !important;
    margin-bottom: 88px !important;
  }
  .mx-xl-88 {
    margin-left: 88px !important;
    margin-right: 88px !important;
  }
  .p-xl-88 {
    padding: 88px !important;
  }
  .pt-xl-88 {
    padding-top: 88px !important;
  }
  .pb-xl-88 {
    padding-bottom: 88px !important;
  }
  .pl-xl-88 {
    padding-left: 88px !important;
  }
  .pr-xl-88 {
    padding-right: 88px !important;
  }
  .py-xl-88 {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
  }
  .px-xl-88 {
    padding-left: 88px !important;
    padding-right: 88px !important;
  }
}
.m-88 {
  margin: 88px !important;
}

.mt-88 {
  margin-top: 88px !important;
}

.mb-88 {
  margin-bottom: 88px !important;
}

.ml-88 {
  margin-left: 88px !important;
}

.mr-88 {
  margin-right: 88px !important;
}

.my-88 {
  margin-top: 88px !important;
  margin-bottom: 88px !important;
}

.mx-88 {
  margin-left: 88px !important;
  margin-right: 88px !important;
}

.p-88 {
  padding: 88px !important;
}

.pt-88 {
  padding-top: 88px !important;
}

.pb-88 {
  padding-bottom: 88px !important;
}

.pl-88 {
  padding-left: 88px !important;
}

.pr-88 {
  padding-right: 88px !important;
}

.py-88 {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

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

@media (max-width: 576px) {
  .m-sm-89 {
    margin: 89px !important;
  }
  .mt-sm-89 {
    margin-top: 89px !important;
  }
  .mb-sm-89 {
    margin-bottom: 89px !important;
  }
  .ml-sm-89 {
    margin-left: 89px !important;
  }
  .mr-sm-89 {
    margin-right: 89px !important;
  }
  .my-sm-89 {
    margin-top: 89px !important;
    margin-bottom: 89px !important;
  }
  .mx-sm-89 {
    margin-left: 89px !important;
    margin-right: 89px !important;
  }
  .p-sm-89 {
    padding: 89px !important;
  }
  .pt-sm-89 {
    padding-top: 89px !important;
  }
  .pb-sm-89 {
    padding-bottom: 89px !important;
  }
  .pl-sm-89 {
    padding-left: 89px !important;
  }
  .pr-sm-89 {
    padding-right: 89px !important;
  }
  .py-sm-89 {
    padding-top: 89px !important;
    padding-bottom: 89px !important;
  }
  .px-sm-89 {
    padding-left: 89px !important;
    padding-right: 89px !important;
  }
}
@media (max-width: 768px) {
  .m-md-89 {
    margin: 89px !important;
  }
  .mt-md-89 {
    margin-top: 89px !important;
  }
  .mb-md-89 {
    margin-bottom: 89px !important;
  }
  .ml-md-89 {
    margin-left: 89px !important;
  }
  .mr-md-89 {
    margin-right: 89px !important;
  }
  .my-md-89 {
    margin-top: 89px !important;
    margin-bottom: 89px !important;
  }
  .mx-md-89 {
    margin-left: 89px !important;
    margin-right: 89px !important;
  }
  .p-md-89 {
    padding: 89px !important;
  }
  .pt-md-89 {
    padding-top: 89px !important;
  }
  .pb-md-89 {
    padding-bottom: 89px !important;
  }
  .pl-md-89 {
    padding-left: 89px !important;
  }
  .pr-md-89 {
    padding-right: 89px !important;
  }
  .py-md-89 {
    padding-top: 89px !important;
    padding-bottom: 89px !important;
  }
  .px-md-89 {
    padding-left: 89px !important;
    padding-right: 89px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-89 {
    margin: 89px !important;
  }
  .mt-lg-89 {
    margin-top: 89px !important;
  }
  .mb-lg-89 {
    margin-bottom: 89px !important;
  }
  .ml-lg-89 {
    margin-left: 89px !important;
  }
  .mr-lg-89 {
    margin-right: 89px !important;
  }
  .my-lg-89 {
    margin-top: 89px !important;
    margin-bottom: 89px !important;
  }
  .mx-lg-89 {
    margin-left: 89px !important;
    margin-right: 89px !important;
  }
  .p-lg-89 {
    padding: 89px !important;
  }
  .pt-lg-89 {
    padding-top: 89px !important;
  }
  .pb-lg-89 {
    padding-bottom: 89px !important;
  }
  .pl-lg-89 {
    padding-left: 89px !important;
  }
  .pr-lg-89 {
    padding-right: 89px !important;
  }
  .py-lg-89 {
    padding-top: 89px !important;
    padding-bottom: 89px !important;
  }
  .px-lg-89 {
    padding-left: 89px !important;
    padding-right: 89px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-89 {
    margin: 89px !important;
  }
  .mt-xl-89 {
    margin-top: 89px !important;
  }
  .mb-xl-89 {
    margin-bottom: 89px !important;
  }
  .ml-xl-89 {
    margin-left: 89px !important;
  }
  .mr-xl-89 {
    margin-right: 89px !important;
  }
  .my-xl-89 {
    margin-top: 89px !important;
    margin-bottom: 89px !important;
  }
  .mx-xl-89 {
    margin-left: 89px !important;
    margin-right: 89px !important;
  }
  .p-xl-89 {
    padding: 89px !important;
  }
  .pt-xl-89 {
    padding-top: 89px !important;
  }
  .pb-xl-89 {
    padding-bottom: 89px !important;
  }
  .pl-xl-89 {
    padding-left: 89px !important;
  }
  .pr-xl-89 {
    padding-right: 89px !important;
  }
  .py-xl-89 {
    padding-top: 89px !important;
    padding-bottom: 89px !important;
  }
  .px-xl-89 {
    padding-left: 89px !important;
    padding-right: 89px !important;
  }
}
.m-89 {
  margin: 89px !important;
}

.mt-89 {
  margin-top: 89px !important;
}

.mb-89 {
  margin-bottom: 89px !important;
}

.ml-89 {
  margin-left: 89px !important;
}

.mr-89 {
  margin-right: 89px !important;
}

.my-89 {
  margin-top: 89px !important;
  margin-bottom: 89px !important;
}

.mx-89 {
  margin-left: 89px !important;
  margin-right: 89px !important;
}

.p-89 {
  padding: 89px !important;
}

.pt-89 {
  padding-top: 89px !important;
}

.pb-89 {
  padding-bottom: 89px !important;
}

.pl-89 {
  padding-left: 89px !important;
}

.pr-89 {
  padding-right: 89px !important;
}

.py-89 {
  padding-top: 89px !important;
  padding-bottom: 89px !important;
}

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

@media (max-width: 576px) {
  .m-sm-90 {
    margin: 90px !important;
  }
  .mt-sm-90 {
    margin-top: 90px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .ml-sm-90 {
    margin-left: 90px !important;
  }
  .mr-sm-90 {
    margin-right: 90px !important;
  }
  .my-sm-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mx-sm-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .p-sm-90 {
    padding: 90px !important;
  }
  .pt-sm-90 {
    padding-top: 90px !important;
  }
  .pb-sm-90 {
    padding-bottom: 90px !important;
  }
  .pl-sm-90 {
    padding-left: 90px !important;
  }
  .pr-sm-90 {
    padding-right: 90px !important;
  }
  .py-sm-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .px-sm-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
}
@media (max-width: 768px) {
  .m-md-90 {
    margin: 90px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .ml-md-90 {
    margin-left: 90px !important;
  }
  .mr-md-90 {
    margin-right: 90px !important;
  }
  .my-md-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mx-md-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .p-md-90 {
    padding: 90px !important;
  }
  .pt-md-90 {
    padding-top: 90px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .pl-md-90 {
    padding-left: 90px !important;
  }
  .pr-md-90 {
    padding-right: 90px !important;
  }
  .py-md-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .px-md-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-90 {
    margin: 90px !important;
  }
  .mt-lg-90 {
    margin-top: 90px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .ml-lg-90 {
    margin-left: 90px !important;
  }
  .mr-lg-90 {
    margin-right: 90px !important;
  }
  .my-lg-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mx-lg-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .p-lg-90 {
    padding: 90px !important;
  }
  .pt-lg-90 {
    padding-top: 90px !important;
  }
  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
  .pl-lg-90 {
    padding-left: 90px !important;
  }
  .pr-lg-90 {
    padding-right: 90px !important;
  }
  .py-lg-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .px-lg-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-90 {
    margin: 90px !important;
  }
  .mt-xl-90 {
    margin-top: 90px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .ml-xl-90 {
    margin-left: 90px !important;
  }
  .mr-xl-90 {
    margin-right: 90px !important;
  }
  .my-xl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mx-xl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .p-xl-90 {
    padding: 90px !important;
  }
  .pt-xl-90 {
    padding-top: 90px !important;
  }
  .pb-xl-90 {
    padding-bottom: 90px !important;
  }
  .pl-xl-90 {
    padding-left: 90px !important;
  }
  .pr-xl-90 {
    padding-right: 90px !important;
  }
  .py-xl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .px-xl-90 {
    padding-left: 90px !important;
    padding-right: 90px !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;
}

.my-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

.mx-90 {
  margin-left: 90px !important;
  margin-right: 90px !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;
}

.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

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

@media (max-width: 576px) {
  .m-sm-91 {
    margin: 91px !important;
  }
  .mt-sm-91 {
    margin-top: 91px !important;
  }
  .mb-sm-91 {
    margin-bottom: 91px !important;
  }
  .ml-sm-91 {
    margin-left: 91px !important;
  }
  .mr-sm-91 {
    margin-right: 91px !important;
  }
  .my-sm-91 {
    margin-top: 91px !important;
    margin-bottom: 91px !important;
  }
  .mx-sm-91 {
    margin-left: 91px !important;
    margin-right: 91px !important;
  }
  .p-sm-91 {
    padding: 91px !important;
  }
  .pt-sm-91 {
    padding-top: 91px !important;
  }
  .pb-sm-91 {
    padding-bottom: 91px !important;
  }
  .pl-sm-91 {
    padding-left: 91px !important;
  }
  .pr-sm-91 {
    padding-right: 91px !important;
  }
  .py-sm-91 {
    padding-top: 91px !important;
    padding-bottom: 91px !important;
  }
  .px-sm-91 {
    padding-left: 91px !important;
    padding-right: 91px !important;
  }
}
@media (max-width: 768px) {
  .m-md-91 {
    margin: 91px !important;
  }
  .mt-md-91 {
    margin-top: 91px !important;
  }
  .mb-md-91 {
    margin-bottom: 91px !important;
  }
  .ml-md-91 {
    margin-left: 91px !important;
  }
  .mr-md-91 {
    margin-right: 91px !important;
  }
  .my-md-91 {
    margin-top: 91px !important;
    margin-bottom: 91px !important;
  }
  .mx-md-91 {
    margin-left: 91px !important;
    margin-right: 91px !important;
  }
  .p-md-91 {
    padding: 91px !important;
  }
  .pt-md-91 {
    padding-top: 91px !important;
  }
  .pb-md-91 {
    padding-bottom: 91px !important;
  }
  .pl-md-91 {
    padding-left: 91px !important;
  }
  .pr-md-91 {
    padding-right: 91px !important;
  }
  .py-md-91 {
    padding-top: 91px !important;
    padding-bottom: 91px !important;
  }
  .px-md-91 {
    padding-left: 91px !important;
    padding-right: 91px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-91 {
    margin: 91px !important;
  }
  .mt-lg-91 {
    margin-top: 91px !important;
  }
  .mb-lg-91 {
    margin-bottom: 91px !important;
  }
  .ml-lg-91 {
    margin-left: 91px !important;
  }
  .mr-lg-91 {
    margin-right: 91px !important;
  }
  .my-lg-91 {
    margin-top: 91px !important;
    margin-bottom: 91px !important;
  }
  .mx-lg-91 {
    margin-left: 91px !important;
    margin-right: 91px !important;
  }
  .p-lg-91 {
    padding: 91px !important;
  }
  .pt-lg-91 {
    padding-top: 91px !important;
  }
  .pb-lg-91 {
    padding-bottom: 91px !important;
  }
  .pl-lg-91 {
    padding-left: 91px !important;
  }
  .pr-lg-91 {
    padding-right: 91px !important;
  }
  .py-lg-91 {
    padding-top: 91px !important;
    padding-bottom: 91px !important;
  }
  .px-lg-91 {
    padding-left: 91px !important;
    padding-right: 91px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-91 {
    margin: 91px !important;
  }
  .mt-xl-91 {
    margin-top: 91px !important;
  }
  .mb-xl-91 {
    margin-bottom: 91px !important;
  }
  .ml-xl-91 {
    margin-left: 91px !important;
  }
  .mr-xl-91 {
    margin-right: 91px !important;
  }
  .my-xl-91 {
    margin-top: 91px !important;
    margin-bottom: 91px !important;
  }
  .mx-xl-91 {
    margin-left: 91px !important;
    margin-right: 91px !important;
  }
  .p-xl-91 {
    padding: 91px !important;
  }
  .pt-xl-91 {
    padding-top: 91px !important;
  }
  .pb-xl-91 {
    padding-bottom: 91px !important;
  }
  .pl-xl-91 {
    padding-left: 91px !important;
  }
  .pr-xl-91 {
    padding-right: 91px !important;
  }
  .py-xl-91 {
    padding-top: 91px !important;
    padding-bottom: 91px !important;
  }
  .px-xl-91 {
    padding-left: 91px !important;
    padding-right: 91px !important;
  }
}
.m-91 {
  margin: 91px !important;
}

.mt-91 {
  margin-top: 91px !important;
}

.mb-91 {
  margin-bottom: 91px !important;
}

.ml-91 {
  margin-left: 91px !important;
}

.mr-91 {
  margin-right: 91px !important;
}

.my-91 {
  margin-top: 91px !important;
  margin-bottom: 91px !important;
}

.mx-91 {
  margin-left: 91px !important;
  margin-right: 91px !important;
}

.p-91 {
  padding: 91px !important;
}

.pt-91 {
  padding-top: 91px !important;
}

.pb-91 {
  padding-bottom: 91px !important;
}

.pl-91 {
  padding-left: 91px !important;
}

.pr-91 {
  padding-right: 91px !important;
}

.py-91 {
  padding-top: 91px !important;
  padding-bottom: 91px !important;
}

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

@media (max-width: 576px) {
  .m-sm-92 {
    margin: 92px !important;
  }
  .mt-sm-92 {
    margin-top: 92px !important;
  }
  .mb-sm-92 {
    margin-bottom: 92px !important;
  }
  .ml-sm-92 {
    margin-left: 92px !important;
  }
  .mr-sm-92 {
    margin-right: 92px !important;
  }
  .my-sm-92 {
    margin-top: 92px !important;
    margin-bottom: 92px !important;
  }
  .mx-sm-92 {
    margin-left: 92px !important;
    margin-right: 92px !important;
  }
  .p-sm-92 {
    padding: 92px !important;
  }
  .pt-sm-92 {
    padding-top: 92px !important;
  }
  .pb-sm-92 {
    padding-bottom: 92px !important;
  }
  .pl-sm-92 {
    padding-left: 92px !important;
  }
  .pr-sm-92 {
    padding-right: 92px !important;
  }
  .py-sm-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
  }
  .px-sm-92 {
    padding-left: 92px !important;
    padding-right: 92px !important;
  }
}
@media (max-width: 768px) {
  .m-md-92 {
    margin: 92px !important;
  }
  .mt-md-92 {
    margin-top: 92px !important;
  }
  .mb-md-92 {
    margin-bottom: 92px !important;
  }
  .ml-md-92 {
    margin-left: 92px !important;
  }
  .mr-md-92 {
    margin-right: 92px !important;
  }
  .my-md-92 {
    margin-top: 92px !important;
    margin-bottom: 92px !important;
  }
  .mx-md-92 {
    margin-left: 92px !important;
    margin-right: 92px !important;
  }
  .p-md-92 {
    padding: 92px !important;
  }
  .pt-md-92 {
    padding-top: 92px !important;
  }
  .pb-md-92 {
    padding-bottom: 92px !important;
  }
  .pl-md-92 {
    padding-left: 92px !important;
  }
  .pr-md-92 {
    padding-right: 92px !important;
  }
  .py-md-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
  }
  .px-md-92 {
    padding-left: 92px !important;
    padding-right: 92px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-92 {
    margin: 92px !important;
  }
  .mt-lg-92 {
    margin-top: 92px !important;
  }
  .mb-lg-92 {
    margin-bottom: 92px !important;
  }
  .ml-lg-92 {
    margin-left: 92px !important;
  }
  .mr-lg-92 {
    margin-right: 92px !important;
  }
  .my-lg-92 {
    margin-top: 92px !important;
    margin-bottom: 92px !important;
  }
  .mx-lg-92 {
    margin-left: 92px !important;
    margin-right: 92px !important;
  }
  .p-lg-92 {
    padding: 92px !important;
  }
  .pt-lg-92 {
    padding-top: 92px !important;
  }
  .pb-lg-92 {
    padding-bottom: 92px !important;
  }
  .pl-lg-92 {
    padding-left: 92px !important;
  }
  .pr-lg-92 {
    padding-right: 92px !important;
  }
  .py-lg-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
  }
  .px-lg-92 {
    padding-left: 92px !important;
    padding-right: 92px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-92 {
    margin: 92px !important;
  }
  .mt-xl-92 {
    margin-top: 92px !important;
  }
  .mb-xl-92 {
    margin-bottom: 92px !important;
  }
  .ml-xl-92 {
    margin-left: 92px !important;
  }
  .mr-xl-92 {
    margin-right: 92px !important;
  }
  .my-xl-92 {
    margin-top: 92px !important;
    margin-bottom: 92px !important;
  }
  .mx-xl-92 {
    margin-left: 92px !important;
    margin-right: 92px !important;
  }
  .p-xl-92 {
    padding: 92px !important;
  }
  .pt-xl-92 {
    padding-top: 92px !important;
  }
  .pb-xl-92 {
    padding-bottom: 92px !important;
  }
  .pl-xl-92 {
    padding-left: 92px !important;
  }
  .pr-xl-92 {
    padding-right: 92px !important;
  }
  .py-xl-92 {
    padding-top: 92px !important;
    padding-bottom: 92px !important;
  }
  .px-xl-92 {
    padding-left: 92px !important;
    padding-right: 92px !important;
  }
}
.m-92 {
  margin: 92px !important;
}

.mt-92 {
  margin-top: 92px !important;
}

.mb-92 {
  margin-bottom: 92px !important;
}

.ml-92 {
  margin-left: 92px !important;
}

.mr-92 {
  margin-right: 92px !important;
}

.my-92 {
  margin-top: 92px !important;
  margin-bottom: 92px !important;
}

.mx-92 {
  margin-left: 92px !important;
  margin-right: 92px !important;
}

.p-92 {
  padding: 92px !important;
}

.pt-92 {
  padding-top: 92px !important;
}

.pb-92 {
  padding-bottom: 92px !important;
}

.pl-92 {
  padding-left: 92px !important;
}

.pr-92 {
  padding-right: 92px !important;
}

.py-92 {
  padding-top: 92px !important;
  padding-bottom: 92px !important;
}

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

@media (max-width: 576px) {
  .m-sm-93 {
    margin: 93px !important;
  }
  .mt-sm-93 {
    margin-top: 93px !important;
  }
  .mb-sm-93 {
    margin-bottom: 93px !important;
  }
  .ml-sm-93 {
    margin-left: 93px !important;
  }
  .mr-sm-93 {
    margin-right: 93px !important;
  }
  .my-sm-93 {
    margin-top: 93px !important;
    margin-bottom: 93px !important;
  }
  .mx-sm-93 {
    margin-left: 93px !important;
    margin-right: 93px !important;
  }
  .p-sm-93 {
    padding: 93px !important;
  }
  .pt-sm-93 {
    padding-top: 93px !important;
  }
  .pb-sm-93 {
    padding-bottom: 93px !important;
  }
  .pl-sm-93 {
    padding-left: 93px !important;
  }
  .pr-sm-93 {
    padding-right: 93px !important;
  }
  .py-sm-93 {
    padding-top: 93px !important;
    padding-bottom: 93px !important;
  }
  .px-sm-93 {
    padding-left: 93px !important;
    padding-right: 93px !important;
  }
}
@media (max-width: 768px) {
  .m-md-93 {
    margin: 93px !important;
  }
  .mt-md-93 {
    margin-top: 93px !important;
  }
  .mb-md-93 {
    margin-bottom: 93px !important;
  }
  .ml-md-93 {
    margin-left: 93px !important;
  }
  .mr-md-93 {
    margin-right: 93px !important;
  }
  .my-md-93 {
    margin-top: 93px !important;
    margin-bottom: 93px !important;
  }
  .mx-md-93 {
    margin-left: 93px !important;
    margin-right: 93px !important;
  }
  .p-md-93 {
    padding: 93px !important;
  }
  .pt-md-93 {
    padding-top: 93px !important;
  }
  .pb-md-93 {
    padding-bottom: 93px !important;
  }
  .pl-md-93 {
    padding-left: 93px !important;
  }
  .pr-md-93 {
    padding-right: 93px !important;
  }
  .py-md-93 {
    padding-top: 93px !important;
    padding-bottom: 93px !important;
  }
  .px-md-93 {
    padding-left: 93px !important;
    padding-right: 93px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-93 {
    margin: 93px !important;
  }
  .mt-lg-93 {
    margin-top: 93px !important;
  }
  .mb-lg-93 {
    margin-bottom: 93px !important;
  }
  .ml-lg-93 {
    margin-left: 93px !important;
  }
  .mr-lg-93 {
    margin-right: 93px !important;
  }
  .my-lg-93 {
    margin-top: 93px !important;
    margin-bottom: 93px !important;
  }
  .mx-lg-93 {
    margin-left: 93px !important;
    margin-right: 93px !important;
  }
  .p-lg-93 {
    padding: 93px !important;
  }
  .pt-lg-93 {
    padding-top: 93px !important;
  }
  .pb-lg-93 {
    padding-bottom: 93px !important;
  }
  .pl-lg-93 {
    padding-left: 93px !important;
  }
  .pr-lg-93 {
    padding-right: 93px !important;
  }
  .py-lg-93 {
    padding-top: 93px !important;
    padding-bottom: 93px !important;
  }
  .px-lg-93 {
    padding-left: 93px !important;
    padding-right: 93px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-93 {
    margin: 93px !important;
  }
  .mt-xl-93 {
    margin-top: 93px !important;
  }
  .mb-xl-93 {
    margin-bottom: 93px !important;
  }
  .ml-xl-93 {
    margin-left: 93px !important;
  }
  .mr-xl-93 {
    margin-right: 93px !important;
  }
  .my-xl-93 {
    margin-top: 93px !important;
    margin-bottom: 93px !important;
  }
  .mx-xl-93 {
    margin-left: 93px !important;
    margin-right: 93px !important;
  }
  .p-xl-93 {
    padding: 93px !important;
  }
  .pt-xl-93 {
    padding-top: 93px !important;
  }
  .pb-xl-93 {
    padding-bottom: 93px !important;
  }
  .pl-xl-93 {
    padding-left: 93px !important;
  }
  .pr-xl-93 {
    padding-right: 93px !important;
  }
  .py-xl-93 {
    padding-top: 93px !important;
    padding-bottom: 93px !important;
  }
  .px-xl-93 {
    padding-left: 93px !important;
    padding-right: 93px !important;
  }
}
.m-93 {
  margin: 93px !important;
}

.mt-93 {
  margin-top: 93px !important;
}

.mb-93 {
  margin-bottom: 93px !important;
}

.ml-93 {
  margin-left: 93px !important;
}

.mr-93 {
  margin-right: 93px !important;
}

.my-93 {
  margin-top: 93px !important;
  margin-bottom: 93px !important;
}

.mx-93 {
  margin-left: 93px !important;
  margin-right: 93px !important;
}

.p-93 {
  padding: 93px !important;
}

.pt-93 {
  padding-top: 93px !important;
}

.pb-93 {
  padding-bottom: 93px !important;
}

.pl-93 {
  padding-left: 93px !important;
}

.pr-93 {
  padding-right: 93px !important;
}

.py-93 {
  padding-top: 93px !important;
  padding-bottom: 93px !important;
}

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

@media (max-width: 576px) {
  .m-sm-94 {
    margin: 94px !important;
  }
  .mt-sm-94 {
    margin-top: 94px !important;
  }
  .mb-sm-94 {
    margin-bottom: 94px !important;
  }
  .ml-sm-94 {
    margin-left: 94px !important;
  }
  .mr-sm-94 {
    margin-right: 94px !important;
  }
  .my-sm-94 {
    margin-top: 94px !important;
    margin-bottom: 94px !important;
  }
  .mx-sm-94 {
    margin-left: 94px !important;
    margin-right: 94px !important;
  }
  .p-sm-94 {
    padding: 94px !important;
  }
  .pt-sm-94 {
    padding-top: 94px !important;
  }
  .pb-sm-94 {
    padding-bottom: 94px !important;
  }
  .pl-sm-94 {
    padding-left: 94px !important;
  }
  .pr-sm-94 {
    padding-right: 94px !important;
  }
  .py-sm-94 {
    padding-top: 94px !important;
    padding-bottom: 94px !important;
  }
  .px-sm-94 {
    padding-left: 94px !important;
    padding-right: 94px !important;
  }
}
@media (max-width: 768px) {
  .m-md-94 {
    margin: 94px !important;
  }
  .mt-md-94 {
    margin-top: 94px !important;
  }
  .mb-md-94 {
    margin-bottom: 94px !important;
  }
  .ml-md-94 {
    margin-left: 94px !important;
  }
  .mr-md-94 {
    margin-right: 94px !important;
  }
  .my-md-94 {
    margin-top: 94px !important;
    margin-bottom: 94px !important;
  }
  .mx-md-94 {
    margin-left: 94px !important;
    margin-right: 94px !important;
  }
  .p-md-94 {
    padding: 94px !important;
  }
  .pt-md-94 {
    padding-top: 94px !important;
  }
  .pb-md-94 {
    padding-bottom: 94px !important;
  }
  .pl-md-94 {
    padding-left: 94px !important;
  }
  .pr-md-94 {
    padding-right: 94px !important;
  }
  .py-md-94 {
    padding-top: 94px !important;
    padding-bottom: 94px !important;
  }
  .px-md-94 {
    padding-left: 94px !important;
    padding-right: 94px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-94 {
    margin: 94px !important;
  }
  .mt-lg-94 {
    margin-top: 94px !important;
  }
  .mb-lg-94 {
    margin-bottom: 94px !important;
  }
  .ml-lg-94 {
    margin-left: 94px !important;
  }
  .mr-lg-94 {
    margin-right: 94px !important;
  }
  .my-lg-94 {
    margin-top: 94px !important;
    margin-bottom: 94px !important;
  }
  .mx-lg-94 {
    margin-left: 94px !important;
    margin-right: 94px !important;
  }
  .p-lg-94 {
    padding: 94px !important;
  }
  .pt-lg-94 {
    padding-top: 94px !important;
  }
  .pb-lg-94 {
    padding-bottom: 94px !important;
  }
  .pl-lg-94 {
    padding-left: 94px !important;
  }
  .pr-lg-94 {
    padding-right: 94px !important;
  }
  .py-lg-94 {
    padding-top: 94px !important;
    padding-bottom: 94px !important;
  }
  .px-lg-94 {
    padding-left: 94px !important;
    padding-right: 94px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-94 {
    margin: 94px !important;
  }
  .mt-xl-94 {
    margin-top: 94px !important;
  }
  .mb-xl-94 {
    margin-bottom: 94px !important;
  }
  .ml-xl-94 {
    margin-left: 94px !important;
  }
  .mr-xl-94 {
    margin-right: 94px !important;
  }
  .my-xl-94 {
    margin-top: 94px !important;
    margin-bottom: 94px !important;
  }
  .mx-xl-94 {
    margin-left: 94px !important;
    margin-right: 94px !important;
  }
  .p-xl-94 {
    padding: 94px !important;
  }
  .pt-xl-94 {
    padding-top: 94px !important;
  }
  .pb-xl-94 {
    padding-bottom: 94px !important;
  }
  .pl-xl-94 {
    padding-left: 94px !important;
  }
  .pr-xl-94 {
    padding-right: 94px !important;
  }
  .py-xl-94 {
    padding-top: 94px !important;
    padding-bottom: 94px !important;
  }
  .px-xl-94 {
    padding-left: 94px !important;
    padding-right: 94px !important;
  }
}
.m-94 {
  margin: 94px !important;
}

.mt-94 {
  margin-top: 94px !important;
}

.mb-94 {
  margin-bottom: 94px !important;
}

.ml-94 {
  margin-left: 94px !important;
}

.mr-94 {
  margin-right: 94px !important;
}

.my-94 {
  margin-top: 94px !important;
  margin-bottom: 94px !important;
}

.mx-94 {
  margin-left: 94px !important;
  margin-right: 94px !important;
}

.p-94 {
  padding: 94px !important;
}

.pt-94 {
  padding-top: 94px !important;
}

.pb-94 {
  padding-bottom: 94px !important;
}

.pl-94 {
  padding-left: 94px !important;
}

.pr-94 {
  padding-right: 94px !important;
}

.py-94 {
  padding-top: 94px !important;
  padding-bottom: 94px !important;
}

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

@media (max-width: 576px) {
  .m-sm-95 {
    margin: 95px !important;
  }
  .mt-sm-95 {
    margin-top: 95px !important;
  }
  .mb-sm-95 {
    margin-bottom: 95px !important;
  }
  .ml-sm-95 {
    margin-left: 95px !important;
  }
  .mr-sm-95 {
    margin-right: 95px !important;
  }
  .my-sm-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mx-sm-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .p-sm-95 {
    padding: 95px !important;
  }
  .pt-sm-95 {
    padding-top: 95px !important;
  }
  .pb-sm-95 {
    padding-bottom: 95px !important;
  }
  .pl-sm-95 {
    padding-left: 95px !important;
  }
  .pr-sm-95 {
    padding-right: 95px !important;
  }
  .py-sm-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .px-sm-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
}
@media (max-width: 768px) {
  .m-md-95 {
    margin: 95px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .ml-md-95 {
    margin-left: 95px !important;
  }
  .mr-md-95 {
    margin-right: 95px !important;
  }
  .my-md-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mx-md-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .p-md-95 {
    padding: 95px !important;
  }
  .pt-md-95 {
    padding-top: 95px !important;
  }
  .pb-md-95 {
    padding-bottom: 95px !important;
  }
  .pl-md-95 {
    padding-left: 95px !important;
  }
  .pr-md-95 {
    padding-right: 95px !important;
  }
  .py-md-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .px-md-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-95 {
    margin: 95px !important;
  }
  .mt-lg-95 {
    margin-top: 95px !important;
  }
  .mb-lg-95 {
    margin-bottom: 95px !important;
  }
  .ml-lg-95 {
    margin-left: 95px !important;
  }
  .mr-lg-95 {
    margin-right: 95px !important;
  }
  .my-lg-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mx-lg-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .p-lg-95 {
    padding: 95px !important;
  }
  .pt-lg-95 {
    padding-top: 95px !important;
  }
  .pb-lg-95 {
    padding-bottom: 95px !important;
  }
  .pl-lg-95 {
    padding-left: 95px !important;
  }
  .pr-lg-95 {
    padding-right: 95px !important;
  }
  .py-lg-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .px-lg-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-95 {
    margin: 95px !important;
  }
  .mt-xl-95 {
    margin-top: 95px !important;
  }
  .mb-xl-95 {
    margin-bottom: 95px !important;
  }
  .ml-xl-95 {
    margin-left: 95px !important;
  }
  .mr-xl-95 {
    margin-right: 95px !important;
  }
  .my-xl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mx-xl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .p-xl-95 {
    padding: 95px !important;
  }
  .pt-xl-95 {
    padding-top: 95px !important;
  }
  .pb-xl-95 {
    padding-bottom: 95px !important;
  }
  .pl-xl-95 {
    padding-left: 95px !important;
  }
  .pr-xl-95 {
    padding-right: 95px !important;
  }
  .py-xl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .px-xl-95 {
    padding-left: 95px !important;
    padding-right: 95px !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;
}

.my-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}

.mx-95 {
  margin-left: 95px !important;
  margin-right: 95px !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;
}

.py-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

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

@media (max-width: 576px) {
  .m-sm-96 {
    margin: 96px !important;
  }
  .mt-sm-96 {
    margin-top: 96px !important;
  }
  .mb-sm-96 {
    margin-bottom: 96px !important;
  }
  .ml-sm-96 {
    margin-left: 96px !important;
  }
  .mr-sm-96 {
    margin-right: 96px !important;
  }
  .my-sm-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .mx-sm-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .p-sm-96 {
    padding: 96px !important;
  }
  .pt-sm-96 {
    padding-top: 96px !important;
  }
  .pb-sm-96 {
    padding-bottom: 96px !important;
  }
  .pl-sm-96 {
    padding-left: 96px !important;
  }
  .pr-sm-96 {
    padding-right: 96px !important;
  }
  .py-sm-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .px-sm-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
}
@media (max-width: 768px) {
  .m-md-96 {
    margin: 96px !important;
  }
  .mt-md-96 {
    margin-top: 96px !important;
  }
  .mb-md-96 {
    margin-bottom: 96px !important;
  }
  .ml-md-96 {
    margin-left: 96px !important;
  }
  .mr-md-96 {
    margin-right: 96px !important;
  }
  .my-md-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .mx-md-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .p-md-96 {
    padding: 96px !important;
  }
  .pt-md-96 {
    padding-top: 96px !important;
  }
  .pb-md-96 {
    padding-bottom: 96px !important;
  }
  .pl-md-96 {
    padding-left: 96px !important;
  }
  .pr-md-96 {
    padding-right: 96px !important;
  }
  .py-md-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .px-md-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-96 {
    margin: 96px !important;
  }
  .mt-lg-96 {
    margin-top: 96px !important;
  }
  .mb-lg-96 {
    margin-bottom: 96px !important;
  }
  .ml-lg-96 {
    margin-left: 96px !important;
  }
  .mr-lg-96 {
    margin-right: 96px !important;
  }
  .my-lg-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .mx-lg-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .p-lg-96 {
    padding: 96px !important;
  }
  .pt-lg-96 {
    padding-top: 96px !important;
  }
  .pb-lg-96 {
    padding-bottom: 96px !important;
  }
  .pl-lg-96 {
    padding-left: 96px !important;
  }
  .pr-lg-96 {
    padding-right: 96px !important;
  }
  .py-lg-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .px-lg-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-96 {
    margin: 96px !important;
  }
  .mt-xl-96 {
    margin-top: 96px !important;
  }
  .mb-xl-96 {
    margin-bottom: 96px !important;
  }
  .ml-xl-96 {
    margin-left: 96px !important;
  }
  .mr-xl-96 {
    margin-right: 96px !important;
  }
  .my-xl-96 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .mx-xl-96 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .p-xl-96 {
    padding: 96px !important;
  }
  .pt-xl-96 {
    padding-top: 96px !important;
  }
  .pb-xl-96 {
    padding-bottom: 96px !important;
  }
  .pl-xl-96 {
    padding-left: 96px !important;
  }
  .pr-xl-96 {
    padding-right: 96px !important;
  }
  .py-xl-96 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
  .px-xl-96 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
}
.m-96 {
  margin: 96px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.mb-96 {
  margin-bottom: 96px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.my-96 {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.mx-96 {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.p-96 {
  padding: 96px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

.pb-96 {
  padding-bottom: 96px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

.py-96 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

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

@media (max-width: 576px) {
  .m-sm-97 {
    margin: 97px !important;
  }
  .mt-sm-97 {
    margin-top: 97px !important;
  }
  .mb-sm-97 {
    margin-bottom: 97px !important;
  }
  .ml-sm-97 {
    margin-left: 97px !important;
  }
  .mr-sm-97 {
    margin-right: 97px !important;
  }
  .my-sm-97 {
    margin-top: 97px !important;
    margin-bottom: 97px !important;
  }
  .mx-sm-97 {
    margin-left: 97px !important;
    margin-right: 97px !important;
  }
  .p-sm-97 {
    padding: 97px !important;
  }
  .pt-sm-97 {
    padding-top: 97px !important;
  }
  .pb-sm-97 {
    padding-bottom: 97px !important;
  }
  .pl-sm-97 {
    padding-left: 97px !important;
  }
  .pr-sm-97 {
    padding-right: 97px !important;
  }
  .py-sm-97 {
    padding-top: 97px !important;
    padding-bottom: 97px !important;
  }
  .px-sm-97 {
    padding-left: 97px !important;
    padding-right: 97px !important;
  }
}
@media (max-width: 768px) {
  .m-md-97 {
    margin: 97px !important;
  }
  .mt-md-97 {
    margin-top: 97px !important;
  }
  .mb-md-97 {
    margin-bottom: 97px !important;
  }
  .ml-md-97 {
    margin-left: 97px !important;
  }
  .mr-md-97 {
    margin-right: 97px !important;
  }
  .my-md-97 {
    margin-top: 97px !important;
    margin-bottom: 97px !important;
  }
  .mx-md-97 {
    margin-left: 97px !important;
    margin-right: 97px !important;
  }
  .p-md-97 {
    padding: 97px !important;
  }
  .pt-md-97 {
    padding-top: 97px !important;
  }
  .pb-md-97 {
    padding-bottom: 97px !important;
  }
  .pl-md-97 {
    padding-left: 97px !important;
  }
  .pr-md-97 {
    padding-right: 97px !important;
  }
  .py-md-97 {
    padding-top: 97px !important;
    padding-bottom: 97px !important;
  }
  .px-md-97 {
    padding-left: 97px !important;
    padding-right: 97px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-97 {
    margin: 97px !important;
  }
  .mt-lg-97 {
    margin-top: 97px !important;
  }
  .mb-lg-97 {
    margin-bottom: 97px !important;
  }
  .ml-lg-97 {
    margin-left: 97px !important;
  }
  .mr-lg-97 {
    margin-right: 97px !important;
  }
  .my-lg-97 {
    margin-top: 97px !important;
    margin-bottom: 97px !important;
  }
  .mx-lg-97 {
    margin-left: 97px !important;
    margin-right: 97px !important;
  }
  .p-lg-97 {
    padding: 97px !important;
  }
  .pt-lg-97 {
    padding-top: 97px !important;
  }
  .pb-lg-97 {
    padding-bottom: 97px !important;
  }
  .pl-lg-97 {
    padding-left: 97px !important;
  }
  .pr-lg-97 {
    padding-right: 97px !important;
  }
  .py-lg-97 {
    padding-top: 97px !important;
    padding-bottom: 97px !important;
  }
  .px-lg-97 {
    padding-left: 97px !important;
    padding-right: 97px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-97 {
    margin: 97px !important;
  }
  .mt-xl-97 {
    margin-top: 97px !important;
  }
  .mb-xl-97 {
    margin-bottom: 97px !important;
  }
  .ml-xl-97 {
    margin-left: 97px !important;
  }
  .mr-xl-97 {
    margin-right: 97px !important;
  }
  .my-xl-97 {
    margin-top: 97px !important;
    margin-bottom: 97px !important;
  }
  .mx-xl-97 {
    margin-left: 97px !important;
    margin-right: 97px !important;
  }
  .p-xl-97 {
    padding: 97px !important;
  }
  .pt-xl-97 {
    padding-top: 97px !important;
  }
  .pb-xl-97 {
    padding-bottom: 97px !important;
  }
  .pl-xl-97 {
    padding-left: 97px !important;
  }
  .pr-xl-97 {
    padding-right: 97px !important;
  }
  .py-xl-97 {
    padding-top: 97px !important;
    padding-bottom: 97px !important;
  }
  .px-xl-97 {
    padding-left: 97px !important;
    padding-right: 97px !important;
  }
}
.m-97 {
  margin: 97px !important;
}

.mt-97 {
  margin-top: 97px !important;
}

.mb-97 {
  margin-bottom: 97px !important;
}

.ml-97 {
  margin-left: 97px !important;
}

.mr-97 {
  margin-right: 97px !important;
}

.my-97 {
  margin-top: 97px !important;
  margin-bottom: 97px !important;
}

.mx-97 {
  margin-left: 97px !important;
  margin-right: 97px !important;
}

.p-97 {
  padding: 97px !important;
}

.pt-97 {
  padding-top: 97px !important;
}

.pb-97 {
  padding-bottom: 97px !important;
}

.pl-97 {
  padding-left: 97px !important;
}

.pr-97 {
  padding-right: 97px !important;
}

.py-97 {
  padding-top: 97px !important;
  padding-bottom: 97px !important;
}

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

@media (max-width: 576px) {
  .m-sm-98 {
    margin: 98px !important;
  }
  .mt-sm-98 {
    margin-top: 98px !important;
  }
  .mb-sm-98 {
    margin-bottom: 98px !important;
  }
  .ml-sm-98 {
    margin-left: 98px !important;
  }
  .mr-sm-98 {
    margin-right: 98px !important;
  }
  .my-sm-98 {
    margin-top: 98px !important;
    margin-bottom: 98px !important;
  }
  .mx-sm-98 {
    margin-left: 98px !important;
    margin-right: 98px !important;
  }
  .p-sm-98 {
    padding: 98px !important;
  }
  .pt-sm-98 {
    padding-top: 98px !important;
  }
  .pb-sm-98 {
    padding-bottom: 98px !important;
  }
  .pl-sm-98 {
    padding-left: 98px !important;
  }
  .pr-sm-98 {
    padding-right: 98px !important;
  }
  .py-sm-98 {
    padding-top: 98px !important;
    padding-bottom: 98px !important;
  }
  .px-sm-98 {
    padding-left: 98px !important;
    padding-right: 98px !important;
  }
}
@media (max-width: 768px) {
  .m-md-98 {
    margin: 98px !important;
  }
  .mt-md-98 {
    margin-top: 98px !important;
  }
  .mb-md-98 {
    margin-bottom: 98px !important;
  }
  .ml-md-98 {
    margin-left: 98px !important;
  }
  .mr-md-98 {
    margin-right: 98px !important;
  }
  .my-md-98 {
    margin-top: 98px !important;
    margin-bottom: 98px !important;
  }
  .mx-md-98 {
    margin-left: 98px !important;
    margin-right: 98px !important;
  }
  .p-md-98 {
    padding: 98px !important;
  }
  .pt-md-98 {
    padding-top: 98px !important;
  }
  .pb-md-98 {
    padding-bottom: 98px !important;
  }
  .pl-md-98 {
    padding-left: 98px !important;
  }
  .pr-md-98 {
    padding-right: 98px !important;
  }
  .py-md-98 {
    padding-top: 98px !important;
    padding-bottom: 98px !important;
  }
  .px-md-98 {
    padding-left: 98px !important;
    padding-right: 98px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-98 {
    margin: 98px !important;
  }
  .mt-lg-98 {
    margin-top: 98px !important;
  }
  .mb-lg-98 {
    margin-bottom: 98px !important;
  }
  .ml-lg-98 {
    margin-left: 98px !important;
  }
  .mr-lg-98 {
    margin-right: 98px !important;
  }
  .my-lg-98 {
    margin-top: 98px !important;
    margin-bottom: 98px !important;
  }
  .mx-lg-98 {
    margin-left: 98px !important;
    margin-right: 98px !important;
  }
  .p-lg-98 {
    padding: 98px !important;
  }
  .pt-lg-98 {
    padding-top: 98px !important;
  }
  .pb-lg-98 {
    padding-bottom: 98px !important;
  }
  .pl-lg-98 {
    padding-left: 98px !important;
  }
  .pr-lg-98 {
    padding-right: 98px !important;
  }
  .py-lg-98 {
    padding-top: 98px !important;
    padding-bottom: 98px !important;
  }
  .px-lg-98 {
    padding-left: 98px !important;
    padding-right: 98px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-98 {
    margin: 98px !important;
  }
  .mt-xl-98 {
    margin-top: 98px !important;
  }
  .mb-xl-98 {
    margin-bottom: 98px !important;
  }
  .ml-xl-98 {
    margin-left: 98px !important;
  }
  .mr-xl-98 {
    margin-right: 98px !important;
  }
  .my-xl-98 {
    margin-top: 98px !important;
    margin-bottom: 98px !important;
  }
  .mx-xl-98 {
    margin-left: 98px !important;
    margin-right: 98px !important;
  }
  .p-xl-98 {
    padding: 98px !important;
  }
  .pt-xl-98 {
    padding-top: 98px !important;
  }
  .pb-xl-98 {
    padding-bottom: 98px !important;
  }
  .pl-xl-98 {
    padding-left: 98px !important;
  }
  .pr-xl-98 {
    padding-right: 98px !important;
  }
  .py-xl-98 {
    padding-top: 98px !important;
    padding-bottom: 98px !important;
  }
  .px-xl-98 {
    padding-left: 98px !important;
    padding-right: 98px !important;
  }
}
.m-98 {
  margin: 98px !important;
}

.mt-98 {
  margin-top: 98px !important;
}

.mb-98 {
  margin-bottom: 98px !important;
}

.ml-98 {
  margin-left: 98px !important;
}

.mr-98 {
  margin-right: 98px !important;
}

.my-98 {
  margin-top: 98px !important;
  margin-bottom: 98px !important;
}

.mx-98 {
  margin-left: 98px !important;
  margin-right: 98px !important;
}

.p-98 {
  padding: 98px !important;
}

.pt-98 {
  padding-top: 98px !important;
}

.pb-98 {
  padding-bottom: 98px !important;
}

.pl-98 {
  padding-left: 98px !important;
}

.pr-98 {
  padding-right: 98px !important;
}

.py-98 {
  padding-top: 98px !important;
  padding-bottom: 98px !important;
}

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

@media (max-width: 576px) {
  .m-sm-99 {
    margin: 99px !important;
  }
  .mt-sm-99 {
    margin-top: 99px !important;
  }
  .mb-sm-99 {
    margin-bottom: 99px !important;
  }
  .ml-sm-99 {
    margin-left: 99px !important;
  }
  .mr-sm-99 {
    margin-right: 99px !important;
  }
  .my-sm-99 {
    margin-top: 99px !important;
    margin-bottom: 99px !important;
  }
  .mx-sm-99 {
    margin-left: 99px !important;
    margin-right: 99px !important;
  }
  .p-sm-99 {
    padding: 99px !important;
  }
  .pt-sm-99 {
    padding-top: 99px !important;
  }
  .pb-sm-99 {
    padding-bottom: 99px !important;
  }
  .pl-sm-99 {
    padding-left: 99px !important;
  }
  .pr-sm-99 {
    padding-right: 99px !important;
  }
  .py-sm-99 {
    padding-top: 99px !important;
    padding-bottom: 99px !important;
  }
  .px-sm-99 {
    padding-left: 99px !important;
    padding-right: 99px !important;
  }
}
@media (max-width: 768px) {
  .m-md-99 {
    margin: 99px !important;
  }
  .mt-md-99 {
    margin-top: 99px !important;
  }
  .mb-md-99 {
    margin-bottom: 99px !important;
  }
  .ml-md-99 {
    margin-left: 99px !important;
  }
  .mr-md-99 {
    margin-right: 99px !important;
  }
  .my-md-99 {
    margin-top: 99px !important;
    margin-bottom: 99px !important;
  }
  .mx-md-99 {
    margin-left: 99px !important;
    margin-right: 99px !important;
  }
  .p-md-99 {
    padding: 99px !important;
  }
  .pt-md-99 {
    padding-top: 99px !important;
  }
  .pb-md-99 {
    padding-bottom: 99px !important;
  }
  .pl-md-99 {
    padding-left: 99px !important;
  }
  .pr-md-99 {
    padding-right: 99px !important;
  }
  .py-md-99 {
    padding-top: 99px !important;
    padding-bottom: 99px !important;
  }
  .px-md-99 {
    padding-left: 99px !important;
    padding-right: 99px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-99 {
    margin: 99px !important;
  }
  .mt-lg-99 {
    margin-top: 99px !important;
  }
  .mb-lg-99 {
    margin-bottom: 99px !important;
  }
  .ml-lg-99 {
    margin-left: 99px !important;
  }
  .mr-lg-99 {
    margin-right: 99px !important;
  }
  .my-lg-99 {
    margin-top: 99px !important;
    margin-bottom: 99px !important;
  }
  .mx-lg-99 {
    margin-left: 99px !important;
    margin-right: 99px !important;
  }
  .p-lg-99 {
    padding: 99px !important;
  }
  .pt-lg-99 {
    padding-top: 99px !important;
  }
  .pb-lg-99 {
    padding-bottom: 99px !important;
  }
  .pl-lg-99 {
    padding-left: 99px !important;
  }
  .pr-lg-99 {
    padding-right: 99px !important;
  }
  .py-lg-99 {
    padding-top: 99px !important;
    padding-bottom: 99px !important;
  }
  .px-lg-99 {
    padding-left: 99px !important;
    padding-right: 99px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-99 {
    margin: 99px !important;
  }
  .mt-xl-99 {
    margin-top: 99px !important;
  }
  .mb-xl-99 {
    margin-bottom: 99px !important;
  }
  .ml-xl-99 {
    margin-left: 99px !important;
  }
  .mr-xl-99 {
    margin-right: 99px !important;
  }
  .my-xl-99 {
    margin-top: 99px !important;
    margin-bottom: 99px !important;
  }
  .mx-xl-99 {
    margin-left: 99px !important;
    margin-right: 99px !important;
  }
  .p-xl-99 {
    padding: 99px !important;
  }
  .pt-xl-99 {
    padding-top: 99px !important;
  }
  .pb-xl-99 {
    padding-bottom: 99px !important;
  }
  .pl-xl-99 {
    padding-left: 99px !important;
  }
  .pr-xl-99 {
    padding-right: 99px !important;
  }
  .py-xl-99 {
    padding-top: 99px !important;
    padding-bottom: 99px !important;
  }
  .px-xl-99 {
    padding-left: 99px !important;
    padding-right: 99px !important;
  }
}
.m-99 {
  margin: 99px !important;
}

.mt-99 {
  margin-top: 99px !important;
}

.mb-99 {
  margin-bottom: 99px !important;
}

.ml-99 {
  margin-left: 99px !important;
}

.mr-99 {
  margin-right: 99px !important;
}

.my-99 {
  margin-top: 99px !important;
  margin-bottom: 99px !important;
}

.mx-99 {
  margin-left: 99px !important;
  margin-right: 99px !important;
}

.p-99 {
  padding: 99px !important;
}

.pt-99 {
  padding-top: 99px !important;
}

.pb-99 {
  padding-bottom: 99px !important;
}

.pl-99 {
  padding-left: 99px !important;
}

.pr-99 {
  padding-right: 99px !important;
}

.py-99 {
  padding-top: 99px !important;
  padding-bottom: 99px !important;
}

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

@media (max-width: 576px) {
  .m-sm-100 {
    margin: 100px !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .ml-sm-100 {
    margin-left: 100px !important;
  }
  .mr-sm-100 {
    margin-right: 100px !important;
  }
  .my-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mx-sm-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .p-sm-100 {
    padding: 100px !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
  .pl-sm-100 {
    padding-left: 100px !important;
  }
  .pr-sm-100 {
    padding-right: 100px !important;
  }
  .py-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .px-sm-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 768px) {
  .m-md-100 {
    margin: 100px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .ml-md-100 {
    margin-left: 100px !important;
  }
  .mr-md-100 {
    margin-right: 100px !important;
  }
  .my-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mx-md-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .p-md-100 {
    padding: 100px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
  .pl-md-100 {
    padding-left: 100px !important;
  }
  .pr-md-100 {
    padding-right: 100px !important;
  }
  .py-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .px-md-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 768px) {
  .m-lg-100 {
    margin: 100px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .ml-lg-100 {
    margin-left: 100px !important;
  }
  .mr-lg-100 {
    margin-right: 100px !important;
  }
  .my-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mx-lg-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .p-lg-100 {
    padding: 100px !important;
  }
  .pt-lg-100 {
    padding-top: 100px !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
  .pl-lg-100 {
    padding-left: 100px !important;
  }
  .pr-lg-100 {
    padding-right: 100px !important;
  }
  .py-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .px-lg-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (max-width: 1200px) {
  .m-xl-100 {
    margin: 100px !important;
  }
  .mt-xl-100 {
    margin-top: 100px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .ml-xl-100 {
    margin-left: 100px !important;
  }
  .mr-xl-100 {
    margin-right: 100px !important;
  }
  .my-xl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mx-xl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .p-xl-100 {
    padding: 100px !important;
  }
  .pt-xl-100 {
    padding-top: 100px !important;
  }
  .pb-xl-100 {
    padding-bottom: 100px !important;
  }
  .pl-xl-100 {
    padding-left: 100px !important;
  }
  .pr-xl-100 {
    padding-right: 100px !important;
  }
  .py-xl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .px-xl-100 {
    padding-left: 100px !important;
    padding-right: 100px !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;
}

.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.mx-100 {
  margin-left: 100px !important;
  margin-right: 100px !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;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

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

.m-auto {
  margin: auto;
}

.mt-auto,
.my-auto {
  margin-top: auto;
}

.mr-auto,
.mx-auto {
  margin-right: auto;
}

.mb-auto,
.my-auto {
  margin-bottom: auto;
}

.ml-auto,
.mx-auto {
  margin-left: auto;
}

.hola {
  color: black;
}

.avatar {
  width: 150px;
  min-width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.avatar img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}

.h-box {
  display: flex;
  flex-flow: column;
  border-radius: var(--rounded-md);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.2);
}
.h-box__image {
  display: flex;
  justify-content: center;
  padding: 0 2rem 2rem 2rem;
  width: 100%;
  background: var(--white);
}
.h-box__image img {
  max-height: 120px;
}
.h-box__content {
  width: 100%;
  background: var(--beige-1100);
  border-radius: var(--rounded-md) var(--rounded-md) 0 0;
  padding: 2rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
.h-box__content span {
  font-size: var(--font-size-16);
}
.h-box__content h3 {
  margin: 0px;
  font-size: var(--font-size-18);
}
.h-box__content h2 {
  margin: 0px;
  font-size: var(--font-size-50);
}
.h-box__content h2.small {
  font-size: var(--font-size-30);
}

@media (min-width: 992px) {
  .h-box {
    flex-flow: row;
  }
  .h-box__image {
    padding: 0 5rem 2rem 5rem;
    width: 40%;
  }
  .h-box__image img {
    max-height: inherit;
  }
  .h-box__content {
    flex-flow: row;
    justify-content: space-between;
    flex-direction: row;
    border-radius: var(--rounded-md) 0 0 var(--rounded-md);
    width: 76%;
  }
  .h-box__content h3 {
    margin: 0px;
    font-size: var(--font-size-24);
  }
  .h-box__content h2 {
    font-size: var(--font-size-60);
  }
}
button,
.button {
  position: relative;
  text-decoration: none;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 0.4rem 1.4rem;
  font-size: var(--font-size-16);
  border-radius: 20px;
  cursor: default;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end stretch;
  z-index: 1;
  transition: all 1s ease;
  cursor: pointer;
}
button:hover,
.button:hover {
  background: var(--black);
  color: var(--white);
}
button[disabled], button.disabled,
.button[disabled],
.button.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.card {
  background: var(--white);
  border-radius: 0 var(--rounded-md) 0 0;
  position: relative;
  overflow: hidden;
  height: 366px;
}
.card:hover .card__image {
  transform: scale(1.1);
  transition-delay: 0s;
}
.card--big-rounded {
  border-radius: 0 var(--rounded-card) 0 0;
}
.card__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
  transition: var(--transition);
}
.card__shadow {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: 0;
  left: 0;
  padding: 2rem 1rem;
  color: var(--white);
  width: 100%;
  height: 100%;
}
.card__shadow h3 {
  position: relative;
  color: var(--white);
  font-size: var(--font-size-32);
  z-index: 1;
}
.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  background: var(--white);
  border-radius: 0 var(--rounded-md) 0 0;
  padding: 1rem;
}
.card.reveal img {
  filter: blur(4px);
  transition-delay: 0.5s;
}
.card.reveal--visible img {
  filter: blur(0);
}

@media (min-width: 992px) {
  .card {
    padding: 2rem;
  }
  .card.doble-padding {
    padding: 4rem;
  }
}
.customCheckbox {
  position: relative;
  display: flex;
  align-items: center;
}
.customCheckbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}
.customCheckbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 14px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.customCheckbox input:checked + label:before {
  background: var(--orange-500);
  border: 2px solid var(--orange-500);
}
.customCheckbox label {
  position: relative;
  cursor: pointer;
}
.customCheckbox label:before {
  content: "";
  -webkit-appearance: none;
  background: var(--white);
  border: 2px solid var(--orange-500);
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: var(--rounded-sm);
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: all 900ms cubic-bezier(0.19, 1, 0.155, 1.01) 0s;
}

.footer {
  background: var(--grey-30);
  border-radius: 0 var(--rounded-lg) 0 0;
  padding: 0.5rem 1rem;
  width: 100%;
  bottom: 0;
  position: relative;
}
.footer__logo {
  display: block;
  max-height: 48px;
}
.footer__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 3rem 0 2rem 0;
  gap: 2rem;
}
.footer__newsletter h3 {
  font-size: var(--font-size-24);
}
.footer__newsletter p {
  font-size: var(--font-size-14);
}
.footer__newsletter p span {
  color: var(--grey-50);
}
.footer__newsletter p a {
  font-weight: 600;
}
.footer__newsletter p a:hover {
  color: var(--primary);
}
.footer__newsletter .small_legal p {
  font-size: var(--font-size-12);
}
.footer__nav {
  display: flex;
  gap: 4rem;
}
.footer__nav ul {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.footer__nav ul li a:hover {
  color: var(--primary);
}
.footer__extra {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}
.footer__extra .share {
  display: flex;
  gap: 0.5rem;
}
.footer__extra .share li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 50%;
}
.footer__extra .share li a:hover {
  background: var(--black);
  color: var(--white);
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  width: 100%;
}
.footer__legal ul {
  display: flex;
  gap: 1rem;
}
.footer__legal ul li a:hover {
  color: var(--primary);
}
.footer .go-top {
  display: block;
  width: 46px;
  height: 46px;
  background: var(--grey-30);
  border-radius: 50%;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
.footer .go-top span {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: rotate(-45deg) translateX(-70%);
}
.footer .go-top::after {
  content: "";
  display: block;
  width: 1px;
  background: var(--black);
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: move 2s infinite;
}
@keyframes move {
  0% {
    height: 23px;
  }
  100% {
    height: 0px;
  }
}

@media (min-width: 992px) {
  .footer__extra {
    text-align: right;
    align-items: end;
  }
  .footer__extra .share {
    justify-content: flex-end;
  }
}
.grid {
  display: grid;
  gap: 1rem;
  position: relative;
  grid-auto-flow: row dense;
}
.grid--small {
  grid-template-columns: 1fr;
}
.grid--medium {
  grid-template-columns: 1fr;
}
.grid--big {
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .grid {
    display: grid;
    gap: 1rem;
    position: relative;
    grid-auto-flow: row dense;
  }
  .grid--small {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
@media (min-width: 1175px) {
  .grid {
    display: grid;
    gap: 1rem;
    position: relative;
    grid-auto-flow: row dense;
  }
  .grid--small {
    grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
  }
  .grid--medium {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
  .grid--big {
    grid-template-columns: repeat(auto-fill, minmax(800px, 1fr));
  }
}
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  cursor: pointer;
}
.hamburger__content {
  display: block;
  width: 25px;
  height: 16px;
  position: relative;
}
.hamburger__content:after, .hamburger__content:before {
  content: "";
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: var(--rounded-md);
  position: absolute;
  transition: var(--transition);
}
.hamburger__content:after {
  top: 0;
  width: 100%;
}
.hamburger__content:before {
  bottom: 0;
  width: 60%;
}
.hamburger__content span {
  display: block;
  width: 80%;
  height: 2px;
  background: var(--black);
  border-radius: var(--rounded-md);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger.is-active .hamburger__content span {
  display: none;
}
.hamburger.is-active .hamburger__content:after, .hamburger.is-active .hamburger__content:before {
  width: 100%;
}
.hamburger.is-active .hamburger__content:after {
  transform: rotate(-45deg);
  top: 7px;
}
.hamburger.is-active .hamburger__content:before {
  transform: rotate(45deg);
  bottom: 7px;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 87px;
  position: sticky;
  top: 0;
  z-index: 4;
  transition: var(--transition);
  background: var(--white);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: block;
}
.header__logo img {
  width: 140px;
  height: 36px;
}
.header__navigation {
  position: absolute;
  left: -100%;
  top: 87px;
  width: 100%;
  padding: 2rem;
  min-height: calc(100vh - 87px);
  background: var(--white);
  transition: var(--transition);
}
.header__navigation.is-active {
  left: 0;
}
.header__navigation ul {
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
.header__navigation ul li a:hover {
  color: var(--primary);
}
.header__navigation ul li .submenu {
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.header__search {
  cursor: pointer;
}

.searcher {
  display: flex;
  align-items: center;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100vw;
  height: 0;
  background: var(--white);
  z-index: 4;
}
.searcher input {
  font-size: var(--font-size-20);
  font-family: var(--font-adamina);
}
.searcher__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--black);
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
}
.searcher__close:hover {
  background: var(--black);
  color: var(--white);
}
.searcher.is-active {
  top: 0;
  height: 100vh;
}

@media (min-width: 992px) {
  .header__navigation {
    position: relative;
    left: inherit;
    top: inherit;
    width: auto;
    padding: 0px;
    min-height: inherit;
    background: transparent;
  }
  .header__navigation ul {
    display: flex;
    flex-flow: row;
    align-items: center;
  }
  .header__navigation ul li {
    position: relative;
  }
  .header__navigation ul li:hover .submenu {
    opacity: 1;
    pointer-events: all;
  }
  .header__navigation ul li .submenu {
    margin-top: 0;
    position: absolute;
    background: var(--white);
    padding: 1rem;
    display: flex;
    flex-flow: column;
    border-radius: var(--rounded-sm);
    gap: 0.5rem;
    align-items: start;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
  }
}
.icon-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--orange-500);
}
.icon-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--orange-500);
}
.icon-link__icon svg {
  width: 50%;
}
.icon-link:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.modal.is-active {
  display: flex;
}
.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 1px solid var(--grey-70);
  color: var(--grey-70);
  border-radius: 50%;
  font-size: var(--font-size-20);
  transition: var(--transition);
}
.modal__close:hover {
  background: var(--grey-70);
  color: var(--white);
}
.modal__container {
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--rounded-md);
  overflow: visible;
  width: 800px;
  max-width: 90%;
  margin: 1rem;
  z-index: 1;
}
.modal__container__header {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
}
.modal__container__body {
  padding: 0 1rem 1rem 1rem;
  overflow: auto;
  max-height: calc(90vh - 90px);
}
.modal__container__body p strong {
  color: var(--orange-500);
}
.modal__container__body iframe {
  height: 420px;
  width: 100%;
  border-radius: var(--rounded-xl) 0 var(--rounded-xl) 0;
}
.modal .modal-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  opacity: 0.5;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.ppalSlider {
  border-radius: 0 var(--rounded-xl) 0 var(--rounded-xl);
  height: 590px;
}
.ppalSlider .swiper-wrapper .swiper-slide {
  height: auto;
  padding: 2px 0;
}
.ppalSlider__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}
.ppalSlider__content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--orange-500);
  border-radius: var(--rounded-md);
  color: var(--white);
  padding: 1rem;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ppalSlider__navigation {
  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 60px;
  border-radius: var(--rounded-md) 0 0 0;
  background: var(--white);
  z-index: 1;
}
.ppalSlider__navigation .swiper-button-next, .ppalSlider__navigation .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--black);
  position: relative;
  margin-top: 0px;
  top: inherit;
  left: inherit;
  right: inherit;
}
.ppalSlider__navigation .swiper-button-next::after, .ppalSlider__navigation .swiper-button-prev::after {
  display: none;
}

.table .thead {
  display: none;
}
.table .tbody__line {
  display: grid;
  grid-template-columns: 1fr 5fr;
  margin-bottom: 1rem;
}
.table .tbody__line:hover .tbody__init,
.table .tbody__line:hover .trow {
  background: var(--yellow);
}
.table .tbody__line .tbody__init {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  transition: var(--transition);
  padding: 1rem;
  min-width: 60px;
  border-radius: var(--rounded-md) 0 0 var(--rounded-md);
  height: 100%;
  border-right: 2px solid var(--white);
  font-size: var(--font-size-40);
}
.table .tbody__line .trow {
  display: flex;
  flex-flow: column;
  align-items: initial;
  width: 100%;
  background: var(--beige);
  transition: var(--transition);
  border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
}
.table .tbody__line .trow__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.4rem 1rem;
  border-bottom: 2px solid var(--white);
  font-size: var(--font-size-12);
}
.table .tbody__line .trow__item:first-child {
  margin-right: auto;
  text-align: left;
  font-size: var(--font-size-16);
}
.table .tbody__line .trow__item:last-child {
  border: 0px;
}
.table .tbody__line .trow__item .objective-state {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.table .tbody__line .trow__item .objective-state.done {
  background: var(--red);
}
.table .tbody__line .trow__item .objective-state.pending {
  background: var(--green);
}
.table .tbody__line .trow__item .objective-state.null {
  background: transparent;
}

table tr {
  border-bottom: 1px solid var(--grey-50);
  font-size: var(--font-size-14);
}
table tr td {
  padding: 0.4rem 0;
}

@media (min-width: 992px) {
  .table .thead {
    display: flex;
    align-items: center;
  }
  .table .thead__init {
    display: block;
    margin-right: 0.5rem;
    font-size: var(--font-size-14);
    font-weight: 800;
    text-align: center;
  }
  .table .thead .trow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 0.5rem 2rem;
  }
  .table .thead .trow__item {
    display: flex;
    min-width: 150px;
    align-items: center;
    margin: 0 2rem;
    text-align: center;
    font-size: var(--font-size-14);
    font-weight: 800;
  }
  .table .thead .trow__item:first-child {
    margin-right: auto;
  }
  .table .tbody__line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .table .tbody__line .tbody__init {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-right: 0.5rem;
    font-size: var(--font-size-16);
  }
  .table .tbody__line .trow {
    flex-flow: row;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: var(--rounded-md);
  }
  .table .tbody__line .trow__item {
    width: auto;
    min-width: 150px;
    margin: 0 2rem;
    text-align: center;
    padding: 0;
    border-bottom: 0px;
    font-size: var(--font-size-16);
  }
  .table .tbody__line .trow__item .objective-state {
    margin: 0 auto;
  }
}
.tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs__nav li {
  display: block;
  position: relative;
  margin: 0 1rem;
}
.tabs__nav li a {
  color: var(--text-color);
  font-size: var(--font-size-16);
  font-weight: 800;
}
.tabs__nav li:after {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orange-500);
  transform-origin: right center;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scaleX(0);
}
.tabs__nav li:hover a {
  color: var(--orange-500);
}
.tabs__nav li.is-active:after {
  transform-origin: left center;
  transform: scaleX(1);
}

@media (min-width: 992px) {
  .tabs__nav li a {
    font-size: var(--font-size-20);
  }
}
.tooltip {
  position: relative;
  margin: 0.5rem;
}
.tooltip:hover .tooltip__content {
  opacity: 1;
}
.tooltip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-70);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-70);
}
.tooltip__content {
  display: block;
  padding: 0.5rem;
  font-size: var(--font-size-14);
  background: var(--white);
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  border-radius: var(--rounded-md);
  transform: translateX(-50%);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--grey-60);
}
.tooltip__content:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border: 0 1px solid var(--grey-60);
}

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: var(--rounded-md);
  background: var(--black-alpha);
  overflow: hidden;
  width: 100%;
  height: 300px;
  cursor: pointer;
}
.video iframe {
  width: 100vw;
  height: 40vw;
  min-height: 40vh;
  min-width: 150vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video__play {
  width: 100%;
  height: 400px;
  text-align: center;
  position: absolute;
  display: table;
  z-index: 2;
  vertical-align: middle;
}
.video__play a {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  text-align: center;
}
.video__play a img {
  width: 140px;
  transition: var(--transition);
}
.video .video-close {
  display: none;
}
.video.is-active {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh !important;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  z-index: 3;
}
.video.is-active .video-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: var(--font-size-40);
  color: var(--white);
  border: 2px solid var(--white);
  position: fixed;
  top: 5rem;
  right: 1rem;
  cursor: pointer;
}
.video.is-active iframe {
  width: auto;
}
.video.is-active img {
  opacity: 0;
}

@media (min-width: 992px) {
  .video {
    height: 500px;
  }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-flow: row dense;
  grid-gap: 2rem;
}
.video-grid__item .video {
  height: 180px;
}
.video-grid__item .video__play {
  height: 68px;
}
.video-grid__item .video__play a img {
  width: 60px;
}
.video-grid__item__content {
  display: flex;
  flex-flow: column;
  padding: 1rem 0;
}

.full-video .video {
  border-radius: 0px;
}
.full-video .video iframe {
  height: 60vw;
}

.videoSwiper {
  height: 300px;
}
.videoSwiper.show {
  height: 100vh;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 3;
}
.videoSwiper.show .video {
  position: absolute;
}
.videoSwiper.show .swiper-pagination-bullet {
  opacity: 0;
  pointer-events: none;
}
.videoSwiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 1;
  width: 12px;
  height: 12px;
}
.videoSwiper .swiper-pagination-bullet-active {
  background: var(--orange-500);
}

@media (min-width: 992px) {
  .videoSwiper {
    height: 500px;
  }
}
.color-white {
  color: var(--white) !important;
}

.color-primary {
  color: var(--primary) !important;
}

.color-secondary {
  color: var(--secondary) !important;
}

.color-error {
  color: var(--error) !important;
}

.color-warning {
  color: var(--warning) !important;
}

.color-success {
  color: var(--success) !important;
}

.bg-white {
  background: var(--white) !important;
}

.bg-primary {
  background: var(--primary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.font-size-0 {
  font-size: 0rem !important;
}

.font-size-1 {
  font-size: 0.0625rem !important;
}

.font-size-2 {
  font-size: 0.125rem !important;
}

.font-size-3 {
  font-size: 0.1875rem !important;
}

.font-size-4 {
  font-size: 0.25rem !important;
}

.font-size-5 {
  font-size: 0.3125rem !important;
}

.font-size-6 {
  font-size: 0.375rem !important;
}

.font-size-7 {
  font-size: 0.4375rem !important;
}

.font-size-8 {
  font-size: 0.5rem !important;
}

.font-size-9 {
  font-size: 0.5625rem !important;
}

.font-size-10 {
  font-size: 0.625rem !important;
}

.font-size-11 {
  font-size: 0.6875rem !important;
}

.font-size-12 {
  font-size: 0.75rem !important;
}

.font-size-13 {
  font-size: 0.8125rem !important;
}

.font-size-14 {
  font-size: 0.875rem !important;
}

.font-size-15 {
  font-size: 0.9375rem !important;
}

.font-size-16 {
  font-size: 1rem !important;
}

.font-size-17 {
  font-size: 1.0625rem !important;
}

.font-size-18 {
  font-size: 1.125rem !important;
}

.font-size-19 {
  font-size: 1.1875rem !important;
}

.font-size-20 {
  font-size: 1.25rem !important;
}

.font-size-21 {
  font-size: 1.3125rem !important;
}

.font-size-22 {
  font-size: 1.375rem !important;
}

.font-size-23 {
  font-size: 1.4375rem !important;
}

.font-size-24 {
  font-size: 1.5rem !important;
}

.font-size-25 {
  font-size: 1.5625rem !important;
}

.font-size-26 {
  font-size: 1.625rem !important;
}

.font-size-27 {
  font-size: 1.6875rem !important;
}

.font-size-28 {
  font-size: 1.75rem !important;
}

.font-size-29 {
  font-size: 1.8125rem !important;
}

.font-size-30 {
  font-size: 1.875rem !important;
}

.font-size-31 {
  font-size: 1.9375rem !important;
}

.font-size-32 {
  font-size: 2rem !important;
}

.font-size-33 {
  font-size: 2.0625rem !important;
}

.font-size-34 {
  font-size: 2.125rem !important;
}

.font-size-35 {
  font-size: 2.1875rem !important;
}

.font-size-36 {
  font-size: 2.25rem !important;
}

.font-size-37 {
  font-size: 2.3125rem !important;
}

.font-size-38 {
  font-size: 2.375rem !important;
}

.font-size-39 {
  font-size: 2.4375rem !important;
}

.font-size-40 {
  font-size: 2.5rem !important;
}

.font-size-41 {
  font-size: 2.5625rem !important;
}

.font-size-42 {
  font-size: 2.625rem !important;
}

.font-size-43 {
  font-size: 2.6875rem !important;
}

.font-size-44 {
  font-size: 2.75rem !important;
}

.font-size-45 {
  font-size: 2.8125rem !important;
}

.font-size-46 {
  font-size: 2.875rem !important;
}

.font-size-47 {
  font-size: 2.9375rem !important;
}

.font-size-48 {
  font-size: 3rem !important;
}

.font-size-49 {
  font-size: 3.0625rem !important;
}

.font-size-50 {
  font-size: 3.125rem !important;
}

.font-size-51 {
  font-size: 3.1875rem !important;
}

.font-size-52 {
  font-size: 3.25rem !important;
}

.font-size-53 {
  font-size: 3.3125rem !important;
}

.font-size-54 {
  font-size: 3.375rem !important;
}

.font-size-55 {
  font-size: 3.4375rem !important;
}

.font-size-56 {
  font-size: 3.5rem !important;
}

.font-size-57 {
  font-size: 3.5625rem !important;
}

.font-size-58 {
  font-size: 3.625rem !important;
}

.font-size-59 {
  font-size: 3.6875rem !important;
}

.font-size-60 {
  font-size: 3.75rem !important;
}

.font-size-61 {
  font-size: 3.8125rem !important;
}

.font-size-62 {
  font-size: 3.875rem !important;
}

.font-size-63 {
  font-size: 3.9375rem !important;
}

.font-size-64 {
  font-size: 4rem !important;
}

.font-size-65 {
  font-size: 4.0625rem !important;
}

.font-size-66 {
  font-size: 4.125rem !important;
}

.font-size-67 {
  font-size: 4.1875rem !important;
}

.font-size-68 {
  font-size: 4.25rem !important;
}

.font-size-69 {
  font-size: 4.3125rem !important;
}

.font-size-70 {
  font-size: 4.375rem !important;
}

.font-size-71 {
  font-size: 4.4375rem !important;
}

.font-size-72 {
  font-size: 4.5rem !important;
}

.font-size-73 {
  font-size: 4.5625rem !important;
}

.font-size-74 {
  font-size: 4.625rem !important;
}

.font-size-75 {
  font-size: 4.6875rem !important;
}

.font-size-76 {
  font-size: 4.75rem !important;
}

.font-size-77 {
  font-size: 4.8125rem !important;
}

.font-size-78 {
  font-size: 4.875rem !important;
}

.font-size-79 {
  font-size: 4.9375rem !important;
}

.font-size-80 {
  font-size: 5rem !important;
}

.font-size-81 {
  font-size: 5.0625rem !important;
}

.font-size-82 {
  font-size: 5.125rem !important;
}

.font-size-83 {
  font-size: 5.1875rem !important;
}

.font-size-84 {
  font-size: 5.25rem !important;
}

.font-size-85 {
  font-size: 5.3125rem !important;
}

.font-size-86 {
  font-size: 5.375rem !important;
}

.font-size-87 {
  font-size: 5.4375rem !important;
}

.font-size-88 {
  font-size: 5.5rem !important;
}

.font-size-89 {
  font-size: 5.5625rem !important;
}

.font-size-90 {
  font-size: 5.625rem !important;
}

.font-size-91 {
  font-size: 5.6875rem !important;
}

.font-size-92 {
  font-size: 5.75rem !important;
}

.font-size-93 {
  font-size: 5.8125rem !important;
}

.font-size-94 {
  font-size: 5.875rem !important;
}

.font-size-95 {
  font-size: 5.9375rem !important;
}

.font-size-96 {
  font-size: 6rem !important;
}

.font-size-97 {
  font-size: 6.0625rem !important;
}

.font-size-98 {
  font-size: 6.125rem !important;
}

.font-size-99 {
  font-size: 6.1875rem !important;
}

.font-size-100 {
  font-size: 6.25rem !important;
}

@media (max-width: 1200px) {
  .font-size-xl-0 {
    font-size: 0rem !important;
  }
  .font-size-xl-1 {
    font-size: 0.0625rem !important;
  }
  .font-size-xl-2 {
    font-size: 0.125rem !important;
  }
  .font-size-xl-3 {
    font-size: 0.1875rem !important;
  }
  .font-size-xl-4 {
    font-size: 0.25rem !important;
  }
  .font-size-xl-5 {
    font-size: 0.3125rem !important;
  }
  .font-size-xl-6 {
    font-size: 0.375rem !important;
  }
  .font-size-xl-7 {
    font-size: 0.4375rem !important;
  }
  .font-size-xl-8 {
    font-size: 0.5rem !important;
  }
  .font-size-xl-9 {
    font-size: 0.5625rem !important;
  }
  .font-size-xl-10 {
    font-size: 0.625rem !important;
  }
  .font-size-xl-11 {
    font-size: 0.6875rem !important;
  }
  .font-size-xl-12 {
    font-size: 0.75rem !important;
  }
  .font-size-xl-13 {
    font-size: 0.8125rem !important;
  }
  .font-size-xl-14 {
    font-size: 0.875rem !important;
  }
  .font-size-xl-15 {
    font-size: 0.9375rem !important;
  }
  .font-size-xl-16 {
    font-size: 1rem !important;
  }
  .font-size-xl-17 {
    font-size: 1.0625rem !important;
  }
  .font-size-xl-18 {
    font-size: 1.125rem !important;
  }
  .font-size-xl-19 {
    font-size: 1.1875rem !important;
  }
  .font-size-xl-20 {
    font-size: 1.25rem !important;
  }
  .font-size-xl-21 {
    font-size: 1.3125rem !important;
  }
  .font-size-xl-22 {
    font-size: 1.375rem !important;
  }
  .font-size-xl-23 {
    font-size: 1.4375rem !important;
  }
  .font-size-xl-24 {
    font-size: 1.5rem !important;
  }
  .font-size-xl-25 {
    font-size: 1.5625rem !important;
  }
  .font-size-xl-26 {
    font-size: 1.625rem !important;
  }
  .font-size-xl-27 {
    font-size: 1.6875rem !important;
  }
  .font-size-xl-28 {
    font-size: 1.75rem !important;
  }
  .font-size-xl-29 {
    font-size: 1.8125rem !important;
  }
  .font-size-xl-30 {
    font-size: 1.875rem !important;
  }
  .font-size-xl-31 {
    font-size: 1.9375rem !important;
  }
  .font-size-xl-32 {
    font-size: 2rem !important;
  }
  .font-size-xl-33 {
    font-size: 2.0625rem !important;
  }
  .font-size-xl-34 {
    font-size: 2.125rem !important;
  }
  .font-size-xl-35 {
    font-size: 2.1875rem !important;
  }
  .font-size-xl-36 {
    font-size: 2.25rem !important;
  }
  .font-size-xl-37 {
    font-size: 2.3125rem !important;
  }
  .font-size-xl-38 {
    font-size: 2.375rem !important;
  }
  .font-size-xl-39 {
    font-size: 2.4375rem !important;
  }
  .font-size-xl-40 {
    font-size: 2.5rem !important;
  }
  .font-size-xl-41 {
    font-size: 2.5625rem !important;
  }
  .font-size-xl-42 {
    font-size: 2.625rem !important;
  }
  .font-size-xl-43 {
    font-size: 2.6875rem !important;
  }
  .font-size-xl-44 {
    font-size: 2.75rem !important;
  }
  .font-size-xl-45 {
    font-size: 2.8125rem !important;
  }
  .font-size-xl-46 {
    font-size: 2.875rem !important;
  }
  .font-size-xl-47 {
    font-size: 2.9375rem !important;
  }
  .font-size-xl-48 {
    font-size: 3rem !important;
  }
  .font-size-xl-49 {
    font-size: 3.0625rem !important;
  }
  .font-size-xl-50 {
    font-size: 3.125rem !important;
  }
  .font-size-xl-51 {
    font-size: 3.1875rem !important;
  }
  .font-size-xl-52 {
    font-size: 3.25rem !important;
  }
  .font-size-xl-53 {
    font-size: 3.3125rem !important;
  }
  .font-size-xl-54 {
    font-size: 3.375rem !important;
  }
  .font-size-xl-55 {
    font-size: 3.4375rem !important;
  }
  .font-size-xl-56 {
    font-size: 3.5rem !important;
  }
  .font-size-xl-57 {
    font-size: 3.5625rem !important;
  }
  .font-size-xl-58 {
    font-size: 3.625rem !important;
  }
  .font-size-xl-59 {
    font-size: 3.6875rem !important;
  }
  .font-size-xl-60 {
    font-size: 3.75rem !important;
  }
  .font-size-xl-61 {
    font-size: 3.8125rem !important;
  }
  .font-size-xl-62 {
    font-size: 3.875rem !important;
  }
  .font-size-xl-63 {
    font-size: 3.9375rem !important;
  }
  .font-size-xl-64 {
    font-size: 4rem !important;
  }
  .font-size-xl-65 {
    font-size: 4.0625rem !important;
  }
  .font-size-xl-66 {
    font-size: 4.125rem !important;
  }
  .font-size-xl-67 {
    font-size: 4.1875rem !important;
  }
  .font-size-xl-68 {
    font-size: 4.25rem !important;
  }
  .font-size-xl-69 {
    font-size: 4.3125rem !important;
  }
  .font-size-xl-70 {
    font-size: 4.375rem !important;
  }
  .font-size-xl-71 {
    font-size: 4.4375rem !important;
  }
  .font-size-xl-72 {
    font-size: 4.5rem !important;
  }
  .font-size-xl-73 {
    font-size: 4.5625rem !important;
  }
  .font-size-xl-74 {
    font-size: 4.625rem !important;
  }
  .font-size-xl-75 {
    font-size: 4.6875rem !important;
  }
  .font-size-xl-76 {
    font-size: 4.75rem !important;
  }
  .font-size-xl-77 {
    font-size: 4.8125rem !important;
  }
  .font-size-xl-78 {
    font-size: 4.875rem !important;
  }
  .font-size-xl-79 {
    font-size: 4.9375rem !important;
  }
  .font-size-xl-80 {
    font-size: 5rem !important;
  }
  .font-size-xl-81 {
    font-size: 5.0625rem !important;
  }
  .font-size-xl-82 {
    font-size: 5.125rem !important;
  }
  .font-size-xl-83 {
    font-size: 5.1875rem !important;
  }
  .font-size-xl-84 {
    font-size: 5.25rem !important;
  }
  .font-size-xl-85 {
    font-size: 5.3125rem !important;
  }
  .font-size-xl-86 {
    font-size: 5.375rem !important;
  }
  .font-size-xl-87 {
    font-size: 5.4375rem !important;
  }
  .font-size-xl-88 {
    font-size: 5.5rem !important;
  }
  .font-size-xl-89 {
    font-size: 5.5625rem !important;
  }
  .font-size-xl-90 {
    font-size: 5.625rem !important;
  }
  .font-size-xl-91 {
    font-size: 5.6875rem !important;
  }
  .font-size-xl-92 {
    font-size: 5.75rem !important;
  }
  .font-size-xl-93 {
    font-size: 5.8125rem !important;
  }
  .font-size-xl-94 {
    font-size: 5.875rem !important;
  }
  .font-size-xl-95 {
    font-size: 5.9375rem !important;
  }
  .font-size-xl-96 {
    font-size: 6rem !important;
  }
  .font-size-xl-97 {
    font-size: 6.0625rem !important;
  }
  .font-size-xl-98 {
    font-size: 6.125rem !important;
  }
  .font-size-xl-99 {
    font-size: 6.1875rem !important;
  }
  .font-size-xl-100 {
    font-size: 6.25rem !important;
  }
}
@media (max-width: 992px) {
  .font-size-lg-0 {
    font-size: 0rem !important;
  }
  .font-size-lg-1 {
    font-size: 0.0625rem !important;
  }
  .font-size-lg-2 {
    font-size: 0.125rem !important;
  }
  .font-size-lg-3 {
    font-size: 0.1875rem !important;
  }
  .font-size-lg-4 {
    font-size: 0.25rem !important;
  }
  .font-size-lg-5 {
    font-size: 0.3125rem !important;
  }
  .font-size-lg-6 {
    font-size: 0.375rem !important;
  }
  .font-size-lg-7 {
    font-size: 0.4375rem !important;
  }
  .font-size-lg-8 {
    font-size: 0.5rem !important;
  }
  .font-size-lg-9 {
    font-size: 0.5625rem !important;
  }
  .font-size-lg-10 {
    font-size: 0.625rem !important;
  }
  .font-size-lg-11 {
    font-size: 0.6875rem !important;
  }
  .font-size-lg-12 {
    font-size: 0.75rem !important;
  }
  .font-size-lg-13 {
    font-size: 0.8125rem !important;
  }
  .font-size-lg-14 {
    font-size: 0.875rem !important;
  }
  .font-size-lg-15 {
    font-size: 0.9375rem !important;
  }
  .font-size-lg-16 {
    font-size: 1rem !important;
  }
  .font-size-lg-17 {
    font-size: 1.0625rem !important;
  }
  .font-size-lg-18 {
    font-size: 1.125rem !important;
  }
  .font-size-lg-19 {
    font-size: 1.1875rem !important;
  }
  .font-size-lg-20 {
    font-size: 1.25rem !important;
  }
  .font-size-lg-21 {
    font-size: 1.3125rem !important;
  }
  .font-size-lg-22 {
    font-size: 1.375rem !important;
  }
  .font-size-lg-23 {
    font-size: 1.4375rem !important;
  }
  .font-size-lg-24 {
    font-size: 1.5rem !important;
  }
  .font-size-lg-25 {
    font-size: 1.5625rem !important;
  }
  .font-size-lg-26 {
    font-size: 1.625rem !important;
  }
  .font-size-lg-27 {
    font-size: 1.6875rem !important;
  }
  .font-size-lg-28 {
    font-size: 1.75rem !important;
  }
  .font-size-lg-29 {
    font-size: 1.8125rem !important;
  }
  .font-size-lg-30 {
    font-size: 1.875rem !important;
  }
  .font-size-lg-31 {
    font-size: 1.9375rem !important;
  }
  .font-size-lg-32 {
    font-size: 2rem !important;
  }
  .font-size-lg-33 {
    font-size: 2.0625rem !important;
  }
  .font-size-lg-34 {
    font-size: 2.125rem !important;
  }
  .font-size-lg-35 {
    font-size: 2.1875rem !important;
  }
  .font-size-lg-36 {
    font-size: 2.25rem !important;
  }
  .font-size-lg-37 {
    font-size: 2.3125rem !important;
  }
  .font-size-lg-38 {
    font-size: 2.375rem !important;
  }
  .font-size-lg-39 {
    font-size: 2.4375rem !important;
  }
  .font-size-lg-40 {
    font-size: 2.5rem !important;
  }
  .font-size-lg-41 {
    font-size: 2.5625rem !important;
  }
  .font-size-lg-42 {
    font-size: 2.625rem !important;
  }
  .font-size-lg-43 {
    font-size: 2.6875rem !important;
  }
  .font-size-lg-44 {
    font-size: 2.75rem !important;
  }
  .font-size-lg-45 {
    font-size: 2.8125rem !important;
  }
  .font-size-lg-46 {
    font-size: 2.875rem !important;
  }
  .font-size-lg-47 {
    font-size: 2.9375rem !important;
  }
  .font-size-lg-48 {
    font-size: 3rem !important;
  }
  .font-size-lg-49 {
    font-size: 3.0625rem !important;
  }
  .font-size-lg-50 {
    font-size: 3.125rem !important;
  }
  .font-size-lg-51 {
    font-size: 3.1875rem !important;
  }
  .font-size-lg-52 {
    font-size: 3.25rem !important;
  }
  .font-size-lg-53 {
    font-size: 3.3125rem !important;
  }
  .font-size-lg-54 {
    font-size: 3.375rem !important;
  }
  .font-size-lg-55 {
    font-size: 3.4375rem !important;
  }
  .font-size-lg-56 {
    font-size: 3.5rem !important;
  }
  .font-size-lg-57 {
    font-size: 3.5625rem !important;
  }
  .font-size-lg-58 {
    font-size: 3.625rem !important;
  }
  .font-size-lg-59 {
    font-size: 3.6875rem !important;
  }
  .font-size-lg-60 {
    font-size: 3.75rem !important;
  }
  .font-size-lg-61 {
    font-size: 3.8125rem !important;
  }
  .font-size-lg-62 {
    font-size: 3.875rem !important;
  }
  .font-size-lg-63 {
    font-size: 3.9375rem !important;
  }
  .font-size-lg-64 {
    font-size: 4rem !important;
  }
  .font-size-lg-65 {
    font-size: 4.0625rem !important;
  }
  .font-size-lg-66 {
    font-size: 4.125rem !important;
  }
  .font-size-lg-67 {
    font-size: 4.1875rem !important;
  }
  .font-size-lg-68 {
    font-size: 4.25rem !important;
  }
  .font-size-lg-69 {
    font-size: 4.3125rem !important;
  }
  .font-size-lg-70 {
    font-size: 4.375rem !important;
  }
  .font-size-lg-71 {
    font-size: 4.4375rem !important;
  }
  .font-size-lg-72 {
    font-size: 4.5rem !important;
  }
  .font-size-lg-73 {
    font-size: 4.5625rem !important;
  }
  .font-size-lg-74 {
    font-size: 4.625rem !important;
  }
  .font-size-lg-75 {
    font-size: 4.6875rem !important;
  }
  .font-size-lg-76 {
    font-size: 4.75rem !important;
  }
  .font-size-lg-77 {
    font-size: 4.8125rem !important;
  }
  .font-size-lg-78 {
    font-size: 4.875rem !important;
  }
  .font-size-lg-79 {
    font-size: 4.9375rem !important;
  }
  .font-size-lg-80 {
    font-size: 5rem !important;
  }
  .font-size-lg-81 {
    font-size: 5.0625rem !important;
  }
  .font-size-lg-82 {
    font-size: 5.125rem !important;
  }
  .font-size-lg-83 {
    font-size: 5.1875rem !important;
  }
  .font-size-lg-84 {
    font-size: 5.25rem !important;
  }
  .font-size-lg-85 {
    font-size: 5.3125rem !important;
  }
  .font-size-lg-86 {
    font-size: 5.375rem !important;
  }
  .font-size-lg-87 {
    font-size: 5.4375rem !important;
  }
  .font-size-lg-88 {
    font-size: 5.5rem !important;
  }
  .font-size-lg-89 {
    font-size: 5.5625rem !important;
  }
  .font-size-lg-90 {
    font-size: 5.625rem !important;
  }
  .font-size-lg-91 {
    font-size: 5.6875rem !important;
  }
  .font-size-lg-92 {
    font-size: 5.75rem !important;
  }
  .font-size-lg-93 {
    font-size: 5.8125rem !important;
  }
  .font-size-lg-94 {
    font-size: 5.875rem !important;
  }
  .font-size-lg-95 {
    font-size: 5.9375rem !important;
  }
  .font-size-lg-96 {
    font-size: 6rem !important;
  }
  .font-size-lg-97 {
    font-size: 6.0625rem !important;
  }
  .font-size-lg-98 {
    font-size: 6.125rem !important;
  }
  .font-size-lg-99 {
    font-size: 6.1875rem !important;
  }
  .font-size-lg-100 {
    font-size: 6.25rem !important;
  }
}
@media (max-width: 768px) {
  .font-size-md-0 {
    font-size: 0rem !important;
  }
  .font-size-md-1 {
    font-size: 0.0625rem !important;
  }
  .font-size-md-2 {
    font-size: 0.125rem !important;
  }
  .font-size-md-3 {
    font-size: 0.1875rem !important;
  }
  .font-size-md-4 {
    font-size: 0.25rem !important;
  }
  .font-size-md-5 {
    font-size: 0.3125rem !important;
  }
  .font-size-md-6 {
    font-size: 0.375rem !important;
  }
  .font-size-md-7 {
    font-size: 0.4375rem !important;
  }
  .font-size-md-8 {
    font-size: 0.5rem !important;
  }
  .font-size-md-9 {
    font-size: 0.5625rem !important;
  }
  .font-size-md-10 {
    font-size: 0.625rem !important;
  }
  .font-size-md-11 {
    font-size: 0.6875rem !important;
  }
  .font-size-md-12 {
    font-size: 0.75rem !important;
  }
  .font-size-md-13 {
    font-size: 0.8125rem !important;
  }
  .font-size-md-14 {
    font-size: 0.875rem !important;
  }
  .font-size-md-15 {
    font-size: 0.9375rem !important;
  }
  .font-size-md-16 {
    font-size: 1rem !important;
  }
  .font-size-md-17 {
    font-size: 1.0625rem !important;
  }
  .font-size-md-18 {
    font-size: 1.125rem !important;
  }
  .font-size-md-19 {
    font-size: 1.1875rem !important;
  }
  .font-size-md-20 {
    font-size: 1.25rem !important;
  }
  .font-size-md-21 {
    font-size: 1.3125rem !important;
  }
  .font-size-md-22 {
    font-size: 1.375rem !important;
  }
  .font-size-md-23 {
    font-size: 1.4375rem !important;
  }
  .font-size-md-24 {
    font-size: 1.5rem !important;
  }
  .font-size-md-25 {
    font-size: 1.5625rem !important;
  }
  .font-size-md-26 {
    font-size: 1.625rem !important;
  }
  .font-size-md-27 {
    font-size: 1.6875rem !important;
  }
  .font-size-md-28 {
    font-size: 1.75rem !important;
  }
  .font-size-md-29 {
    font-size: 1.8125rem !important;
  }
  .font-size-md-30 {
    font-size: 1.875rem !important;
  }
  .font-size-md-31 {
    font-size: 1.9375rem !important;
  }
  .font-size-md-32 {
    font-size: 2rem !important;
  }
  .font-size-md-33 {
    font-size: 2.0625rem !important;
  }
  .font-size-md-34 {
    font-size: 2.125rem !important;
  }
  .font-size-md-35 {
    font-size: 2.1875rem !important;
  }
  .font-size-md-36 {
    font-size: 2.25rem !important;
  }
  .font-size-md-37 {
    font-size: 2.3125rem !important;
  }
  .font-size-md-38 {
    font-size: 2.375rem !important;
  }
  .font-size-md-39 {
    font-size: 2.4375rem !important;
  }
  .font-size-md-40 {
    font-size: 2.5rem !important;
  }
  .font-size-md-41 {
    font-size: 2.5625rem !important;
  }
  .font-size-md-42 {
    font-size: 2.625rem !important;
  }
  .font-size-md-43 {
    font-size: 2.6875rem !important;
  }
  .font-size-md-44 {
    font-size: 2.75rem !important;
  }
  .font-size-md-45 {
    font-size: 2.8125rem !important;
  }
  .font-size-md-46 {
    font-size: 2.875rem !important;
  }
  .font-size-md-47 {
    font-size: 2.9375rem !important;
  }
  .font-size-md-48 {
    font-size: 3rem !important;
  }
  .font-size-md-49 {
    font-size: 3.0625rem !important;
  }
  .font-size-md-50 {
    font-size: 3.125rem !important;
  }
  .font-size-md-51 {
    font-size: 3.1875rem !important;
  }
  .font-size-md-52 {
    font-size: 3.25rem !important;
  }
  .font-size-md-53 {
    font-size: 3.3125rem !important;
  }
  .font-size-md-54 {
    font-size: 3.375rem !important;
  }
  .font-size-md-55 {
    font-size: 3.4375rem !important;
  }
  .font-size-md-56 {
    font-size: 3.5rem !important;
  }
  .font-size-md-57 {
    font-size: 3.5625rem !important;
  }
  .font-size-md-58 {
    font-size: 3.625rem !important;
  }
  .font-size-md-59 {
    font-size: 3.6875rem !important;
  }
  .font-size-md-60 {
    font-size: 3.75rem !important;
  }
  .font-size-md-61 {
    font-size: 3.8125rem !important;
  }
  .font-size-md-62 {
    font-size: 3.875rem !important;
  }
  .font-size-md-63 {
    font-size: 3.9375rem !important;
  }
  .font-size-md-64 {
    font-size: 4rem !important;
  }
  .font-size-md-65 {
    font-size: 4.0625rem !important;
  }
  .font-size-md-66 {
    font-size: 4.125rem !important;
  }
  .font-size-md-67 {
    font-size: 4.1875rem !important;
  }
  .font-size-md-68 {
    font-size: 4.25rem !important;
  }
  .font-size-md-69 {
    font-size: 4.3125rem !important;
  }
  .font-size-md-70 {
    font-size: 4.375rem !important;
  }
  .font-size-md-71 {
    font-size: 4.4375rem !important;
  }
  .font-size-md-72 {
    font-size: 4.5rem !important;
  }
  .font-size-md-73 {
    font-size: 4.5625rem !important;
  }
  .font-size-md-74 {
    font-size: 4.625rem !important;
  }
  .font-size-md-75 {
    font-size: 4.6875rem !important;
  }
  .font-size-md-76 {
    font-size: 4.75rem !important;
  }
  .font-size-md-77 {
    font-size: 4.8125rem !important;
  }
  .font-size-md-78 {
    font-size: 4.875rem !important;
  }
  .font-size-md-79 {
    font-size: 4.9375rem !important;
  }
  .font-size-md-80 {
    font-size: 5rem !important;
  }
  .font-size-md-81 {
    font-size: 5.0625rem !important;
  }
  .font-size-md-82 {
    font-size: 5.125rem !important;
  }
  .font-size-md-83 {
    font-size: 5.1875rem !important;
  }
  .font-size-md-84 {
    font-size: 5.25rem !important;
  }
  .font-size-md-85 {
    font-size: 5.3125rem !important;
  }
  .font-size-md-86 {
    font-size: 5.375rem !important;
  }
  .font-size-md-87 {
    font-size: 5.4375rem !important;
  }
  .font-size-md-88 {
    font-size: 5.5rem !important;
  }
  .font-size-md-89 {
    font-size: 5.5625rem !important;
  }
  .font-size-md-90 {
    font-size: 5.625rem !important;
  }
  .font-size-md-91 {
    font-size: 5.6875rem !important;
  }
  .font-size-md-92 {
    font-size: 5.75rem !important;
  }
  .font-size-md-93 {
    font-size: 5.8125rem !important;
  }
  .font-size-md-94 {
    font-size: 5.875rem !important;
  }
  .font-size-md-95 {
    font-size: 5.9375rem !important;
  }
  .font-size-md-96 {
    font-size: 6rem !important;
  }
  .font-size-md-97 {
    font-size: 6.0625rem !important;
  }
  .font-size-md-98 {
    font-size: 6.125rem !important;
  }
  .font-size-md-99 {
    font-size: 6.1875rem !important;
  }
  .font-size-md-100 {
    font-size: 6.25rem !important;
  }
}
@media (max-width: 576px) {
  .font-size-sm-0 {
    font-size: 0rem !important;
  }
  .font-size-sm-1 {
    font-size: 0.0625rem !important;
  }
  .font-size-sm-2 {
    font-size: 0.125rem !important;
  }
  .font-size-sm-3 {
    font-size: 0.1875rem !important;
  }
  .font-size-sm-4 {
    font-size: 0.25rem !important;
  }
  .font-size-sm-5 {
    font-size: 0.3125rem !important;
  }
  .font-size-sm-6 {
    font-size: 0.375rem !important;
  }
  .font-size-sm-7 {
    font-size: 0.4375rem !important;
  }
  .font-size-sm-8 {
    font-size: 0.5rem !important;
  }
  .font-size-sm-9 {
    font-size: 0.5625rem !important;
  }
  .font-size-sm-10 {
    font-size: 0.625rem !important;
  }
  .font-size-sm-11 {
    font-size: 0.6875rem !important;
  }
  .font-size-sm-12 {
    font-size: 0.75rem !important;
  }
  .font-size-sm-13 {
    font-size: 0.8125rem !important;
  }
  .font-size-sm-14 {
    font-size: 0.875rem !important;
  }
  .font-size-sm-15 {
    font-size: 0.9375rem !important;
  }
  .font-size-sm-16 {
    font-size: 1rem !important;
  }
  .font-size-sm-17 {
    font-size: 1.0625rem !important;
  }
  .font-size-sm-18 {
    font-size: 1.125rem !important;
  }
  .font-size-sm-19 {
    font-size: 1.1875rem !important;
  }
  .font-size-sm-20 {
    font-size: 1.25rem !important;
  }
  .font-size-sm-21 {
    font-size: 1.3125rem !important;
  }
  .font-size-sm-22 {
    font-size: 1.375rem !important;
  }
  .font-size-sm-23 {
    font-size: 1.4375rem !important;
  }
  .font-size-sm-24 {
    font-size: 1.5rem !important;
  }
  .font-size-sm-25 {
    font-size: 1.5625rem !important;
  }
  .font-size-sm-26 {
    font-size: 1.625rem !important;
  }
  .font-size-sm-27 {
    font-size: 1.6875rem !important;
  }
  .font-size-sm-28 {
    font-size: 1.75rem !important;
  }
  .font-size-sm-29 {
    font-size: 1.8125rem !important;
  }
  .font-size-sm-30 {
    font-size: 1.875rem !important;
  }
  .font-size-sm-31 {
    font-size: 1.9375rem !important;
  }
  .font-size-sm-32 {
    font-size: 2rem !important;
  }
  .font-size-sm-33 {
    font-size: 2.0625rem !important;
  }
  .font-size-sm-34 {
    font-size: 2.125rem !important;
  }
  .font-size-sm-35 {
    font-size: 2.1875rem !important;
  }
  .font-size-sm-36 {
    font-size: 2.25rem !important;
  }
  .font-size-sm-37 {
    font-size: 2.3125rem !important;
  }
  .font-size-sm-38 {
    font-size: 2.375rem !important;
  }
  .font-size-sm-39 {
    font-size: 2.4375rem !important;
  }
  .font-size-sm-40 {
    font-size: 2.5rem !important;
  }
  .font-size-sm-41 {
    font-size: 2.5625rem !important;
  }
  .font-size-sm-42 {
    font-size: 2.625rem !important;
  }
  .font-size-sm-43 {
    font-size: 2.6875rem !important;
  }
  .font-size-sm-44 {
    font-size: 2.75rem !important;
  }
  .font-size-sm-45 {
    font-size: 2.8125rem !important;
  }
  .font-size-sm-46 {
    font-size: 2.875rem !important;
  }
  .font-size-sm-47 {
    font-size: 2.9375rem !important;
  }
  .font-size-sm-48 {
    font-size: 3rem !important;
  }
  .font-size-sm-49 {
    font-size: 3.0625rem !important;
  }
  .font-size-sm-50 {
    font-size: 3.125rem !important;
  }
  .font-size-sm-51 {
    font-size: 3.1875rem !important;
  }
  .font-size-sm-52 {
    font-size: 3.25rem !important;
  }
  .font-size-sm-53 {
    font-size: 3.3125rem !important;
  }
  .font-size-sm-54 {
    font-size: 3.375rem !important;
  }
  .font-size-sm-55 {
    font-size: 3.4375rem !important;
  }
  .font-size-sm-56 {
    font-size: 3.5rem !important;
  }
  .font-size-sm-57 {
    font-size: 3.5625rem !important;
  }
  .font-size-sm-58 {
    font-size: 3.625rem !important;
  }
  .font-size-sm-59 {
    font-size: 3.6875rem !important;
  }
  .font-size-sm-60 {
    font-size: 3.75rem !important;
  }
  .font-size-sm-61 {
    font-size: 3.8125rem !important;
  }
  .font-size-sm-62 {
    font-size: 3.875rem !important;
  }
  .font-size-sm-63 {
    font-size: 3.9375rem !important;
  }
  .font-size-sm-64 {
    font-size: 4rem !important;
  }
  .font-size-sm-65 {
    font-size: 4.0625rem !important;
  }
  .font-size-sm-66 {
    font-size: 4.125rem !important;
  }
  .font-size-sm-67 {
    font-size: 4.1875rem !important;
  }
  .font-size-sm-68 {
    font-size: 4.25rem !important;
  }
  .font-size-sm-69 {
    font-size: 4.3125rem !important;
  }
  .font-size-sm-70 {
    font-size: 4.375rem !important;
  }
  .font-size-sm-71 {
    font-size: 4.4375rem !important;
  }
  .font-size-sm-72 {
    font-size: 4.5rem !important;
  }
  .font-size-sm-73 {
    font-size: 4.5625rem !important;
  }
  .font-size-sm-74 {
    font-size: 4.625rem !important;
  }
  .font-size-sm-75 {
    font-size: 4.6875rem !important;
  }
  .font-size-sm-76 {
    font-size: 4.75rem !important;
  }
  .font-size-sm-77 {
    font-size: 4.8125rem !important;
  }
  .font-size-sm-78 {
    font-size: 4.875rem !important;
  }
  .font-size-sm-79 {
    font-size: 4.9375rem !important;
  }
  .font-size-sm-80 {
    font-size: 5rem !important;
  }
  .font-size-sm-81 {
    font-size: 5.0625rem !important;
  }
  .font-size-sm-82 {
    font-size: 5.125rem !important;
  }
  .font-size-sm-83 {
    font-size: 5.1875rem !important;
  }
  .font-size-sm-84 {
    font-size: 5.25rem !important;
  }
  .font-size-sm-85 {
    font-size: 5.3125rem !important;
  }
  .font-size-sm-86 {
    font-size: 5.375rem !important;
  }
  .font-size-sm-87 {
    font-size: 5.4375rem !important;
  }
  .font-size-sm-88 {
    font-size: 5.5rem !important;
  }
  .font-size-sm-89 {
    font-size: 5.5625rem !important;
  }
  .font-size-sm-90 {
    font-size: 5.625rem !important;
  }
  .font-size-sm-91 {
    font-size: 5.6875rem !important;
  }
  .font-size-sm-92 {
    font-size: 5.75rem !important;
  }
  .font-size-sm-93 {
    font-size: 5.8125rem !important;
  }
  .font-size-sm-94 {
    font-size: 5.875rem !important;
  }
  .font-size-sm-95 {
    font-size: 5.9375rem !important;
  }
  .font-size-sm-96 {
    font-size: 6rem !important;
  }
  .font-size-sm-97 {
    font-size: 6.0625rem !important;
  }
  .font-size-sm-98 {
    font-size: 6.125rem !important;
  }
  .font-size-sm-99 {
    font-size: 6.1875rem !important;
  }
  .font-size-sm-100 {
    font-size: 6.25rem !important;
  }
}
.line-height-0 {
  line-height: 0px;
}

.line-height-1 {
  line-height: 1px;
}

.line-height-2 {
  line-height: 2px;
}

.line-height-3 {
  line-height: 3px;
}

.line-height-4 {
  line-height: 4px;
}

.line-height-5 {
  line-height: 5px;
}

.line-height-6 {
  line-height: 6px;
}

.line-height-7 {
  line-height: 7px;
}

.line-height-8 {
  line-height: 8px;
}

.line-height-9 {
  line-height: 9px;
}

.line-height-10 {
  line-height: 10px;
}

.line-height-11 {
  line-height: 11px;
}

.line-height-12 {
  line-height: 12px;
}

.line-height-13 {
  line-height: 13px;
}

.line-height-14 {
  line-height: 14px;
}

.line-height-15 {
  line-height: 15px;
}

.line-height-16 {
  line-height: 16px;
}

.line-height-17 {
  line-height: 17px;
}

.line-height-18 {
  line-height: 18px;
}

.line-height-19 {
  line-height: 19px;
}

.line-height-20 {
  line-height: 20px;
}

.line-height-21 {
  line-height: 21px;
}

.line-height-22 {
  line-height: 22px;
}

.line-height-23 {
  line-height: 23px;
}

.line-height-24 {
  line-height: 24px;
}

.line-height-25 {
  line-height: 25px;
}

.line-height-26 {
  line-height: 26px;
}

.line-height-27 {
  line-height: 27px;
}

.line-height-28 {
  line-height: 28px;
}

.line-height-29 {
  line-height: 29px;
}

.line-height-30 {
  line-height: 30px;
}

.line-height-31 {
  line-height: 31px;
}

.line-height-32 {
  line-height: 32px;
}

.line-height-33 {
  line-height: 33px;
}

.line-height-34 {
  line-height: 34px;
}

.line-height-35 {
  line-height: 35px;
}

.line-height-36 {
  line-height: 36px;
}

.line-height-37 {
  line-height: 37px;
}

.line-height-38 {
  line-height: 38px;
}

.line-height-39 {
  line-height: 39px;
}

.line-height-40 {
  line-height: 40px;
}

.line-height-41 {
  line-height: 41px;
}

.line-height-42 {
  line-height: 42px;
}

.line-height-43 {
  line-height: 43px;
}

.line-height-44 {
  line-height: 44px;
}

.line-height-45 {
  line-height: 45px;
}

.line-height-46 {
  line-height: 46px;
}

.line-height-47 {
  line-height: 47px;
}

.line-height-48 {
  line-height: 48px;
}

.line-height-49 {
  line-height: 49px;
}

.line-height-50 {
  line-height: 50px;
}

.line-height-51 {
  line-height: 51px;
}

.line-height-52 {
  line-height: 52px;
}

.line-height-53 {
  line-height: 53px;
}

.line-height-54 {
  line-height: 54px;
}

.line-height-55 {
  line-height: 55px;
}

.line-height-56 {
  line-height: 56px;
}

.line-height-57 {
  line-height: 57px;
}

.line-height-58 {
  line-height: 58px;
}

.line-height-59 {
  line-height: 59px;
}

.line-height-60 {
  line-height: 60px;
}

.line-height-61 {
  line-height: 61px;
}

.line-height-62 {
  line-height: 62px;
}

.line-height-63 {
  line-height: 63px;
}

.line-height-64 {
  line-height: 64px;
}

.line-height-65 {
  line-height: 65px;
}

.line-height-66 {
  line-height: 66px;
}

.line-height-67 {
  line-height: 67px;
}

.line-height-68 {
  line-height: 68px;
}

.line-height-69 {
  line-height: 69px;
}

.line-height-70 {
  line-height: 70px;
}

.line-height-71 {
  line-height: 71px;
}

.line-height-72 {
  line-height: 72px;
}

.line-height-73 {
  line-height: 73px;
}

.line-height-74 {
  line-height: 74px;
}

.line-height-75 {
  line-height: 75px;
}

.line-height-76 {
  line-height: 76px;
}

.line-height-77 {
  line-height: 77px;
}

.line-height-78 {
  line-height: 78px;
}

.line-height-79 {
  line-height: 79px;
}

.line-height-80 {
  line-height: 80px;
}

.line-height-81 {
  line-height: 81px;
}

.line-height-82 {
  line-height: 82px;
}

.line-height-83 {
  line-height: 83px;
}

.line-height-84 {
  line-height: 84px;
}

.line-height-85 {
  line-height: 85px;
}

.line-height-86 {
  line-height: 86px;
}

.line-height-87 {
  line-height: 87px;
}

.line-height-88 {
  line-height: 88px;
}

.line-height-89 {
  line-height: 89px;
}

.line-height-90 {
  line-height: 90px;
}

.line-height-91 {
  line-height: 91px;
}

.line-height-92 {
  line-height: 92px;
}

.line-height-93 {
  line-height: 93px;
}

.line-height-94 {
  line-height: 94px;
}

.line-height-95 {
  line-height: 95px;
}

.line-height-96 {
  line-height: 96px;
}

.line-height-97 {
  line-height: 97px;
}

.line-height-98 {
  line-height: 98px;
}

.line-height-99 {
  line-height: 99px;
}

.line-height-100 {
  line-height: 100px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}

.z-index-0 {
  z-index: 0 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-4 {
  z-index: 4 !important;
}

.z-index-5 {
  z-index: 5 !important;
}

.z-index-6 {
  z-index: 6 !important;
}

.z-index-7 {
  z-index: 7 !important;
}

.z-index-8 {
  z-index: 8 !important;
}

.z-index-9 {
  z-index: 9 !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.z-index-11 {
  z-index: 11 !important;
}

.z-index-12 {
  z-index: 12 !important;
}

.z-index-13 {
  z-index: 13 !important;
}

.z-index-14 {
  z-index: 14 !important;
}

.z-index-15 {
  z-index: 15 !important;
}

.z-index-16 {
  z-index: 16 !important;
}

.z-index-17 {
  z-index: 17 !important;
}

.z-index-18 {
  z-index: 18 !important;
}

.z-index-19 {
  z-index: 19 !important;
}

.z-index-20 {
  z-index: 20 !important;
}

.z-index-21 {
  z-index: 21 !important;
}

.z-index-22 {
  z-index: 22 !important;
}

.z-index-23 {
  z-index: 23 !important;
}

.z-index-24 {
  z-index: 24 !important;
}

.z-index-25 {
  z-index: 25 !important;
}

.z-index-26 {
  z-index: 26 !important;
}

.z-index-27 {
  z-index: 27 !important;
}

.z-index-28 {
  z-index: 28 !important;
}

.z-index-29 {
  z-index: 29 !important;
}

.z-index-30 {
  z-index: 30 !important;
}

.z-index-31 {
  z-index: 31 !important;
}

.z-index-32 {
  z-index: 32 !important;
}

.z-index-33 {
  z-index: 33 !important;
}

.z-index-34 {
  z-index: 34 !important;
}

.z-index-35 {
  z-index: 35 !important;
}

.z-index-36 {
  z-index: 36 !important;
}

.z-index-37 {
  z-index: 37 !important;
}

.z-index-38 {
  z-index: 38 !important;
}

.z-index-39 {
  z-index: 39 !important;
}

.z-index-40 {
  z-index: 40 !important;
}

.z-index-41 {
  z-index: 41 !important;
}

.z-index-42 {
  z-index: 42 !important;
}

.z-index-43 {
  z-index: 43 !important;
}

.z-index-44 {
  z-index: 44 !important;
}

.z-index-45 {
  z-index: 45 !important;
}

.z-index-46 {
  z-index: 46 !important;
}

.z-index-47 {
  z-index: 47 !important;
}

.z-index-48 {
  z-index: 48 !important;
}

.z-index-49 {
  z-index: 49 !important;
}

.z-index-50 {
  z-index: 50 !important;
}

.z-index-51 {
  z-index: 51 !important;
}

.z-index-52 {
  z-index: 52 !important;
}

.z-index-53 {
  z-index: 53 !important;
}

.z-index-54 {
  z-index: 54 !important;
}

.z-index-55 {
  z-index: 55 !important;
}

.z-index-56 {
  z-index: 56 !important;
}

.z-index-57 {
  z-index: 57 !important;
}

.z-index-58 {
  z-index: 58 !important;
}

.z-index-59 {
  z-index: 59 !important;
}

.z-index-60 {
  z-index: 60 !important;
}

.z-index-61 {
  z-index: 61 !important;
}

.z-index-62 {
  z-index: 62 !important;
}

.z-index-63 {
  z-index: 63 !important;
}

.z-index-64 {
  z-index: 64 !important;
}

.z-index-65 {
  z-index: 65 !important;
}

.z-index-66 {
  z-index: 66 !important;
}

.z-index-67 {
  z-index: 67 !important;
}

.z-index-68 {
  z-index: 68 !important;
}

.z-index-69 {
  z-index: 69 !important;
}

.z-index-70 {
  z-index: 70 !important;
}

.z-index-71 {
  z-index: 71 !important;
}

.z-index-72 {
  z-index: 72 !important;
}

.z-index-73 {
  z-index: 73 !important;
}

.z-index-74 {
  z-index: 74 !important;
}

.z-index-75 {
  z-index: 75 !important;
}

.z-index-76 {
  z-index: 76 !important;
}

.z-index-77 {
  z-index: 77 !important;
}

.z-index-78 {
  z-index: 78 !important;
}

.z-index-79 {
  z-index: 79 !important;
}

.z-index-80 {
  z-index: 80 !important;
}

.z-index-81 {
  z-index: 81 !important;
}

.z-index-82 {
  z-index: 82 !important;
}

.z-index-83 {
  z-index: 83 !important;
}

.z-index-84 {
  z-index: 84 !important;
}

.z-index-85 {
  z-index: 85 !important;
}

.z-index-86 {
  z-index: 86 !important;
}

.z-index-87 {
  z-index: 87 !important;
}

.z-index-88 {
  z-index: 88 !important;
}

.z-index-89 {
  z-index: 89 !important;
}

.z-index-90 {
  z-index: 90 !important;
}

.z-index-91 {
  z-index: 91 !important;
}

.z-index-92 {
  z-index: 92 !important;
}

.z-index-93 {
  z-index: 93 !important;
}

.z-index-94 {
  z-index: 94 !important;
}

.z-index-95 {
  z-index: 95 !important;
}

.z-index-96 {
  z-index: 96 !important;
}

.z-index-97 {
  z-index: 97 !important;
}

.z-index-98 {
  z-index: 98 !important;
}

.z-index-99 {
  z-index: 99 !important;
}

.z-index-100 {
  z-index: 100 !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}
