/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.2rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.2rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.2rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 20px;
  padding: 13px 15px;
  width: 100%;
  font-weight: 500;
  
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

header.header.header--no-navigation { padding: 30px 0; }

@media (max-width:767px){
    header.header.header--no-navigation { padding: 20px 0; }
    header.header.header--no-navigation .header__container.content-wrapper { padding-top: 0; }
    header.header.header--no-navigation .header__logo { justify-content: center; }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/** Global CSS **/













.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[class*="col-"], 
[class*="col-lg-"], 
[class*="col-md-"], 
[class*="col-sm-"], 
[class*="col-xl-"] { 
  padding-left: 15px; padding-right: 15px; position: relative; width: 100%; 
}

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



.col-1{
  width: 8.333333%;
}


.col-2{
  width: 16.666667%;
}


.col-3{
  width: 25%;
}


.col-4{
  width: 33.333333%;
}


.col-5{
  width: 41.666667%;
}


.col-6{
  width: 50%;
}


.col-7{
  width: 58.333333%;
}


.col-8{
  width: 66.666667%;
}


.col-9{
  width: 75%;
}


.col-10{
  width: 83.333333%;
}


.col-11{
  width: 91.666667%;
}


.col-12{
  width: 100%;
}


@media (min-width: 576px){
  
  .col-sm-1{
    width: 8.333333%;
  }

  .col-sm-2{
    width: 16.666667%;
  }

  .col-sm-3{
    width: 25%;
  }

  .col-sm-4{
    width: 33.333333%;
  }

  .col-sm-5{
    width: 41.666667%;
  }

  .col-sm-6{
    width: 50%;
  }

  .col-sm-7{
    width: 58.333333%;
  }

  .col-sm-8{
    width: 66.666667%;
  }

  .col-sm-9{
    width: 75%;
  }

  .col-sm-10{
    width: 83.333333%;
  }

  .col-sm-11{
    width: 91.666667%;
  }

  .col-sm-12{
    width: 100%;
  }

}
@media (min-width: 768px){
  
  .col-md-1{
    width: 8.333333%;
  }

  .col-md-2{
    width: 16.666667%;
  }

  .col-md-3{
    width: 25%;
  }

  .col-md-4{
    width: 33.333333%;
  }

  .col-md-5{
    width: 41.666667%;
  }

  .col-md-6{
    width: 50%;
  }

  .col-md-7{
    width: 58.333333%;
  }

  .col-md-8{
    width: 66.666667%;
  }

  .col-md-9{
    width: 75%;
  }

  .col-md-10{
    width: 83.333333%;
  }

  .col-md-11{
    width: 91.666667%;
  }

  .col-md-12{
    width: 100%;
  }

}
@media (min-width: 992px){
  
  .col-lg-1{
    width: 8.333333%;
  }
  
  .col-lg-2{
    width: 16.666667%;
  }
  
  .col-lg-3{
    width: 25%;
  }
  
  .col-lg-4{
    width: 33.333333%;
  }
  
  .col-lg-5{
    width: 41.666667%;
  }
  
  .col-lg-6{
    width: 50%;
  }
  
  .col-lg-7{
    width: 58.333333%;
  }
  
  .col-lg-8{
    width: 66.666667%;
  }
  
  .col-lg-9{
    width: 75%;
  }
  
  .col-lg-10{
    width: 83.333333%;
  }
  
  .col-lg-11{
    width: 91.666667%;
  }
  
  .col-lg-12{
    width: 100%;
  }
  
}
@media (min-width: 1200px){
  
  .col-xl-1{
    width: 8.333333%;
  }
  
  .col-xl-2{
    width: 16.666667%;
  }
  
  .col-xl-3{
    width: 25%;
  }
  
  .col-xl-4{
    width: 33.333333%;
  }
  
  .col-xl-5{
    width: 41.666667%;
  }
  
  .col-xl-6{
    width: 50%;
  }
  
  .col-xl-7{
    width: 58.333333%;
  }
  
  .col-xl-8{
    width: 66.666667%;
  }
  
  .col-xl-9{
    width: 75%;
  }
  
  .col-xl-10{
    width: 83.333333%;
  }
  
  .col-xl-11{
    width: 91.666667%;
  }
  
  .col-xl-12{
    width: 100%;
  }
  
}



.p-0{
  padding: 0px;
}
.pt-0{
  padding-top: 0px;
}
.pb-0{
  padding-bottom: 0px;
}
.pl-0{
  padding-left: 0px;
}
.pr-0{
  padding-right: 0px;
}

.p-5{
  padding: 5px;
}
.pt-5{
  padding-top: 5px;
}
.pb-5{
  padding-bottom: 5px;
}
.pl-5{
  padding-left: 5px;
}
.pr-5{
  padding-right: 5px;
}

.p-10{
  padding: 10px;
}
.pt-10{
  padding-top: 10px;
}
.pb-10{
  padding-bottom: 10px;
}
.pl-10{
  padding-left: 10px;
}
.pr-10{
  padding-right: 10px;
}

.p-15{
  padding: 15px;
}
.pt-15{
  padding-top: 15px;
}
.pb-15{
  padding-bottom: 15px;
}
.pl-15{
  padding-left: 15px;
}
.pr-15{
  padding-right: 15px;
}

.p-20{
  padding: 20px;
}
.pt-20{
  padding-top: 20px;
}
.pb-20{
  padding-bottom: 20px;
}
.pl-20{
  padding-left: 20px;
}
.pr-20{
  padding-right: 20px;
}

.p-25{
  padding: 25px;
}
.pt-25{
  padding-top: 25px;
}
.pb-25{
  padding-bottom: 25px;
}
.pl-25{
  padding-left: 25px;
}
.pr-25{
  padding-right: 25px;
}

.p-30{
  padding: 30px;
}
.pt-30{
  padding-top: 30px;
}
.pb-30{
  padding-bottom: 30px;
}
.pl-30{
  padding-left: 30px;
}
.pr-30{
  padding-right: 30px;
}

.p-35{
  padding: 35px;
}
.pt-35{
  padding-top: 35px;
}
.pb-35{
  padding-bottom: 35px;
}
.pl-35{
  padding-left: 35px;
}
.pr-35{
  padding-right: 35px;
}

.p-40{
  padding: 40px;
}
.pt-40{
  padding-top: 40px;
}
.pb-40{
  padding-bottom: 40px;
}
.pl-40{
  padding-left: 40px;
}
.pr-40{
  padding-right: 40px;
}

.p-45{
  padding: 45px;
}
.pt-45{
  padding-top: 45px;
}
.pb-45{
  padding-bottom: 45px;
}
.pl-45{
  padding-left: 45px;
}
.pr-45{
  padding-right: 45px;
}

.p-50{
  padding: 50px;
}
.pt-50{
  padding-top: 50px;
}
.pb-50{
  padding-bottom: 50px;
}
.pl-50{
  padding-left: 50px;
}
.pr-50{
  padding-right: 50px;
}

.p-55{
  padding: 55px;
}
.pt-55{
  padding-top: 55px;
}
.pb-55{
  padding-bottom: 55px;
}
.pl-55{
  padding-left: 55px;
}
.pr-55{
  padding-right: 55px;
}

.p-60{
  padding: 60px;
}
.pt-60{
  padding-top: 60px;
}
.pb-60{
  padding-bottom: 60px;
}
.pl-60{
  padding-left: 60px;
}
.pr-60{
  padding-right: 60px;
}

.p-65{
  padding: 65px;
}
.pt-65{
  padding-top: 65px;
}
.pb-65{
  padding-bottom: 65px;
}
.pl-65{
  padding-left: 65px;
}
.pr-65{
  padding-right: 65px;
}

.p-70{
  padding: 70px;
}
.pt-70{
  padding-top: 70px;
}
.pb-70{
  padding-bottom: 70px;
}
.pl-70{
  padding-left: 70px;
}
.pr-70{
  padding-right: 70px;
}

.p-75{
  padding: 75px;
}
.pt-75{
  padding-top: 75px;
}
.pb-75{
  padding-bottom: 75px;
}
.pl-75{
  padding-left: 75px;
}
.pr-75{
  padding-right: 75px;
}

.p-80{
  padding: 80px;
}
.pt-80{
  padding-top: 80px;
}
.pb-80{
  padding-bottom: 80px;
}
.pl-80{
  padding-left: 80px;
}
.pr-80{
  padding-right: 80px;
}

.p-85{
  padding: 85px;
}
.pt-85{
  padding-top: 85px;
}
.pb-85{
  padding-bottom: 85px;
}
.pl-85{
  padding-left: 85px;
}
.pr-85{
  padding-right: 85px;
}

.p-90{
  padding: 90px;
}
.pt-90{
  padding-top: 90px;
}
.pb-90{
  padding-bottom: 90px;
}
.pl-90{
  padding-left: 90px;
}
.pr-90{
  padding-right: 90px;
}

.p-95{
  padding: 95px;
}
.pt-95{
  padding-top: 95px;
}
.pb-95{
  padding-bottom: 95px;
}
.pl-95{
  padding-left: 95px;
}
.pr-95{
  padding-right: 95px;
}

.p-100{
  padding: 100px;
}
.pt-100{
  padding-top: 100px;
}
.pb-100{
  padding-bottom: 100px;
}
.pl-100{
  padding-left: 100px;
}
.pr-100{
  padding-right: 100px;
}

.p-105{
  padding: 105px;
}
.pt-105{
  padding-top: 105px;
}
.pb-105{
  padding-bottom: 105px;
}
.pl-105{
  padding-left: 105px;
}
.pr-105{
  padding-right: 105px;
}

.p-110{
  padding: 110px;
}
.pt-110{
  padding-top: 110px;
}
.pb-110{
  padding-bottom: 110px;
}
.pl-110{
  padding-left: 110px;
}
.pr-110{
  padding-right: 110px;
}

.p-115{
  padding: 115px;
}
.pt-115{
  padding-top: 115px;
}
.pb-115{
  padding-bottom: 115px;
}
.pl-115{
  padding-left: 115px;
}
.pr-115{
  padding-right: 115px;
}

.p-120{
  padding: 120px;
}
.pt-120{
  padding-top: 120px;
}
.pb-120{
  padding-bottom: 120px;
}
.pl-120{
  padding-left: 120px;
}
.pr-120{
  padding-right: 120px;
}

.p-125{
  padding: 125px;
}
.pt-125{
  padding-top: 125px;
}
.pb-125{
  padding-bottom: 125px;
}
.pl-125{
  padding-left: 125px;
}
.pr-125{
  padding-right: 125px;
}

.p-130{
  padding: 130px;
}
.pt-130{
  padding-top: 130px;
}
.pb-130{
  padding-bottom: 130px;
}
.pl-130{
  padding-left: 130px;
}
.pr-130{
  padding-right: 130px;
}

.p-135{
  padding: 135px;
}
.pt-135{
  padding-top: 135px;
}
.pb-135{
  padding-bottom: 135px;
}
.pl-135{
  padding-left: 135px;
}
.pr-135{
  padding-right: 135px;
}

.p-140{
  padding: 140px;
}
.pt-140{
  padding-top: 140px;
}
.pb-140{
  padding-bottom: 140px;
}
.pl-140{
  padding-left: 140px;
}
.pr-140{
  padding-right: 140px;
}

.p-145{
  padding: 145px;
}
.pt-145{
  padding-top: 145px;
}
.pb-145{
  padding-bottom: 145px;
}
.pl-145{
  padding-left: 145px;
}
.pr-145{
  padding-right: 145px;
}

.p-150{
  padding: 150px;
}
.pt-150{
  padding-top: 150px;
}
.pb-150{
  padding-bottom: 150px;
}
.pl-150{
  padding-left: 150px;
}
.pr-150{
  padding-right: 150px;
}

.p-155{
  padding: 155px;
}
.pt-155{
  padding-top: 155px;
}
.pb-155{
  padding-bottom: 155px;
}
.pl-155{
  padding-left: 155px;
}
.pr-155{
  padding-right: 155px;
}

.p-160{
  padding: 160px;
}
.pt-160{
  padding-top: 160px;
}
.pb-160{
  padding-bottom: 160px;
}
.pl-160{
  padding-left: 160px;
}
.pr-160{
  padding-right: 160px;
}

.p-165{
  padding: 165px;
}
.pt-165{
  padding-top: 165px;
}
.pb-165{
  padding-bottom: 165px;
}
.pl-165{
  padding-left: 165px;
}
.pr-165{
  padding-right: 165px;
}

.p-170{
  padding: 170px;
}
.pt-170{
  padding-top: 170px;
}
.pb-170{
  padding-bottom: 170px;
}
.pl-170{
  padding-left: 170px;
}
.pr-170{
  padding-right: 170px;
}

.p-175{
  padding: 175px;
}
.pt-175{
  padding-top: 175px;
}
.pb-175{
  padding-bottom: 175px;
}
.pl-175{
  padding-left: 175px;
}
.pr-175{
  padding-right: 175px;
}

.p-180{
  padding: 180px;
}
.pt-180{
  padding-top: 180px;
}
.pb-180{
  padding-bottom: 180px;
}
.pl-180{
  padding-left: 180px;
}
.pr-180{
  padding-right: 180px;
}

.p-185{
  padding: 185px;
}
.pt-185{
  padding-top: 185px;
}
.pb-185{
  padding-bottom: 185px;
}
.pl-185{
  padding-left: 185px;
}
.pr-185{
  padding-right: 185px;
}

.p-190{
  padding: 190px;
}
.pt-190{
  padding-top: 190px;
}
.pb-190{
  padding-bottom: 190px;
}
.pl-190{
  padding-left: 190px;
}
.pr-190{
  padding-right: 190px;
}

.p-195{
  padding: 195px;
}
.pt-195{
  padding-top: 195px;
}
.pb-195{
  padding-bottom: 195px;
}
.pl-195{
  padding-left: 195px;
}
.pr-195{
  padding-right: 195px;
}

.p-200{
  padding: 200px;
}
.pt-200{
  padding-top: 200px;
}
.pb-200{
  padding-bottom: 200px;
}
.pl-200{
  padding-left: 200px;
}
.pr-200{
  padding-right: 200px;
}


@media (min-width: 576px){
  
  .p-sm-0{
    padding: 0px;
  }
  .pt-sm-0{
    padding-top: 0px;
  }
  .pb-sm-0{
    padding-bottom: 0px;
  }
  .pl-sm-0{
    padding-left: 0px;
  }
  .pr-sm-0{
    padding-right: 0px;
  }
  
  .p-sm-5{
    padding: 5px;
  }
  .pt-sm-5{
    padding-top: 5px;
  }
  .pb-sm-5{
    padding-bottom: 5px;
  }
  .pl-sm-5{
    padding-left: 5px;
  }
  .pr-sm-5{
    padding-right: 5px;
  }
  
  .p-sm-10{
    padding: 10px;
  }
  .pt-sm-10{
    padding-top: 10px;
  }
  .pb-sm-10{
    padding-bottom: 10px;
  }
  .pl-sm-10{
    padding-left: 10px;
  }
  .pr-sm-10{
    padding-right: 10px;
  }
  
  .p-sm-15{
    padding: 15px;
  }
  .pt-sm-15{
    padding-top: 15px;
  }
  .pb-sm-15{
    padding-bottom: 15px;
  }
  .pl-sm-15{
    padding-left: 15px;
  }
  .pr-sm-15{
    padding-right: 15px;
  }
  
  .p-sm-20{
    padding: 20px;
  }
  .pt-sm-20{
    padding-top: 20px;
  }
  .pb-sm-20{
    padding-bottom: 20px;
  }
  .pl-sm-20{
    padding-left: 20px;
  }
  .pr-sm-20{
    padding-right: 20px;
  }
  
  .p-sm-25{
    padding: 25px;
  }
  .pt-sm-25{
    padding-top: 25px;
  }
  .pb-sm-25{
    padding-bottom: 25px;
  }
  .pl-sm-25{
    padding-left: 25px;
  }
  .pr-sm-25{
    padding-right: 25px;
  }
  
  .p-sm-30{
    padding: 30px;
  }
  .pt-sm-30{
    padding-top: 30px;
  }
  .pb-sm-30{
    padding-bottom: 30px;
  }
  .pl-sm-30{
    padding-left: 30px;
  }
  .pr-sm-30{
    padding-right: 30px;
  }
  
  .p-sm-35{
    padding: 35px;
  }
  .pt-sm-35{
    padding-top: 35px;
  }
  .pb-sm-35{
    padding-bottom: 35px;
  }
  .pl-sm-35{
    padding-left: 35px;
  }
  .pr-sm-35{
    padding-right: 35px;
  }
  
  .p-sm-40{
    padding: 40px;
  }
  .pt-sm-40{
    padding-top: 40px;
  }
  .pb-sm-40{
    padding-bottom: 40px;
  }
  .pl-sm-40{
    padding-left: 40px;
  }
  .pr-sm-40{
    padding-right: 40px;
  }
  
  .p-sm-45{
    padding: 45px;
  }
  .pt-sm-45{
    padding-top: 45px;
  }
  .pb-sm-45{
    padding-bottom: 45px;
  }
  .pl-sm-45{
    padding-left: 45px;
  }
  .pr-sm-45{
    padding-right: 45px;
  }
  
  .p-sm-50{
    padding: 50px;
  }
  .pt-sm-50{
    padding-top: 50px;
  }
  .pb-sm-50{
    padding-bottom: 50px;
  }
  .pl-sm-50{
    padding-left: 50px;
  }
  .pr-sm-50{
    padding-right: 50px;
  }
  
  .p-sm-55{
    padding: 55px;
  }
  .pt-sm-55{
    padding-top: 55px;
  }
  .pb-sm-55{
    padding-bottom: 55px;
  }
  .pl-sm-55{
    padding-left: 55px;
  }
  .pr-sm-55{
    padding-right: 55px;
  }
  
  .p-sm-60{
    padding: 60px;
  }
  .pt-sm-60{
    padding-top: 60px;
  }
  .pb-sm-60{
    padding-bottom: 60px;
  }
  .pl-sm-60{
    padding-left: 60px;
  }
  .pr-sm-60{
    padding-right: 60px;
  }
  
  .p-sm-65{
    padding: 65px;
  }
  .pt-sm-65{
    padding-top: 65px;
  }
  .pb-sm-65{
    padding-bottom: 65px;
  }
  .pl-sm-65{
    padding-left: 65px;
  }
  .pr-sm-65{
    padding-right: 65px;
  }
  
  .p-sm-70{
    padding: 70px;
  }
  .pt-sm-70{
    padding-top: 70px;
  }
  .pb-sm-70{
    padding-bottom: 70px;
  }
  .pl-sm-70{
    padding-left: 70px;
  }
  .pr-sm-70{
    padding-right: 70px;
  }
  
  .p-sm-75{
    padding: 75px;
  }
  .pt-sm-75{
    padding-top: 75px;
  }
  .pb-sm-75{
    padding-bottom: 75px;
  }
  .pl-sm-75{
    padding-left: 75px;
  }
  .pr-sm-75{
    padding-right: 75px;
  }
  
  .p-sm-80{
    padding: 80px;
  }
  .pt-sm-80{
    padding-top: 80px;
  }
  .pb-sm-80{
    padding-bottom: 80px;
  }
  .pl-sm-80{
    padding-left: 80px;
  }
  .pr-sm-80{
    padding-right: 80px;
  }
  
  .p-sm-85{
    padding: 85px;
  }
  .pt-sm-85{
    padding-top: 85px;
  }
  .pb-sm-85{
    padding-bottom: 85px;
  }
  .pl-sm-85{
    padding-left: 85px;
  }
  .pr-sm-85{
    padding-right: 85px;
  }
  
  .p-sm-90{
    padding: 90px;
  }
  .pt-sm-90{
    padding-top: 90px;
  }
  .pb-sm-90{
    padding-bottom: 90px;
  }
  .pl-sm-90{
    padding-left: 90px;
  }
  .pr-sm-90{
    padding-right: 90px;
  }
  
  .p-sm-95{
    padding: 95px;
  }
  .pt-sm-95{
    padding-top: 95px;
  }
  .pb-sm-95{
    padding-bottom: 95px;
  }
  .pl-sm-95{
    padding-left: 95px;
  }
  .pr-sm-95{
    padding-right: 95px;
  }
  
  .p-sm-100{
    padding: 100px;
  }
  .pt-sm-100{
    padding-top: 100px;
  }
  .pb-sm-100{
    padding-bottom: 100px;
  }
  .pl-sm-100{
    padding-left: 100px;
  }
  .pr-sm-100{
    padding-right: 100px;
  }
  
  .p-sm-105{
    padding: 105px;
  }
  .pt-sm-105{
    padding-top: 105px;
  }
  .pb-sm-105{
    padding-bottom: 105px;
  }
  .pl-sm-105{
    padding-left: 105px;
  }
  .pr-sm-105{
    padding-right: 105px;
  }
  
  .p-sm-110{
    padding: 110px;
  }
  .pt-sm-110{
    padding-top: 110px;
  }
  .pb-sm-110{
    padding-bottom: 110px;
  }
  .pl-sm-110{
    padding-left: 110px;
  }
  .pr-sm-110{
    padding-right: 110px;
  }
  
  .p-sm-115{
    padding: 115px;
  }
  .pt-sm-115{
    padding-top: 115px;
  }
  .pb-sm-115{
    padding-bottom: 115px;
  }
  .pl-sm-115{
    padding-left: 115px;
  }
  .pr-sm-115{
    padding-right: 115px;
  }
  
  .p-sm-120{
    padding: 120px;
  }
  .pt-sm-120{
    padding-top: 120px;
  }
  .pb-sm-120{
    padding-bottom: 120px;
  }
  .pl-sm-120{
    padding-left: 120px;
  }
  .pr-sm-120{
    padding-right: 120px;
  }
  
  .p-sm-125{
    padding: 125px;
  }
  .pt-sm-125{
    padding-top: 125px;
  }
  .pb-sm-125{
    padding-bottom: 125px;
  }
  .pl-sm-125{
    padding-left: 125px;
  }
  .pr-sm-125{
    padding-right: 125px;
  }
  
  .p-sm-130{
    padding: 130px;
  }
  .pt-sm-130{
    padding-top: 130px;
  }
  .pb-sm-130{
    padding-bottom: 130px;
  }
  .pl-sm-130{
    padding-left: 130px;
  }
  .pr-sm-130{
    padding-right: 130px;
  }
  
  .p-sm-135{
    padding: 135px;
  }
  .pt-sm-135{
    padding-top: 135px;
  }
  .pb-sm-135{
    padding-bottom: 135px;
  }
  .pl-sm-135{
    padding-left: 135px;
  }
  .pr-sm-135{
    padding-right: 135px;
  }
  
  .p-sm-140{
    padding: 140px;
  }
  .pt-sm-140{
    padding-top: 140px;
  }
  .pb-sm-140{
    padding-bottom: 140px;
  }
  .pl-sm-140{
    padding-left: 140px;
  }
  .pr-sm-140{
    padding-right: 140px;
  }
  
  .p-sm-145{
    padding: 145px;
  }
  .pt-sm-145{
    padding-top: 145px;
  }
  .pb-sm-145{
    padding-bottom: 145px;
  }
  .pl-sm-145{
    padding-left: 145px;
  }
  .pr-sm-145{
    padding-right: 145px;
  }
  
  .p-sm-150{
    padding: 150px;
  }
  .pt-sm-150{
    padding-top: 150px;
  }
  .pb-sm-150{
    padding-bottom: 150px;
  }
  .pl-sm-150{
    padding-left: 150px;
  }
  .pr-sm-150{
    padding-right: 150px;
  }
  
  .p-sm-155{
    padding: 155px;
  }
  .pt-sm-155{
    padding-top: 155px;
  }
  .pb-sm-155{
    padding-bottom: 155px;
  }
  .pl-sm-155{
    padding-left: 155px;
  }
  .pr-sm-155{
    padding-right: 155px;
  }
  
  .p-sm-160{
    padding: 160px;
  }
  .pt-sm-160{
    padding-top: 160px;
  }
  .pb-sm-160{
    padding-bottom: 160px;
  }
  .pl-sm-160{
    padding-left: 160px;
  }
  .pr-sm-160{
    padding-right: 160px;
  }
  
  .p-sm-165{
    padding: 165px;
  }
  .pt-sm-165{
    padding-top: 165px;
  }
  .pb-sm-165{
    padding-bottom: 165px;
  }
  .pl-sm-165{
    padding-left: 165px;
  }
  .pr-sm-165{
    padding-right: 165px;
  }
  
  .p-sm-170{
    padding: 170px;
  }
  .pt-sm-170{
    padding-top: 170px;
  }
  .pb-sm-170{
    padding-bottom: 170px;
  }
  .pl-sm-170{
    padding-left: 170px;
  }
  .pr-sm-170{
    padding-right: 170px;
  }
  
  .p-sm-175{
    padding: 175px;
  }
  .pt-sm-175{
    padding-top: 175px;
  }
  .pb-sm-175{
    padding-bottom: 175px;
  }
  .pl-sm-175{
    padding-left: 175px;
  }
  .pr-sm-175{
    padding-right: 175px;
  }
  
  .p-sm-180{
    padding: 180px;
  }
  .pt-sm-180{
    padding-top: 180px;
  }
  .pb-sm-180{
    padding-bottom: 180px;
  }
  .pl-sm-180{
    padding-left: 180px;
  }
  .pr-sm-180{
    padding-right: 180px;
  }
  
  .p-sm-185{
    padding: 185px;
  }
  .pt-sm-185{
    padding-top: 185px;
  }
  .pb-sm-185{
    padding-bottom: 185px;
  }
  .pl-sm-185{
    padding-left: 185px;
  }
  .pr-sm-185{
    padding-right: 185px;
  }
  
  .p-sm-190{
    padding: 190px;
  }
  .pt-sm-190{
    padding-top: 190px;
  }
  .pb-sm-190{
    padding-bottom: 190px;
  }
  .pl-sm-190{
    padding-left: 190px;
  }
  .pr-sm-190{
    padding-right: 190px;
  }
  
  .p-sm-195{
    padding: 195px;
  }
  .pt-sm-195{
    padding-top: 195px;
  }
  .pb-sm-195{
    padding-bottom: 195px;
  }
  .pl-sm-195{
    padding-left: 195px;
  }
  .pr-sm-195{
    padding-right: 195px;
  }
  
  .p-sm-200{
    padding: 200px;
  }
  .pt-sm-200{
    padding-top: 200px;
  }
  .pb-sm-200{
    padding-bottom: 200px;
  }
  .pl-sm-200{
    padding-left: 200px;
  }
  .pr-sm-200{
    padding-right: 200px;
  }
  
}
@media (min-width: 768px){
  
  .p-md-0{
    padding: 0px;
  }
  .pt-md-0{
    padding-top: 0px;
  }
  .pb-md-0{
    padding-bottom: 0px;
  }
  .pl-md-0{
    padding-left: 0px;
  }
  .pr-md-0{
    padding-right: 0px;
  }
  
  .p-md-5{
    padding: 5px;
  }
  .pt-md-5{
    padding-top: 5px;
  }
  .pb-md-5{
    padding-bottom: 5px;
  }
  .pl-md-5{
    padding-left: 5px;
  }
  .pr-md-5{
    padding-right: 5px;
  }
  
  .p-md-10{
    padding: 10px;
  }
  .pt-md-10{
    padding-top: 10px;
  }
  .pb-md-10{
    padding-bottom: 10px;
  }
  .pl-md-10{
    padding-left: 10px;
  }
  .pr-md-10{
    padding-right: 10px;
  }
  
  .p-md-15{
    padding: 15px;
  }
  .pt-md-15{
    padding-top: 15px;
  }
  .pb-md-15{
    padding-bottom: 15px;
  }
  .pl-md-15{
    padding-left: 15px;
  }
  .pr-md-15{
    padding-right: 15px;
  }
  
  .p-md-20{
    padding: 20px;
  }
  .pt-md-20{
    padding-top: 20px;
  }
  .pb-md-20{
    padding-bottom: 20px;
  }
  .pl-md-20{
    padding-left: 20px;
  }
  .pr-md-20{
    padding-right: 20px;
  }
  
  .p-md-25{
    padding: 25px;
  }
  .pt-md-25{
    padding-top: 25px;
  }
  .pb-md-25{
    padding-bottom: 25px;
  }
  .pl-md-25{
    padding-left: 25px;
  }
  .pr-md-25{
    padding-right: 25px;
  }
  
  .p-md-30{
    padding: 30px;
  }
  .pt-md-30{
    padding-top: 30px;
  }
  .pb-md-30{
    padding-bottom: 30px;
  }
  .pl-md-30{
    padding-left: 30px;
  }
  .pr-md-30{
    padding-right: 30px;
  }
  
  .p-md-35{
    padding: 35px;
  }
  .pt-md-35{
    padding-top: 35px;
  }
  .pb-md-35{
    padding-bottom: 35px;
  }
  .pl-md-35{
    padding-left: 35px;
  }
  .pr-md-35{
    padding-right: 35px;
  }
  
  .p-md-40{
    padding: 40px;
  }
  .pt-md-40{
    padding-top: 40px;
  }
  .pb-md-40{
    padding-bottom: 40px;
  }
  .pl-md-40{
    padding-left: 40px;
  }
  .pr-md-40{
    padding-right: 40px;
  }
  
  .p-md-45{
    padding: 45px;
  }
  .pt-md-45{
    padding-top: 45px;
  }
  .pb-md-45{
    padding-bottom: 45px;
  }
  .pl-md-45{
    padding-left: 45px;
  }
  .pr-md-45{
    padding-right: 45px;
  }
  
  .p-md-50{
    padding: 50px;
  }
  .pt-md-50{
    padding-top: 50px;
  }
  .pb-md-50{
    padding-bottom: 50px;
  }
  .pl-md-50{
    padding-left: 50px;
  }
  .pr-md-50{
    padding-right: 50px;
  }
  
  .p-md-55{
    padding: 55px;
  }
  .pt-md-55{
    padding-top: 55px;
  }
  .pb-md-55{
    padding-bottom: 55px;
  }
  .pl-md-55{
    padding-left: 55px;
  }
  .pr-md-55{
    padding-right: 55px;
  }
  
  .p-md-60{
    padding: 60px;
  }
  .pt-md-60{
    padding-top: 60px;
  }
  .pb-md-60{
    padding-bottom: 60px;
  }
  .pl-md-60{
    padding-left: 60px;
  }
  .pr-md-60{
    padding-right: 60px;
  }
  
  .p-md-65{
    padding: 65px;
  }
  .pt-md-65{
    padding-top: 65px;
  }
  .pb-md-65{
    padding-bottom: 65px;
  }
  .pl-md-65{
    padding-left: 65px;
  }
  .pr-md-65{
    padding-right: 65px;
  }
  
  .p-md-70{
    padding: 70px;
  }
  .pt-md-70{
    padding-top: 70px;
  }
  .pb-md-70{
    padding-bottom: 70px;
  }
  .pl-md-70{
    padding-left: 70px;
  }
  .pr-md-70{
    padding-right: 70px;
  }
  
  .p-md-75{
    padding: 75px;
  }
  .pt-md-75{
    padding-top: 75px;
  }
  .pb-md-75{
    padding-bottom: 75px;
  }
  .pl-md-75{
    padding-left: 75px;
  }
  .pr-md-75{
    padding-right: 75px;
  }
  
  .p-md-80{
    padding: 80px;
  }
  .pt-md-80{
    padding-top: 80px;
  }
  .pb-md-80{
    padding-bottom: 80px;
  }
  .pl-md-80{
    padding-left: 80px;
  }
  .pr-md-80{
    padding-right: 80px;
  }
  
  .p-md-85{
    padding: 85px;
  }
  .pt-md-85{
    padding-top: 85px;
  }
  .pb-md-85{
    padding-bottom: 85px;
  }
  .pl-md-85{
    padding-left: 85px;
  }
  .pr-md-85{
    padding-right: 85px;
  }
  
  .p-md-90{
    padding: 90px;
  }
  .pt-md-90{
    padding-top: 90px;
  }
  .pb-md-90{
    padding-bottom: 90px;
  }
  .pl-md-90{
    padding-left: 90px;
  }
  .pr-md-90{
    padding-right: 90px;
  }
  
  .p-md-95{
    padding: 95px;
  }
  .pt-md-95{
    padding-top: 95px;
  }
  .pb-md-95{
    padding-bottom: 95px;
  }
  .pl-md-95{
    padding-left: 95px;
  }
  .pr-md-95{
    padding-right: 95px;
  }
  
  .p-md-100{
    padding: 100px;
  }
  .pt-md-100{
    padding-top: 100px;
  }
  .pb-md-100{
    padding-bottom: 100px;
  }
  .pl-md-100{
    padding-left: 100px;
  }
  .pr-md-100{
    padding-right: 100px;
  }
  
  .p-md-105{
    padding: 105px;
  }
  .pt-md-105{
    padding-top: 105px;
  }
  .pb-md-105{
    padding-bottom: 105px;
  }
  .pl-md-105{
    padding-left: 105px;
  }
  .pr-md-105{
    padding-right: 105px;
  }
  
  .p-md-110{
    padding: 110px;
  }
  .pt-md-110{
    padding-top: 110px;
  }
  .pb-md-110{
    padding-bottom: 110px;
  }
  .pl-md-110{
    padding-left: 110px;
  }
  .pr-md-110{
    padding-right: 110px;
  }
  
  .p-md-115{
    padding: 115px;
  }
  .pt-md-115{
    padding-top: 115px;
  }
  .pb-md-115{
    padding-bottom: 115px;
  }
  .pl-md-115{
    padding-left: 115px;
  }
  .pr-md-115{
    padding-right: 115px;
  }
  
  .p-md-120{
    padding: 120px;
  }
  .pt-md-120{
    padding-top: 120px;
  }
  .pb-md-120{
    padding-bottom: 120px;
  }
  .pl-md-120{
    padding-left: 120px;
  }
  .pr-md-120{
    padding-right: 120px;
  }
  
  .p-md-125{
    padding: 125px;
  }
  .pt-md-125{
    padding-top: 125px;
  }
  .pb-md-125{
    padding-bottom: 125px;
  }
  .pl-md-125{
    padding-left: 125px;
  }
  .pr-md-125{
    padding-right: 125px;
  }
  
  .p-md-130{
    padding: 130px;
  }
  .pt-md-130{
    padding-top: 130px;
  }
  .pb-md-130{
    padding-bottom: 130px;
  }
  .pl-md-130{
    padding-left: 130px;
  }
  .pr-md-130{
    padding-right: 130px;
  }
  
  .p-md-135{
    padding: 135px;
  }
  .pt-md-135{
    padding-top: 135px;
  }
  .pb-md-135{
    padding-bottom: 135px;
  }
  .pl-md-135{
    padding-left: 135px;
  }
  .pr-md-135{
    padding-right: 135px;
  }
  
  .p-md-140{
    padding: 140px;
  }
  .pt-md-140{
    padding-top: 140px;
  }
  .pb-md-140{
    padding-bottom: 140px;
  }
  .pl-md-140{
    padding-left: 140px;
  }
  .pr-md-140{
    padding-right: 140px;
  }
  
  .p-md-145{
    padding: 145px;
  }
  .pt-md-145{
    padding-top: 145px;
  }
  .pb-md-145{
    padding-bottom: 145px;
  }
  .pl-md-145{
    padding-left: 145px;
  }
  .pr-md-145{
    padding-right: 145px;
  }
  
  .p-md-150{
    padding: 150px;
  }
  .pt-md-150{
    padding-top: 150px;
  }
  .pb-md-150{
    padding-bottom: 150px;
  }
  .pl-md-150{
    padding-left: 150px;
  }
  .pr-md-150{
    padding-right: 150px;
  }
  
  .p-md-155{
    padding: 155px;
  }
  .pt-md-155{
    padding-top: 155px;
  }
  .pb-md-155{
    padding-bottom: 155px;
  }
  .pl-md-155{
    padding-left: 155px;
  }
  .pr-md-155{
    padding-right: 155px;
  }
  
  .p-md-160{
    padding: 160px;
  }
  .pt-md-160{
    padding-top: 160px;
  }
  .pb-md-160{
    padding-bottom: 160px;
  }
  .pl-md-160{
    padding-left: 160px;
  }
  .pr-md-160{
    padding-right: 160px;
  }
  
  .p-md-165{
    padding: 165px;
  }
  .pt-md-165{
    padding-top: 165px;
  }
  .pb-md-165{
    padding-bottom: 165px;
  }
  .pl-md-165{
    padding-left: 165px;
  }
  .pr-md-165{
    padding-right: 165px;
  }
  
  .p-md-170{
    padding: 170px;
  }
  .pt-md-170{
    padding-top: 170px;
  }
  .pb-md-170{
    padding-bottom: 170px;
  }
  .pl-md-170{
    padding-left: 170px;
  }
  .pr-md-170{
    padding-right: 170px;
  }
  
  .p-md-175{
    padding: 175px;
  }
  .pt-md-175{
    padding-top: 175px;
  }
  .pb-md-175{
    padding-bottom: 175px;
  }
  .pl-md-175{
    padding-left: 175px;
  }
  .pr-md-175{
    padding-right: 175px;
  }
  
  .p-md-180{
    padding: 180px;
  }
  .pt-md-180{
    padding-top: 180px;
  }
  .pb-md-180{
    padding-bottom: 180px;
  }
  .pl-md-180{
    padding-left: 180px;
  }
  .pr-md-180{
    padding-right: 180px;
  }
  
  .p-md-185{
    padding: 185px;
  }
  .pt-md-185{
    padding-top: 185px;
  }
  .pb-md-185{
    padding-bottom: 185px;
  }
  .pl-md-185{
    padding-left: 185px;
  }
  .pr-md-185{
    padding-right: 185px;
  }
  
  .p-md-190{
    padding: 190px;
  }
  .pt-md-190{
    padding-top: 190px;
  }
  .pb-md-190{
    padding-bottom: 190px;
  }
  .pl-md-190{
    padding-left: 190px;
  }
  .pr-md-190{
    padding-right: 190px;
  }
  
  .p-md-195{
    padding: 195px;
  }
  .pt-md-195{
    padding-top: 195px;
  }
  .pb-md-195{
    padding-bottom: 195px;
  }
  .pl-md-195{
    padding-left: 195px;
  }
  .pr-md-195{
    padding-right: 195px;
  }
  
  .p-md-200{
    padding: 200px;
  }
  .pt-md-200{
    padding-top: 200px;
  }
  .pb-md-200{
    padding-bottom: 200px;
  }
  .pl-md-200{
    padding-left: 200px;
  }
  .pr-md-200{
    padding-right: 200px;
  }
  
}
@media (min-width: 992px){
  
  .p-lg-0{
    padding: 0px;
  }
  .pt-lg-0{
    padding-top: 0px;
  }
  .pb-lg-0{
    padding-bottom: 0px;
  }
  .pl-lg-0{
    padding-left: 0px;
  }
  .pr-lg-0{
    padding-right: 0px;
  }
  
  .p-lg-5{
    padding: 5px;
  }
  .pt-lg-5{
    padding-top: 5px;
  }
  .pb-lg-5{
    padding-bottom: 5px;
  }
  .pl-lg-5{
    padding-left: 5px;
  }
  .pr-lg-5{
    padding-right: 5px;
  }
  
  .p-lg-10{
    padding: 10px;
  }
  .pt-lg-10{
    padding-top: 10px;
  }
  .pb-lg-10{
    padding-bottom: 10px;
  }
  .pl-lg-10{
    padding-left: 10px;
  }
  .pr-lg-10{
    padding-right: 10px;
  }
  
  .p-lg-15{
    padding: 15px;
  }
  .pt-lg-15{
    padding-top: 15px;
  }
  .pb-lg-15{
    padding-bottom: 15px;
  }
  .pl-lg-15{
    padding-left: 15px;
  }
  .pr-lg-15{
    padding-right: 15px;
  }
  
  .p-lg-20{
    padding: 20px;
  }
  .pt-lg-20{
    padding-top: 20px;
  }
  .pb-lg-20{
    padding-bottom: 20px;
  }
  .pl-lg-20{
    padding-left: 20px;
  }
  .pr-lg-20{
    padding-right: 20px;
  }
  
  .p-lg-25{
    padding: 25px;
  }
  .pt-lg-25{
    padding-top: 25px;
  }
  .pb-lg-25{
    padding-bottom: 25px;
  }
  .pl-lg-25{
    padding-left: 25px;
  }
  .pr-lg-25{
    padding-right: 25px;
  }
  
  .p-lg-30{
    padding: 30px;
  }
  .pt-lg-30{
    padding-top: 30px;
  }
  .pb-lg-30{
    padding-bottom: 30px;
  }
  .pl-lg-30{
    padding-left: 30px;
  }
  .pr-lg-30{
    padding-right: 30px;
  }
  
  .p-lg-35{
    padding: 35px;
  }
  .pt-lg-35{
    padding-top: 35px;
  }
  .pb-lg-35{
    padding-bottom: 35px;
  }
  .pl-lg-35{
    padding-left: 35px;
  }
  .pr-lg-35{
    padding-right: 35px;
  }
  
  .p-lg-40{
    padding: 40px;
  }
  .pt-lg-40{
    padding-top: 40px;
  }
  .pb-lg-40{
    padding-bottom: 40px;
  }
  .pl-lg-40{
    padding-left: 40px;
  }
  .pr-lg-40{
    padding-right: 40px;
  }
  
  .p-lg-45{
    padding: 45px;
  }
  .pt-lg-45{
    padding-top: 45px;
  }
  .pb-lg-45{
    padding-bottom: 45px;
  }
  .pl-lg-45{
    padding-left: 45px;
  }
  .pr-lg-45{
    padding-right: 45px;
  }
  
  .p-lg-50{
    padding: 50px;
  }
  .pt-lg-50{
    padding-top: 50px;
  }
  .pb-lg-50{
    padding-bottom: 50px;
  }
  .pl-lg-50{
    padding-left: 50px;
  }
  .pr-lg-50{
    padding-right: 50px;
  }
  
  .p-lg-55{
    padding: 55px;
  }
  .pt-lg-55{
    padding-top: 55px;
  }
  .pb-lg-55{
    padding-bottom: 55px;
  }
  .pl-lg-55{
    padding-left: 55px;
  }
  .pr-lg-55{
    padding-right: 55px;
  }
  
  .p-lg-60{
    padding: 60px;
  }
  .pt-lg-60{
    padding-top: 60px;
  }
  .pb-lg-60{
    padding-bottom: 60px;
  }
  .pl-lg-60{
    padding-left: 60px;
  }
  .pr-lg-60{
    padding-right: 60px;
  }
  
  .p-lg-65{
    padding: 65px;
  }
  .pt-lg-65{
    padding-top: 65px;
  }
  .pb-lg-65{
    padding-bottom: 65px;
  }
  .pl-lg-65{
    padding-left: 65px;
  }
  .pr-lg-65{
    padding-right: 65px;
  }
  
  .p-lg-70{
    padding: 70px;
  }
  .pt-lg-70{
    padding-top: 70px;
  }
  .pb-lg-70{
    padding-bottom: 70px;
  }
  .pl-lg-70{
    padding-left: 70px;
  }
  .pr-lg-70{
    padding-right: 70px;
  }
  
  .p-lg-75{
    padding: 75px;
  }
  .pt-lg-75{
    padding-top: 75px;
  }
  .pb-lg-75{
    padding-bottom: 75px;
  }
  .pl-lg-75{
    padding-left: 75px;
  }
  .pr-lg-75{
    padding-right: 75px;
  }
  
  .p-lg-80{
    padding: 80px;
  }
  .pt-lg-80{
    padding-top: 80px;
  }
  .pb-lg-80{
    padding-bottom: 80px;
  }
  .pl-lg-80{
    padding-left: 80px;
  }
  .pr-lg-80{
    padding-right: 80px;
  }
  
  .p-lg-85{
    padding: 85px;
  }
  .pt-lg-85{
    padding-top: 85px;
  }
  .pb-lg-85{
    padding-bottom: 85px;
  }
  .pl-lg-85{
    padding-left: 85px;
  }
  .pr-lg-85{
    padding-right: 85px;
  }
  
  .p-lg-90{
    padding: 90px;
  }
  .pt-lg-90{
    padding-top: 90px;
  }
  .pb-lg-90{
    padding-bottom: 90px;
  }
  .pl-lg-90{
    padding-left: 90px;
  }
  .pr-lg-90{
    padding-right: 90px;
  }
  
  .p-lg-95{
    padding: 95px;
  }
  .pt-lg-95{
    padding-top: 95px;
  }
  .pb-lg-95{
    padding-bottom: 95px;
  }
  .pl-lg-95{
    padding-left: 95px;
  }
  .pr-lg-95{
    padding-right: 95px;
  }
  
  .p-lg-100{
    padding: 100px;
  }
  .pt-lg-100{
    padding-top: 100px;
  }
  .pb-lg-100{
    padding-bottom: 100px;
  }
  .pl-lg-100{
    padding-left: 100px;
  }
  .pr-lg-100{
    padding-right: 100px;
  }
  
  .p-lg-105{
    padding: 105px;
  }
  .pt-lg-105{
    padding-top: 105px;
  }
  .pb-lg-105{
    padding-bottom: 105px;
  }
  .pl-lg-105{
    padding-left: 105px;
  }
  .pr-lg-105{
    padding-right: 105px;
  }
  
  .p-lg-110{
    padding: 110px;
  }
  .pt-lg-110{
    padding-top: 110px;
  }
  .pb-lg-110{
    padding-bottom: 110px;
  }
  .pl-lg-110{
    padding-left: 110px;
  }
  .pr-lg-110{
    padding-right: 110px;
  }
  
  .p-lg-115{
    padding: 115px;
  }
  .pt-lg-115{
    padding-top: 115px;
  }
  .pb-lg-115{
    padding-bottom: 115px;
  }
  .pl-lg-115{
    padding-left: 115px;
  }
  .pr-lg-115{
    padding-right: 115px;
  }
  
  .p-lg-120{
    padding: 120px;
  }
  .pt-lg-120{
    padding-top: 120px;
  }
  .pb-lg-120{
    padding-bottom: 120px;
  }
  .pl-lg-120{
    padding-left: 120px;
  }
  .pr-lg-120{
    padding-right: 120px;
  }
  
  .p-lg-125{
    padding: 125px;
  }
  .pt-lg-125{
    padding-top: 125px;
  }
  .pb-lg-125{
    padding-bottom: 125px;
  }
  .pl-lg-125{
    padding-left: 125px;
  }
  .pr-lg-125{
    padding-right: 125px;
  }
  
  .p-lg-130{
    padding: 130px;
  }
  .pt-lg-130{
    padding-top: 130px;
  }
  .pb-lg-130{
    padding-bottom: 130px;
  }
  .pl-lg-130{
    padding-left: 130px;
  }
  .pr-lg-130{
    padding-right: 130px;
  }
  
  .p-lg-135{
    padding: 135px;
  }
  .pt-lg-135{
    padding-top: 135px;
  }
  .pb-lg-135{
    padding-bottom: 135px;
  }
  .pl-lg-135{
    padding-left: 135px;
  }
  .pr-lg-135{
    padding-right: 135px;
  }
  
  .p-lg-140{
    padding: 140px;
  }
  .pt-lg-140{
    padding-top: 140px;
  }
  .pb-lg-140{
    padding-bottom: 140px;
  }
  .pl-lg-140{
    padding-left: 140px;
  }
  .pr-lg-140{
    padding-right: 140px;
  }
  
  .p-lg-145{
    padding: 145px;
  }
  .pt-lg-145{
    padding-top: 145px;
  }
  .pb-lg-145{
    padding-bottom: 145px;
  }
  .pl-lg-145{
    padding-left: 145px;
  }
  .pr-lg-145{
    padding-right: 145px;
  }
  
  .p-lg-150{
    padding: 150px;
  }
  .pt-lg-150{
    padding-top: 150px;
  }
  .pb-lg-150{
    padding-bottom: 150px;
  }
  .pl-lg-150{
    padding-left: 150px;
  }
  .pr-lg-150{
    padding-right: 150px;
  }
  
  .p-lg-155{
    padding: 155px;
  }
  .pt-lg-155{
    padding-top: 155px;
  }
  .pb-lg-155{
    padding-bottom: 155px;
  }
  .pl-lg-155{
    padding-left: 155px;
  }
  .pr-lg-155{
    padding-right: 155px;
  }
  
  .p-lg-160{
    padding: 160px;
  }
  .pt-lg-160{
    padding-top: 160px;
  }
  .pb-lg-160{
    padding-bottom: 160px;
  }
  .pl-lg-160{
    padding-left: 160px;
  }
  .pr-lg-160{
    padding-right: 160px;
  }
  
  .p-lg-165{
    padding: 165px;
  }
  .pt-lg-165{
    padding-top: 165px;
  }
  .pb-lg-165{
    padding-bottom: 165px;
  }
  .pl-lg-165{
    padding-left: 165px;
  }
  .pr-lg-165{
    padding-right: 165px;
  }
  
  .p-lg-170{
    padding: 170px;
  }
  .pt-lg-170{
    padding-top: 170px;
  }
  .pb-lg-170{
    padding-bottom: 170px;
  }
  .pl-lg-170{
    padding-left: 170px;
  }
  .pr-lg-170{
    padding-right: 170px;
  }
  
  .p-lg-175{
    padding: 175px;
  }
  .pt-lg-175{
    padding-top: 175px;
  }
  .pb-lg-175{
    padding-bottom: 175px;
  }
  .pl-lg-175{
    padding-left: 175px;
  }
  .pr-lg-175{
    padding-right: 175px;
  }
  
  .p-lg-180{
    padding: 180px;
  }
  .pt-lg-180{
    padding-top: 180px;
  }
  .pb-lg-180{
    padding-bottom: 180px;
  }
  .pl-lg-180{
    padding-left: 180px;
  }
  .pr-lg-180{
    padding-right: 180px;
  }
  
  .p-lg-185{
    padding: 185px;
  }
  .pt-lg-185{
    padding-top: 185px;
  }
  .pb-lg-185{
    padding-bottom: 185px;
  }
  .pl-lg-185{
    padding-left: 185px;
  }
  .pr-lg-185{
    padding-right: 185px;
  }
  
  .p-lg-190{
    padding: 190px;
  }
  .pt-lg-190{
    padding-top: 190px;
  }
  .pb-lg-190{
    padding-bottom: 190px;
  }
  .pl-lg-190{
    padding-left: 190px;
  }
  .pr-lg-190{
    padding-right: 190px;
  }
  
  .p-lg-195{
    padding: 195px;
  }
  .pt-lg-195{
    padding-top: 195px;
  }
  .pb-lg-195{
    padding-bottom: 195px;
  }
  .pl-lg-195{
    padding-left: 195px;
  }
  .pr-lg-195{
    padding-right: 195px;
  }
  
  .p-lg-200{
    padding: 200px;
  }
  .pt-lg-200{
    padding-top: 200px;
  }
  .pb-lg-200{
    padding-bottom: 200px;
  }
  .pl-lg-200{
    padding-left: 200px;
  }
  .pr-lg-200{
    padding-right: 200px;
  }
  
}
@media (min-width: 1200px){
  
  .p-xl-0{
    padding: 0px;
  }
  .pt-xl-0{
    padding-top: 0px;
  }
  .pb-xl-0{
    padding-bottom: 0px;
  }
  .pl-xl-0{
    padding-left: 0px;
  }
  .pr-xl-0{
    padding-right: 0px;
  }
  
  .p-xl-5{
    padding: 5px;
  }
  .pt-xl-5{
    padding-top: 5px;
  }
  .pb-xl-5{
    padding-bottom: 5px;
  }
  .pl-xl-5{
    padding-left: 5px;
  }
  .pr-xl-5{
    padding-right: 5px;
  }
  
  .p-xl-10{
    padding: 10px;
  }
  .pt-xl-10{
    padding-top: 10px;
  }
  .pb-xl-10{
    padding-bottom: 10px;
  }
  .pl-xl-10{
    padding-left: 10px;
  }
  .pr-xl-10{
    padding-right: 10px;
  }
  
  .p-xl-15{
    padding: 15px;
  }
  .pt-xl-15{
    padding-top: 15px;
  }
  .pb-xl-15{
    padding-bottom: 15px;
  }
  .pl-xl-15{
    padding-left: 15px;
  }
  .pr-xl-15{
    padding-right: 15px;
  }
  
  .p-xl-20{
    padding: 20px;
  }
  .pt-xl-20{
    padding-top: 20px;
  }
  .pb-xl-20{
    padding-bottom: 20px;
  }
  .pl-xl-20{
    padding-left: 20px;
  }
  .pr-xl-20{
    padding-right: 20px;
  }
  
  .p-xl-25{
    padding: 25px;
  }
  .pt-xl-25{
    padding-top: 25px;
  }
  .pb-xl-25{
    padding-bottom: 25px;
  }
  .pl-xl-25{
    padding-left: 25px;
  }
  .pr-xl-25{
    padding-right: 25px;
  }
  
  .p-xl-30{
    padding: 30px;
  }
  .pt-xl-30{
    padding-top: 30px;
  }
  .pb-xl-30{
    padding-bottom: 30px;
  }
  .pl-xl-30{
    padding-left: 30px;
  }
  .pr-xl-30{
    padding-right: 30px;
  }
  
  .p-xl-35{
    padding: 35px;
  }
  .pt-xl-35{
    padding-top: 35px;
  }
  .pb-xl-35{
    padding-bottom: 35px;
  }
  .pl-xl-35{
    padding-left: 35px;
  }
  .pr-xl-35{
    padding-right: 35px;
  }
  
  .p-xl-40{
    padding: 40px;
  }
  .pt-xl-40{
    padding-top: 40px;
  }
  .pb-xl-40{
    padding-bottom: 40px;
  }
  .pl-xl-40{
    padding-left: 40px;
  }
  .pr-xl-40{
    padding-right: 40px;
  }
  
  .p-xl-45{
    padding: 45px;
  }
  .pt-xl-45{
    padding-top: 45px;
  }
  .pb-xl-45{
    padding-bottom: 45px;
  }
  .pl-xl-45{
    padding-left: 45px;
  }
  .pr-xl-45{
    padding-right: 45px;
  }
  
  .p-xl-50{
    padding: 50px;
  }
  .pt-xl-50{
    padding-top: 50px;
  }
  .pb-xl-50{
    padding-bottom: 50px;
  }
  .pl-xl-50{
    padding-left: 50px;
  }
  .pr-xl-50{
    padding-right: 50px;
  }
  
  .p-xl-55{
    padding: 55px;
  }
  .pt-xl-55{
    padding-top: 55px;
  }
  .pb-xl-55{
    padding-bottom: 55px;
  }
  .pl-xl-55{
    padding-left: 55px;
  }
  .pr-xl-55{
    padding-right: 55px;
  }
  
  .p-xl-60{
    padding: 60px;
  }
  .pt-xl-60{
    padding-top: 60px;
  }
  .pb-xl-60{
    padding-bottom: 60px;
  }
  .pl-xl-60{
    padding-left: 60px;
  }
  .pr-xl-60{
    padding-right: 60px;
  }
  
  .p-xl-65{
    padding: 65px;
  }
  .pt-xl-65{
    padding-top: 65px;
  }
  .pb-xl-65{
    padding-bottom: 65px;
  }
  .pl-xl-65{
    padding-left: 65px;
  }
  .pr-xl-65{
    padding-right: 65px;
  }
  
  .p-xl-70{
    padding: 70px;
  }
  .pt-xl-70{
    padding-top: 70px;
  }
  .pb-xl-70{
    padding-bottom: 70px;
  }
  .pl-xl-70{
    padding-left: 70px;
  }
  .pr-xl-70{
    padding-right: 70px;
  }
  
  .p-xl-75{
    padding: 75px;
  }
  .pt-xl-75{
    padding-top: 75px;
  }
  .pb-xl-75{
    padding-bottom: 75px;
  }
  .pl-xl-75{
    padding-left: 75px;
  }
  .pr-xl-75{
    padding-right: 75px;
  }
  
  .p-xl-80{
    padding: 80px;
  }
  .pt-xl-80{
    padding-top: 80px;
  }
  .pb-xl-80{
    padding-bottom: 80px;
  }
  .pl-xl-80{
    padding-left: 80px;
  }
  .pr-xl-80{
    padding-right: 80px;
  }
  
  .p-xl-85{
    padding: 85px;
  }
  .pt-xl-85{
    padding-top: 85px;
  }
  .pb-xl-85{
    padding-bottom: 85px;
  }
  .pl-xl-85{
    padding-left: 85px;
  }
  .pr-xl-85{
    padding-right: 85px;
  }
  
  .p-xl-90{
    padding: 90px;
  }
  .pt-xl-90{
    padding-top: 90px;
  }
  .pb-xl-90{
    padding-bottom: 90px;
  }
  .pl-xl-90{
    padding-left: 90px;
  }
  .pr-xl-90{
    padding-right: 90px;
  }
  
  .p-xl-95{
    padding: 95px;
  }
  .pt-xl-95{
    padding-top: 95px;
  }
  .pb-xl-95{
    padding-bottom: 95px;
  }
  .pl-xl-95{
    padding-left: 95px;
  }
  .pr-xl-95{
    padding-right: 95px;
  }
  
  .p-xl-100{
    padding: 100px;
  }
  .pt-xl-100{
    padding-top: 100px;
  }
  .pb-xl-100{
    padding-bottom: 100px;
  }
  .pl-xl-100{
    padding-left: 100px;
  }
  .pr-xl-100{
    padding-right: 100px;
  }
  
  .p-xl-105{
    padding: 105px;
  }
  .pt-xl-105{
    padding-top: 105px;
  }
  .pb-xl-105{
    padding-bottom: 105px;
  }
  .pl-xl-105{
    padding-left: 105px;
  }
  .pr-xl-105{
    padding-right: 105px;
  }
  
  .p-xl-110{
    padding: 110px;
  }
  .pt-xl-110{
    padding-top: 110px;
  }
  .pb-xl-110{
    padding-bottom: 110px;
  }
  .pl-xl-110{
    padding-left: 110px;
  }
  .pr-xl-110{
    padding-right: 110px;
  }
  
  .p-xl-115{
    padding: 115px;
  }
  .pt-xl-115{
    padding-top: 115px;
  }
  .pb-xl-115{
    padding-bottom: 115px;
  }
  .pl-xl-115{
    padding-left: 115px;
  }
  .pr-xl-115{
    padding-right: 115px;
  }
  
  .p-xl-120{
    padding: 120px;
  }
  .pt-xl-120{
    padding-top: 120px;
  }
  .pb-xl-120{
    padding-bottom: 120px;
  }
  .pl-xl-120{
    padding-left: 120px;
  }
  .pr-xl-120{
    padding-right: 120px;
  }
  
  .p-xl-125{
    padding: 125px;
  }
  .pt-xl-125{
    padding-top: 125px;
  }
  .pb-xl-125{
    padding-bottom: 125px;
  }
  .pl-xl-125{
    padding-left: 125px;
  }
  .pr-xl-125{
    padding-right: 125px;
  }
  
  .p-xl-130{
    padding: 130px;
  }
  .pt-xl-130{
    padding-top: 130px;
  }
  .pb-xl-130{
    padding-bottom: 130px;
  }
  .pl-xl-130{
    padding-left: 130px;
  }
  .pr-xl-130{
    padding-right: 130px;
  }
  
  .p-xl-135{
    padding: 135px;
  }
  .pt-xl-135{
    padding-top: 135px;
  }
  .pb-xl-135{
    padding-bottom: 135px;
  }
  .pl-xl-135{
    padding-left: 135px;
  }
  .pr-xl-135{
    padding-right: 135px;
  }
  
  .p-xl-140{
    padding: 140px;
  }
  .pt-xl-140{
    padding-top: 140px;
  }
  .pb-xl-140{
    padding-bottom: 140px;
  }
  .pl-xl-140{
    padding-left: 140px;
  }
  .pr-xl-140{
    padding-right: 140px;
  }
  
  .p-xl-145{
    padding: 145px;
  }
  .pt-xl-145{
    padding-top: 145px;
  }
  .pb-xl-145{
    padding-bottom: 145px;
  }
  .pl-xl-145{
    padding-left: 145px;
  }
  .pr-xl-145{
    padding-right: 145px;
  }
  
  .p-xl-150{
    padding: 150px;
  }
  .pt-xl-150{
    padding-top: 150px;
  }
  .pb-xl-150{
    padding-bottom: 150px;
  }
  .pl-xl-150{
    padding-left: 150px;
  }
  .pr-xl-150{
    padding-right: 150px;
  }
  
  .p-xl-155{
    padding: 155px;
  }
  .pt-xl-155{
    padding-top: 155px;
  }
  .pb-xl-155{
    padding-bottom: 155px;
  }
  .pl-xl-155{
    padding-left: 155px;
  }
  .pr-xl-155{
    padding-right: 155px;
  }
  
  .p-xl-160{
    padding: 160px;
  }
  .pt-xl-160{
    padding-top: 160px;
  }
  .pb-xl-160{
    padding-bottom: 160px;
  }
  .pl-xl-160{
    padding-left: 160px;
  }
  .pr-xl-160{
    padding-right: 160px;
  }
  
  .p-xl-165{
    padding: 165px;
  }
  .pt-xl-165{
    padding-top: 165px;
  }
  .pb-xl-165{
    padding-bottom: 165px;
  }
  .pl-xl-165{
    padding-left: 165px;
  }
  .pr-xl-165{
    padding-right: 165px;
  }
  
  .p-xl-170{
    padding: 170px;
  }
  .pt-xl-170{
    padding-top: 170px;
  }
  .pb-xl-170{
    padding-bottom: 170px;
  }
  .pl-xl-170{
    padding-left: 170px;
  }
  .pr-xl-170{
    padding-right: 170px;
  }
  
  .p-xl-175{
    padding: 175px;
  }
  .pt-xl-175{
    padding-top: 175px;
  }
  .pb-xl-175{
    padding-bottom: 175px;
  }
  .pl-xl-175{
    padding-left: 175px;
  }
  .pr-xl-175{
    padding-right: 175px;
  }
  
  .p-xl-180{
    padding: 180px;
  }
  .pt-xl-180{
    padding-top: 180px;
  }
  .pb-xl-180{
    padding-bottom: 180px;
  }
  .pl-xl-180{
    padding-left: 180px;
  }
  .pr-xl-180{
    padding-right: 180px;
  }
  
  .p-xl-185{
    padding: 185px;
  }
  .pt-xl-185{
    padding-top: 185px;
  }
  .pb-xl-185{
    padding-bottom: 185px;
  }
  .pl-xl-185{
    padding-left: 185px;
  }
  .pr-xl-185{
    padding-right: 185px;
  }
  
  .p-xl-190{
    padding: 190px;
  }
  .pt-xl-190{
    padding-top: 190px;
  }
  .pb-xl-190{
    padding-bottom: 190px;
  }
  .pl-xl-190{
    padding-left: 190px;
  }
  .pr-xl-190{
    padding-right: 190px;
  }
  
  .p-xl-195{
    padding: 195px;
  }
  .pt-xl-195{
    padding-top: 195px;
  }
  .pb-xl-195{
    padding-bottom: 195px;
  }
  .pl-xl-195{
    padding-left: 195px;
  }
  .pr-xl-195{
    padding-right: 195px;
  }
  
  .p-xl-200{
    padding: 200px;
  }
  .pt-xl-200{
    padding-top: 200px;
  }
  .pb-xl-200{
    padding-bottom: 200px;
  }
  .pl-xl-200{
    padding-left: 200px;
  }
  .pr-xl-200{
    padding-right: 200px;
  }
  
}

.ml-auto{
  margin-left: auto;
}
.mr-auto{
  margin-right: auto;
}
.m-auto{
  margin-left: auto;
  margin-right: auto;
}



.m-0{
  margin: 0px;
}
.mt-0{
  margin-top: 0px;
}
.mb-0{
  margin-bottom: 0px;
}
.ml-0{
  margin-left: 0px;
}
.mr-0{
  margin-right: 0px;
}

.m-5{
  margin: 5px;
}
.mt-5{
  margin-top: 5px;
}
.mb-5{
  margin-bottom: 5px;
}
.ml-5{
  margin-left: 5px;
}
.mr-5{
  margin-right: 5px;
}

.m-10{
  margin: 10px;
}
.mt-10{
  margin-top: 10px;
}
.mb-10{
  margin-bottom: 10px;
}
.ml-10{
  margin-left: 10px;
}
.mr-10{
  margin-right: 10px;
}

.m-15{
  margin: 15px;
}
.mt-15{
  margin-top: 15px;
}
.mb-15{
  margin-bottom: 15px;
}
.ml-15{
  margin-left: 15px;
}
.mr-15{
  margin-right: 15px;
}

.m-20{
  margin: 20px;
}
.mt-20{
  margin-top: 20px;
}
.mb-20{
  margin-bottom: 20px;
}
.ml-20{
  margin-left: 20px;
}
.mr-20{
  margin-right: 20px;
}

.m-25{
  margin: 25px;
}
.mt-25{
  margin-top: 25px;
}
.mb-25{
  margin-bottom: 25px;
}
.ml-25{
  margin-left: 25px;
}
.mr-25{
  margin-right: 25px;
}

.m-30{
  margin: 30px;
}
.mt-30{
  margin-top: 30px;
}
.mb-30{
  margin-bottom: 30px;
}
.ml-30{
  margin-left: 30px;
}
.mr-30{
  margin-right: 30px;
}

.m-35{
  margin: 35px;
}
.mt-35{
  margin-top: 35px;
}
.mb-35{
  margin-bottom: 35px;
}
.ml-35{
  margin-left: 35px;
}
.mr-35{
  margin-right: 35px;
}

.m-40{
  margin: 40px;
}
.mt-40{
  margin-top: 40px;
}
.mb-40{
  margin-bottom: 40px;
}
.ml-40{
  margin-left: 40px;
}
.mr-40{
  margin-right: 40px;
}

.m-45{
  margin: 45px;
}
.mt-45{
  margin-top: 45px;
}
.mb-45{
  margin-bottom: 45px;
}
.ml-45{
  margin-left: 45px;
}
.mr-45{
  margin-right: 45px;
}

.m-50{
  margin: 50px;
}
.mt-50{
  margin-top: 50px;
}
.mb-50{
  margin-bottom: 50px;
}
.ml-50{
  margin-left: 50px;
}
.mr-50{
  margin-right: 50px;
}

.m-55{
  margin: 55px;
}
.mt-55{
  margin-top: 55px;
}
.mb-55{
  margin-bottom: 55px;
}
.ml-55{
  margin-left: 55px;
}
.mr-55{
  margin-right: 55px;
}

.m-60{
  margin: 60px;
}
.mt-60{
  margin-top: 60px;
}
.mb-60{
  margin-bottom: 60px;
}
.ml-60{
  margin-left: 60px;
}
.mr-60{
  margin-right: 60px;
}

.m-65{
  margin: 65px;
}
.mt-65{
  margin-top: 65px;
}
.mb-65{
  margin-bottom: 65px;
}
.ml-65{
  margin-left: 65px;
}
.mr-65{
  margin-right: 65px;
}

.m-70{
  margin: 70px;
}
.mt-70{
  margin-top: 70px;
}
.mb-70{
  margin-bottom: 70px;
}
.ml-70{
  margin-left: 70px;
}
.mr-70{
  margin-right: 70px;
}

.m-75{
  margin: 75px;
}
.mt-75{
  margin-top: 75px;
}
.mb-75{
  margin-bottom: 75px;
}
.ml-75{
  margin-left: 75px;
}
.mr-75{
  margin-right: 75px;
}

.m-80{
  margin: 80px;
}
.mt-80{
  margin-top: 80px;
}
.mb-80{
  margin-bottom: 80px;
}
.ml-80{
  margin-left: 80px;
}
.mr-80{
  margin-right: 80px;
}

.m-85{
  margin: 85px;
}
.mt-85{
  margin-top: 85px;
}
.mb-85{
  margin-bottom: 85px;
}
.ml-85{
  margin-left: 85px;
}
.mr-85{
  margin-right: 85px;
}

.m-90{
  margin: 90px;
}
.mt-90{
  margin-top: 90px;
}
.mb-90{
  margin-bottom: 90px;
}
.ml-90{
  margin-left: 90px;
}
.mr-90{
  margin-right: 90px;
}

.m-95{
  margin: 95px;
}
.mt-95{
  margin-top: 95px;
}
.mb-95{
  margin-bottom: 95px;
}
.ml-95{
  margin-left: 95px;
}
.mr-95{
  margin-right: 95px;
}

.m-100{
  margin: 100px;
}
.mt-100{
  margin-top: 100px;
}
.mb-100{
  margin-bottom: 100px;
}
.ml-100{
  margin-left: 100px;
}
.mr-100{
  margin-right: 100px;
}

.m-105{
  margin: 105px;
}
.mt-105{
  margin-top: 105px;
}
.mb-105{
  margin-bottom: 105px;
}
.ml-105{
  margin-left: 105px;
}
.mr-105{
  margin-right: 105px;
}

.m-110{
  margin: 110px;
}
.mt-110{
  margin-top: 110px;
}
.mb-110{
  margin-bottom: 110px;
}
.ml-110{
  margin-left: 110px;
}
.mr-110{
  margin-right: 110px;
}

.m-115{
  margin: 115px;
}
.mt-115{
  margin-top: 115px;
}
.mb-115{
  margin-bottom: 115px;
}
.ml-115{
  margin-left: 115px;
}
.mr-115{
  margin-right: 115px;
}

.m-120{
  margin: 120px;
}
.mt-120{
  margin-top: 120px;
}
.mb-120{
  margin-bottom: 120px;
}
.ml-120{
  margin-left: 120px;
}
.mr-120{
  margin-right: 120px;
}

.m-125{
  margin: 125px;
}
.mt-125{
  margin-top: 125px;
}
.mb-125{
  margin-bottom: 125px;
}
.ml-125{
  margin-left: 125px;
}
.mr-125{
  margin-right: 125px;
}

.m-130{
  margin: 130px;
}
.mt-130{
  margin-top: 130px;
}
.mb-130{
  margin-bottom: 130px;
}
.ml-130{
  margin-left: 130px;
}
.mr-130{
  margin-right: 130px;
}

.m-135{
  margin: 135px;
}
.mt-135{
  margin-top: 135px;
}
.mb-135{
  margin-bottom: 135px;
}
.ml-135{
  margin-left: 135px;
}
.mr-135{
  margin-right: 135px;
}

.m-140{
  margin: 140px;
}
.mt-140{
  margin-top: 140px;
}
.mb-140{
  margin-bottom: 140px;
}
.ml-140{
  margin-left: 140px;
}
.mr-140{
  margin-right: 140px;
}

.m-145{
  margin: 145px;
}
.mt-145{
  margin-top: 145px;
}
.mb-145{
  margin-bottom: 145px;
}
.ml-145{
  margin-left: 145px;
}
.mr-145{
  margin-right: 145px;
}

.m-150{
  margin: 150px;
}
.mt-150{
  margin-top: 150px;
}
.mb-150{
  margin-bottom: 150px;
}
.ml-150{
  margin-left: 150px;
}
.mr-150{
  margin-right: 150px;
}

.m-155{
  margin: 155px;
}
.mt-155{
  margin-top: 155px;
}
.mb-155{
  margin-bottom: 155px;
}
.ml-155{
  margin-left: 155px;
}
.mr-155{
  margin-right: 155px;
}

.m-160{
  margin: 160px;
}
.mt-160{
  margin-top: 160px;
}
.mb-160{
  margin-bottom: 160px;
}
.ml-160{
  margin-left: 160px;
}
.mr-160{
  margin-right: 160px;
}

.m-165{
  margin: 165px;
}
.mt-165{
  margin-top: 165px;
}
.mb-165{
  margin-bottom: 165px;
}
.ml-165{
  margin-left: 165px;
}
.mr-165{
  margin-right: 165px;
}

.m-170{
  margin: 170px;
}
.mt-170{
  margin-top: 170px;
}
.mb-170{
  margin-bottom: 170px;
}
.ml-170{
  margin-left: 170px;
}
.mr-170{
  margin-right: 170px;
}

.m-175{
  margin: 175px;
}
.mt-175{
  margin-top: 175px;
}
.mb-175{
  margin-bottom: 175px;
}
.ml-175{
  margin-left: 175px;
}
.mr-175{
  margin-right: 175px;
}

.m-180{
  margin: 180px;
}
.mt-180{
  margin-top: 180px;
}
.mb-180{
  margin-bottom: 180px;
}
.ml-180{
  margin-left: 180px;
}
.mr-180{
  margin-right: 180px;
}

.m-185{
  margin: 185px;
}
.mt-185{
  margin-top: 185px;
}
.mb-185{
  margin-bottom: 185px;
}
.ml-185{
  margin-left: 185px;
}
.mr-185{
  margin-right: 185px;
}

.m-190{
  margin: 190px;
}
.mt-190{
  margin-top: 190px;
}
.mb-190{
  margin-bottom: 190px;
}
.ml-190{
  margin-left: 190px;
}
.mr-190{
  margin-right: 190px;
}

.m-195{
  margin: 195px;
}
.mt-195{
  margin-top: 195px;
}
.mb-195{
  margin-bottom: 195px;
}
.ml-195{
  margin-left: 195px;
}
.mr-195{
  margin-right: 195px;
}

.m-200{
  margin: 200px;
}
.mt-200{
  margin-top: 200px;
}
.mb-200{
  margin-bottom: 200px;
}
.ml-200{
  margin-left: 200px;
}
.mr-200{
  margin-right: 200px;
}

@media (min-width: 576px){
  
  .m-sm-0{
    margin: 0px;
  }
  .mt-sm-0{
    margin-top: 0px;
  }
  .mb-sm-0{
    margin-bottom: 0px;
  }
  .ml-sm-0{
    margin-left: 0px;
  }
  .mr-sm-0{
    margin-right: 0px;
  }
  
  .m-sm-5{
    margin: 5px;
  }
  .mt-sm-5{
    margin-top: 5px;
  }
  .mb-sm-5{
    margin-bottom: 5px;
  }
  .ml-sm-5{
    margin-left: 5px;
  }
  .mr-sm-5{
    margin-right: 5px;
  }
  
  .m-sm-10{
    margin: 10px;
  }
  .mt-sm-10{
    margin-top: 10px;
  }
  .mb-sm-10{
    margin-bottom: 10px;
  }
  .ml-sm-10{
    margin-left: 10px;
  }
  .mr-sm-10{
    margin-right: 10px;
  }
  
  .m-sm-15{
    margin: 15px;
  }
  .mt-sm-15{
    margin-top: 15px;
  }
  .mb-sm-15{
    margin-bottom: 15px;
  }
  .ml-sm-15{
    margin-left: 15px;
  }
  .mr-sm-15{
    margin-right: 15px;
  }
  
  .m-sm-20{
    margin: 20px;
  }
  .mt-sm-20{
    margin-top: 20px;
  }
  .mb-sm-20{
    margin-bottom: 20px;
  }
  .ml-sm-20{
    margin-left: 20px;
  }
  .mr-sm-20{
    margin-right: 20px;
  }
  
  .m-sm-25{
    margin: 25px;
  }
  .mt-sm-25{
    margin-top: 25px;
  }
  .mb-sm-25{
    margin-bottom: 25px;
  }
  .ml-sm-25{
    margin-left: 25px;
  }
  .mr-sm-25{
    margin-right: 25px;
  }
  
  .m-sm-30{
    margin: 30px;
  }
  .mt-sm-30{
    margin-top: 30px;
  }
  .mb-sm-30{
    margin-bottom: 30px;
  }
  .ml-sm-30{
    margin-left: 30px;
  }
  .mr-sm-30{
    margin-right: 30px;
  }
  
  .m-sm-35{
    margin: 35px;
  }
  .mt-sm-35{
    margin-top: 35px;
  }
  .mb-sm-35{
    margin-bottom: 35px;
  }
  .ml-sm-35{
    margin-left: 35px;
  }
  .mr-sm-35{
    margin-right: 35px;
  }
  
  .m-sm-40{
    margin: 40px;
  }
  .mt-sm-40{
    margin-top: 40px;
  }
  .mb-sm-40{
    margin-bottom: 40px;
  }
  .ml-sm-40{
    margin-left: 40px;
  }
  .mr-sm-40{
    margin-right: 40px;
  }
  
  .m-sm-45{
    margin: 45px;
  }
  .mt-sm-45{
    margin-top: 45px;
  }
  .mb-sm-45{
    margin-bottom: 45px;
  }
  .ml-sm-45{
    margin-left: 45px;
  }
  .mr-sm-45{
    margin-right: 45px;
  }
  
  .m-sm-50{
    margin: 50px;
  }
  .mt-sm-50{
    margin-top: 50px;
  }
  .mb-sm-50{
    margin-bottom: 50px;
  }
  .ml-sm-50{
    margin-left: 50px;
  }
  .mr-sm-50{
    margin-right: 50px;
  }
  
  .m-sm-55{
    margin: 55px;
  }
  .mt-sm-55{
    margin-top: 55px;
  }
  .mb-sm-55{
    margin-bottom: 55px;
  }
  .ml-sm-55{
    margin-left: 55px;
  }
  .mr-sm-55{
    margin-right: 55px;
  }
  
  .m-sm-60{
    margin: 60px;
  }
  .mt-sm-60{
    margin-top: 60px;
  }
  .mb-sm-60{
    margin-bottom: 60px;
  }
  .ml-sm-60{
    margin-left: 60px;
  }
  .mr-sm-60{
    margin-right: 60px;
  }
  
  .m-sm-65{
    margin: 65px;
  }
  .mt-sm-65{
    margin-top: 65px;
  }
  .mb-sm-65{
    margin-bottom: 65px;
  }
  .ml-sm-65{
    margin-left: 65px;
  }
  .mr-sm-65{
    margin-right: 65px;
  }
  
  .m-sm-70{
    margin: 70px;
  }
  .mt-sm-70{
    margin-top: 70px;
  }
  .mb-sm-70{
    margin-bottom: 70px;
  }
  .ml-sm-70{
    margin-left: 70px;
  }
  .mr-sm-70{
    margin-right: 70px;
  }
  
  .m-sm-75{
    margin: 75px;
  }
  .mt-sm-75{
    margin-top: 75px;
  }
  .mb-sm-75{
    margin-bottom: 75px;
  }
  .ml-sm-75{
    margin-left: 75px;
  }
  .mr-sm-75{
    margin-right: 75px;
  }
  
  .m-sm-80{
    margin: 80px;
  }
  .mt-sm-80{
    margin-top: 80px;
  }
  .mb-sm-80{
    margin-bottom: 80px;
  }
  .ml-sm-80{
    margin-left: 80px;
  }
  .mr-sm-80{
    margin-right: 80px;
  }
  
  .m-sm-85{
    margin: 85px;
  }
  .mt-sm-85{
    margin-top: 85px;
  }
  .mb-sm-85{
    margin-bottom: 85px;
  }
  .ml-sm-85{
    margin-left: 85px;
  }
  .mr-sm-85{
    margin-right: 85px;
  }
  
  .m-sm-90{
    margin: 90px;
  }
  .mt-sm-90{
    margin-top: 90px;
  }
  .mb-sm-90{
    margin-bottom: 90px;
  }
  .ml-sm-90{
    margin-left: 90px;
  }
  .mr-sm-90{
    margin-right: 90px;
  }
  
  .m-sm-95{
    margin: 95px;
  }
  .mt-sm-95{
    margin-top: 95px;
  }
  .mb-sm-95{
    margin-bottom: 95px;
  }
  .ml-sm-95{
    margin-left: 95px;
  }
  .mr-sm-95{
    margin-right: 95px;
  }
  
  .m-sm-100{
    margin: 100px;
  }
  .mt-sm-100{
    margin-top: 100px;
  }
  .mb-sm-100{
    margin-bottom: 100px;
  }
  .ml-sm-100{
    margin-left: 100px;
  }
  .mr-sm-100{
    margin-right: 100px;
  }
  
  .m-sm-105{
    margin: 105px;
  }
  .mt-sm-105{
    margin-top: 105px;
  }
  .mb-sm-105{
    margin-bottom: 105px;
  }
  .ml-sm-105{
    margin-left: 105px;
  }
  .mr-sm-105{
    margin-right: 105px;
  }
  
  .m-sm-110{
    margin: 110px;
  }
  .mt-sm-110{
    margin-top: 110px;
  }
  .mb-sm-110{
    margin-bottom: 110px;
  }
  .ml-sm-110{
    margin-left: 110px;
  }
  .mr-sm-110{
    margin-right: 110px;
  }
  
  .m-sm-115{
    margin: 115px;
  }
  .mt-sm-115{
    margin-top: 115px;
  }
  .mb-sm-115{
    margin-bottom: 115px;
  }
  .ml-sm-115{
    margin-left: 115px;
  }
  .mr-sm-115{
    margin-right: 115px;
  }
  
  .m-sm-120{
    margin: 120px;
  }
  .mt-sm-120{
    margin-top: 120px;
  }
  .mb-sm-120{
    margin-bottom: 120px;
  }
  .ml-sm-120{
    margin-left: 120px;
  }
  .mr-sm-120{
    margin-right: 120px;
  }
  
  .m-sm-125{
    margin: 125px;
  }
  .mt-sm-125{
    margin-top: 125px;
  }
  .mb-sm-125{
    margin-bottom: 125px;
  }
  .ml-sm-125{
    margin-left: 125px;
  }
  .mr-sm-125{
    margin-right: 125px;
  }
  
  .m-sm-130{
    margin: 130px;
  }
  .mt-sm-130{
    margin-top: 130px;
  }
  .mb-sm-130{
    margin-bottom: 130px;
  }
  .ml-sm-130{
    margin-left: 130px;
  }
  .mr-sm-130{
    margin-right: 130px;
  }
  
  .m-sm-135{
    margin: 135px;
  }
  .mt-sm-135{
    margin-top: 135px;
  }
  .mb-sm-135{
    margin-bottom: 135px;
  }
  .ml-sm-135{
    margin-left: 135px;
  }
  .mr-sm-135{
    margin-right: 135px;
  }
  
  .m-sm-140{
    margin: 140px;
  }
  .mt-sm-140{
    margin-top: 140px;
  }
  .mb-sm-140{
    margin-bottom: 140px;
  }
  .ml-sm-140{
    margin-left: 140px;
  }
  .mr-sm-140{
    margin-right: 140px;
  }
  
  .m-sm-145{
    margin: 145px;
  }
  .mt-sm-145{
    margin-top: 145px;
  }
  .mb-sm-145{
    margin-bottom: 145px;
  }
  .ml-sm-145{
    margin-left: 145px;
  }
  .mr-sm-145{
    margin-right: 145px;
  }
  
  .m-sm-150{
    margin: 150px;
  }
  .mt-sm-150{
    margin-top: 150px;
  }
  .mb-sm-150{
    margin-bottom: 150px;
  }
  .ml-sm-150{
    margin-left: 150px;
  }
  .mr-sm-150{
    margin-right: 150px;
  }
  
  .m-sm-155{
    margin: 155px;
  }
  .mt-sm-155{
    margin-top: 155px;
  }
  .mb-sm-155{
    margin-bottom: 155px;
  }
  .ml-sm-155{
    margin-left: 155px;
  }
  .mr-sm-155{
    margin-right: 155px;
  }
  
  .m-sm-160{
    margin: 160px;
  }
  .mt-sm-160{
    margin-top: 160px;
  }
  .mb-sm-160{
    margin-bottom: 160px;
  }
  .ml-sm-160{
    margin-left: 160px;
  }
  .mr-sm-160{
    margin-right: 160px;
  }
  
  .m-sm-165{
    margin: 165px;
  }
  .mt-sm-165{
    margin-top: 165px;
  }
  .mb-sm-165{
    margin-bottom: 165px;
  }
  .ml-sm-165{
    margin-left: 165px;
  }
  .mr-sm-165{
    margin-right: 165px;
  }
  
  .m-sm-170{
    margin: 170px;
  }
  .mt-sm-170{
    margin-top: 170px;
  }
  .mb-sm-170{
    margin-bottom: 170px;
  }
  .ml-sm-170{
    margin-left: 170px;
  }
  .mr-sm-170{
    margin-right: 170px;
  }
  
  .m-sm-175{
    margin: 175px;
  }
  .mt-sm-175{
    margin-top: 175px;
  }
  .mb-sm-175{
    margin-bottom: 175px;
  }
  .ml-sm-175{
    margin-left: 175px;
  }
  .mr-sm-175{
    margin-right: 175px;
  }
  
  .m-sm-180{
    margin: 180px;
  }
  .mt-sm-180{
    margin-top: 180px;
  }
  .mb-sm-180{
    margin-bottom: 180px;
  }
  .ml-sm-180{
    margin-left: 180px;
  }
  .mr-sm-180{
    margin-right: 180px;
  }
  
  .m-sm-185{
    margin: 185px;
  }
  .mt-sm-185{
    margin-top: 185px;
  }
  .mb-sm-185{
    margin-bottom: 185px;
  }
  .ml-sm-185{
    margin-left: 185px;
  }
  .mr-sm-185{
    margin-right: 185px;
  }
  
  .m-sm-190{
    margin: 190px;
  }
  .mt-sm-190{
    margin-top: 190px;
  }
  .mb-sm-190{
    margin-bottom: 190px;
  }
  .ml-sm-190{
    margin-left: 190px;
  }
  .mr-sm-190{
    margin-right: 190px;
  }
  
  .m-sm-195{
    margin: 195px;
  }
  .mt-sm-195{
    margin-top: 195px;
  }
  .mb-sm-195{
    margin-bottom: 195px;
  }
  .ml-sm-195{
    margin-left: 195px;
  }
  .mr-sm-195{
    margin-right: 195px;
  }
  
  .m-sm-200{
    margin: 200px;
  }
  .mt-sm-200{
    margin-top: 200px;
  }
  .mb-sm-200{
    margin-bottom: 200px;
  }
  .ml-sm-200{
    margin-left: 200px;
  }
  .mr-sm-200{
    margin-right: 200px;
  }
  
}
@media (min-width: 768px){
  
  .m-md-0{
    margin: 0px;
  }
  .mt-md-0{
    margin-top: 0px;
  }
  .mb-md-0{
    margin-bottom: 0px;
  }
  .ml-md-0{
    margin-left: 0px;
  }
  .mr-md-0{
    margin-right: 0px;
  }
  
  .m-md-5{
    margin: 5px;
  }
  .mt-md-5{
    margin-top: 5px;
  }
  .mb-md-5{
    margin-bottom: 5px;
  }
  .ml-md-5{
    margin-left: 5px;
  }
  .mr-md-5{
    margin-right: 5px;
  }
  
  .m-md-10{
    margin: 10px;
  }
  .mt-md-10{
    margin-top: 10px;
  }
  .mb-md-10{
    margin-bottom: 10px;
  }
  .ml-md-10{
    margin-left: 10px;
  }
  .mr-md-10{
    margin-right: 10px;
  }
  
  .m-md-15{
    margin: 15px;
  }
  .mt-md-15{
    margin-top: 15px;
  }
  .mb-md-15{
    margin-bottom: 15px;
  }
  .ml-md-15{
    margin-left: 15px;
  }
  .mr-md-15{
    margin-right: 15px;
  }
  
  .m-md-20{
    margin: 20px;
  }
  .mt-md-20{
    margin-top: 20px;
  }
  .mb-md-20{
    margin-bottom: 20px;
  }
  .ml-md-20{
    margin-left: 20px;
  }
  .mr-md-20{
    margin-right: 20px;
  }
  
  .m-md-25{
    margin: 25px;
  }
  .mt-md-25{
    margin-top: 25px;
  }
  .mb-md-25{
    margin-bottom: 25px;
  }
  .ml-md-25{
    margin-left: 25px;
  }
  .mr-md-25{
    margin-right: 25px;
  }
  
  .m-md-30{
    margin: 30px;
  }
  .mt-md-30{
    margin-top: 30px;
  }
  .mb-md-30{
    margin-bottom: 30px;
  }
  .ml-md-30{
    margin-left: 30px;
  }
  .mr-md-30{
    margin-right: 30px;
  }
  
  .m-md-35{
    margin: 35px;
  }
  .mt-md-35{
    margin-top: 35px;
  }
  .mb-md-35{
    margin-bottom: 35px;
  }
  .ml-md-35{
    margin-left: 35px;
  }
  .mr-md-35{
    margin-right: 35px;
  }
  
  .m-md-40{
    margin: 40px;
  }
  .mt-md-40{
    margin-top: 40px;
  }
  .mb-md-40{
    margin-bottom: 40px;
  }
  .ml-md-40{
    margin-left: 40px;
  }
  .mr-md-40{
    margin-right: 40px;
  }
  
  .m-md-45{
    margin: 45px;
  }
  .mt-md-45{
    margin-top: 45px;
  }
  .mb-md-45{
    margin-bottom: 45px;
  }
  .ml-md-45{
    margin-left: 45px;
  }
  .mr-md-45{
    margin-right: 45px;
  }
  
  .m-md-50{
    margin: 50px;
  }
  .mt-md-50{
    margin-top: 50px;
  }
  .mb-md-50{
    margin-bottom: 50px;
  }
  .ml-md-50{
    margin-left: 50px;
  }
  .mr-md-50{
    margin-right: 50px;
  }
  
  .m-md-55{
    margin: 55px;
  }
  .mt-md-55{
    margin-top: 55px;
  }
  .mb-md-55{
    margin-bottom: 55px;
  }
  .ml-md-55{
    margin-left: 55px;
  }
  .mr-md-55{
    margin-right: 55px;
  }
  
  .m-md-60{
    margin: 60px;
  }
  .mt-md-60{
    margin-top: 60px;
  }
  .mb-md-60{
    margin-bottom: 60px;
  }
  .ml-md-60{
    margin-left: 60px;
  }
  .mr-md-60{
    margin-right: 60px;
  }
  
  .m-md-65{
    margin: 65px;
  }
  .mt-md-65{
    margin-top: 65px;
  }
  .mb-md-65{
    margin-bottom: 65px;
  }
  .ml-md-65{
    margin-left: 65px;
  }
  .mr-md-65{
    margin-right: 65px;
  }
  
  .m-md-70{
    margin: 70px;
  }
  .mt-md-70{
    margin-top: 70px;
  }
  .mb-md-70{
    margin-bottom: 70px;
  }
  .ml-md-70{
    margin-left: 70px;
  }
  .mr-md-70{
    margin-right: 70px;
  }
  
  .m-md-75{
    margin: 75px;
  }
  .mt-md-75{
    margin-top: 75px;
  }
  .mb-md-75{
    margin-bottom: 75px;
  }
  .ml-md-75{
    margin-left: 75px;
  }
  .mr-md-75{
    margin-right: 75px;
  }
  
  .m-md-80{
    margin: 80px;
  }
  .mt-md-80{
    margin-top: 80px;
  }
  .mb-md-80{
    margin-bottom: 80px;
  }
  .ml-md-80{
    margin-left: 80px;
  }
  .mr-md-80{
    margin-right: 80px;
  }
  
  .m-md-85{
    margin: 85px;
  }
  .mt-md-85{
    margin-top: 85px;
  }
  .mb-md-85{
    margin-bottom: 85px;
  }
  .ml-md-85{
    margin-left: 85px;
  }
  .mr-md-85{
    margin-right: 85px;
  }
  
  .m-md-90{
    margin: 90px;
  }
  .mt-md-90{
    margin-top: 90px;
  }
  .mb-md-90{
    margin-bottom: 90px;
  }
  .ml-md-90{
    margin-left: 90px;
  }
  .mr-md-90{
    margin-right: 90px;
  }
  
  .m-md-95{
    margin: 95px;
  }
  .mt-md-95{
    margin-top: 95px;
  }
  .mb-md-95{
    margin-bottom: 95px;
  }
  .ml-md-95{
    margin-left: 95px;
  }
  .mr-md-95{
    margin-right: 95px;
  }
  
  .m-md-100{
    margin: 100px;
  }
  .mt-md-100{
    margin-top: 100px;
  }
  .mb-md-100{
    margin-bottom: 100px;
  }
  .ml-md-100{
    margin-left: 100px;
  }
  .mr-md-100{
    margin-right: 100px;
  }
  
  .m-md-105{
    margin: 105px;
  }
  .mt-md-105{
    margin-top: 105px;
  }
  .mb-md-105{
    margin-bottom: 105px;
  }
  .ml-md-105{
    margin-left: 105px;
  }
  .mr-md-105{
    margin-right: 105px;
  }
  
  .m-md-110{
    margin: 110px;
  }
  .mt-md-110{
    margin-top: 110px;
  }
  .mb-md-110{
    margin-bottom: 110px;
  }
  .ml-md-110{
    margin-left: 110px;
  }
  .mr-md-110{
    margin-right: 110px;
  }
  
  .m-md-115{
    margin: 115px;
  }
  .mt-md-115{
    margin-top: 115px;
  }
  .mb-md-115{
    margin-bottom: 115px;
  }
  .ml-md-115{
    margin-left: 115px;
  }
  .mr-md-115{
    margin-right: 115px;
  }
  
  .m-md-120{
    margin: 120px;
  }
  .mt-md-120{
    margin-top: 120px;
  }
  .mb-md-120{
    margin-bottom: 120px;
  }
  .ml-md-120{
    margin-left: 120px;
  }
  .mr-md-120{
    margin-right: 120px;
  }
  
  .m-md-125{
    margin: 125px;
  }
  .mt-md-125{
    margin-top: 125px;
  }
  .mb-md-125{
    margin-bottom: 125px;
  }
  .ml-md-125{
    margin-left: 125px;
  }
  .mr-md-125{
    margin-right: 125px;
  }
  
  .m-md-130{
    margin: 130px;
  }
  .mt-md-130{
    margin-top: 130px;
  }
  .mb-md-130{
    margin-bottom: 130px;
  }
  .ml-md-130{
    margin-left: 130px;
  }
  .mr-md-130{
    margin-right: 130px;
  }
  
  .m-md-135{
    margin: 135px;
  }
  .mt-md-135{
    margin-top: 135px;
  }
  .mb-md-135{
    margin-bottom: 135px;
  }
  .ml-md-135{
    margin-left: 135px;
  }
  .mr-md-135{
    margin-right: 135px;
  }
  
  .m-md-140{
    margin: 140px;
  }
  .mt-md-140{
    margin-top: 140px;
  }
  .mb-md-140{
    margin-bottom: 140px;
  }
  .ml-md-140{
    margin-left: 140px;
  }
  .mr-md-140{
    margin-right: 140px;
  }
  
  .m-md-145{
    margin: 145px;
  }
  .mt-md-145{
    margin-top: 145px;
  }
  .mb-md-145{
    margin-bottom: 145px;
  }
  .ml-md-145{
    margin-left: 145px;
  }
  .mr-md-145{
    margin-right: 145px;
  }
  
  .m-md-150{
    margin: 150px;
  }
  .mt-md-150{
    margin-top: 150px;
  }
  .mb-md-150{
    margin-bottom: 150px;
  }
  .ml-md-150{
    margin-left: 150px;
  }
  .mr-md-150{
    margin-right: 150px;
  }
  
  .m-md-155{
    margin: 155px;
  }
  .mt-md-155{
    margin-top: 155px;
  }
  .mb-md-155{
    margin-bottom: 155px;
  }
  .ml-md-155{
    margin-left: 155px;
  }
  .mr-md-155{
    margin-right: 155px;
  }
  
  .m-md-160{
    margin: 160px;
  }
  .mt-md-160{
    margin-top: 160px;
  }
  .mb-md-160{
    margin-bottom: 160px;
  }
  .ml-md-160{
    margin-left: 160px;
  }
  .mr-md-160{
    margin-right: 160px;
  }
  
  .m-md-165{
    margin: 165px;
  }
  .mt-md-165{
    margin-top: 165px;
  }
  .mb-md-165{
    margin-bottom: 165px;
  }
  .ml-md-165{
    margin-left: 165px;
  }
  .mr-md-165{
    margin-right: 165px;
  }
  
  .m-md-170{
    margin: 170px;
  }
  .mt-md-170{
    margin-top: 170px;
  }
  .mb-md-170{
    margin-bottom: 170px;
  }
  .ml-md-170{
    margin-left: 170px;
  }
  .mr-md-170{
    margin-right: 170px;
  }
  
  .m-md-175{
    margin: 175px;
  }
  .mt-md-175{
    margin-top: 175px;
  }
  .mb-md-175{
    margin-bottom: 175px;
  }
  .ml-md-175{
    margin-left: 175px;
  }
  .mr-md-175{
    margin-right: 175px;
  }
  
  .m-md-180{
    margin: 180px;
  }
  .mt-md-180{
    margin-top: 180px;
  }
  .mb-md-180{
    margin-bottom: 180px;
  }
  .ml-md-180{
    margin-left: 180px;
  }
  .mr-md-180{
    margin-right: 180px;
  }
  
  .m-md-185{
    margin: 185px;
  }
  .mt-md-185{
    margin-top: 185px;
  }
  .mb-md-185{
    margin-bottom: 185px;
  }
  .ml-md-185{
    margin-left: 185px;
  }
  .mr-md-185{
    margin-right: 185px;
  }
  
  .m-md-190{
    margin: 190px;
  }
  .mt-md-190{
    margin-top: 190px;
  }
  .mb-md-190{
    margin-bottom: 190px;
  }
  .ml-md-190{
    margin-left: 190px;
  }
  .mr-md-190{
    margin-right: 190px;
  }
  
  .m-md-195{
    margin: 195px;
  }
  .mt-md-195{
    margin-top: 195px;
  }
  .mb-md-195{
    margin-bottom: 195px;
  }
  .ml-md-195{
    margin-left: 195px;
  }
  .mr-md-195{
    margin-right: 195px;
  }
  
  .m-md-200{
    margin: 200px;
  }
  .mt-md-200{
    margin-top: 200px;
  }
  .mb-md-200{
    margin-bottom: 200px;
  }
  .ml-md-200{
    margin-left: 200px;
  }
  .mr-md-200{
    margin-right: 200px;
  }
  
}
@media (min-width: 992px){
  
  .m-lg-0{
    margin: 0px;
  }
  .mt-lg-0{
    margin-top: 0px;
  }
  .mb-lg-0{
    margin-bottom: 0px;
  }
  .ml-lg-0{
    margin-left: 0px;
  }
  .mr-lg-0{
    margin-right: 0px;
  }
  
  .m-lg-5{
    margin: 5px;
  }
  .mt-lg-5{
    margin-top: 5px;
  }
  .mb-lg-5{
    margin-bottom: 5px;
  }
  .ml-lg-5{
    margin-left: 5px;
  }
  .mr-lg-5{
    margin-right: 5px;
  }
  
  .m-lg-10{
    margin: 10px;
  }
  .mt-lg-10{
    margin-top: 10px;
  }
  .mb-lg-10{
    margin-bottom: 10px;
  }
  .ml-lg-10{
    margin-left: 10px;
  }
  .mr-lg-10{
    margin-right: 10px;
  }
  
  .m-lg-15{
    margin: 15px;
  }
  .mt-lg-15{
    margin-top: 15px;
  }
  .mb-lg-15{
    margin-bottom: 15px;
  }
  .ml-lg-15{
    margin-left: 15px;
  }
  .mr-lg-15{
    margin-right: 15px;
  }
  
  .m-lg-20{
    margin: 20px;
  }
  .mt-lg-20{
    margin-top: 20px;
  }
  .mb-lg-20{
    margin-bottom: 20px;
  }
  .ml-lg-20{
    margin-left: 20px;
  }
  .mr-lg-20{
    margin-right: 20px;
  }
  
  .m-lg-25{
    margin: 25px;
  }
  .mt-lg-25{
    margin-top: 25px;
  }
  .mb-lg-25{
    margin-bottom: 25px;
  }
  .ml-lg-25{
    margin-left: 25px;
  }
  .mr-lg-25{
    margin-right: 25px;
  }
  
  .m-lg-30{
    margin: 30px;
  }
  .mt-lg-30{
    margin-top: 30px;
  }
  .mb-lg-30{
    margin-bottom: 30px;
  }
  .ml-lg-30{
    margin-left: 30px;
  }
  .mr-lg-30{
    margin-right: 30px;
  }
  
  .m-lg-35{
    margin: 35px;
  }
  .mt-lg-35{
    margin-top: 35px;
  }
  .mb-lg-35{
    margin-bottom: 35px;
  }
  .ml-lg-35{
    margin-left: 35px;
  }
  .mr-lg-35{
    margin-right: 35px;
  }
  
  .m-lg-40{
    margin: 40px;
  }
  .mt-lg-40{
    margin-top: 40px;
  }
  .mb-lg-40{
    margin-bottom: 40px;
  }
  .ml-lg-40{
    margin-left: 40px;
  }
  .mr-lg-40{
    margin-right: 40px;
  }
  
  .m-lg-45{
    margin: 45px;
  }
  .mt-lg-45{
    margin-top: 45px;
  }
  .mb-lg-45{
    margin-bottom: 45px;
  }
  .ml-lg-45{
    margin-left: 45px;
  }
  .mr-lg-45{
    margin-right: 45px;
  }
  
  .m-lg-50{
    margin: 50px;
  }
  .mt-lg-50{
    margin-top: 50px;
  }
  .mb-lg-50{
    margin-bottom: 50px;
  }
  .ml-lg-50{
    margin-left: 50px;
  }
  .mr-lg-50{
    margin-right: 50px;
  }
  
  .m-lg-55{
    margin: 55px;
  }
  .mt-lg-55{
    margin-top: 55px;
  }
  .mb-lg-55{
    margin-bottom: 55px;
  }
  .ml-lg-55{
    margin-left: 55px;
  }
  .mr-lg-55{
    margin-right: 55px;
  }
  
  .m-lg-60{
    margin: 60px;
  }
  .mt-lg-60{
    margin-top: 60px;
  }
  .mb-lg-60{
    margin-bottom: 60px;
  }
  .ml-lg-60{
    margin-left: 60px;
  }
  .mr-lg-60{
    margin-right: 60px;
  }
  
  .m-lg-65{
    margin: 65px;
  }
  .mt-lg-65{
    margin-top: 65px;
  }
  .mb-lg-65{
    margin-bottom: 65px;
  }
  .ml-lg-65{
    margin-left: 65px;
  }
  .mr-lg-65{
    margin-right: 65px;
  }
  
  .m-lg-70{
    margin: 70px;
  }
  .mt-lg-70{
    margin-top: 70px;
  }
  .mb-lg-70{
    margin-bottom: 70px;
  }
  .ml-lg-70{
    margin-left: 70px;
  }
  .mr-lg-70{
    margin-right: 70px;
  }
  
  .m-lg-75{
    margin: 75px;
  }
  .mt-lg-75{
    margin-top: 75px;
  }
  .mb-lg-75{
    margin-bottom: 75px;
  }
  .ml-lg-75{
    margin-left: 75px;
  }
  .mr-lg-75{
    margin-right: 75px;
  }
  
  .m-lg-80{
    margin: 80px;
  }
  .mt-lg-80{
    margin-top: 80px;
  }
  .mb-lg-80{
    margin-bottom: 80px;
  }
  .ml-lg-80{
    margin-left: 80px;
  }
  .mr-lg-80{
    margin-right: 80px;
  }
  
  .m-lg-85{
    margin: 85px;
  }
  .mt-lg-85{
    margin-top: 85px;
  }
  .mb-lg-85{
    margin-bottom: 85px;
  }
  .ml-lg-85{
    margin-left: 85px;
  }
  .mr-lg-85{
    margin-right: 85px;
  }
  
  .m-lg-90{
    margin: 90px;
  }
  .mt-lg-90{
    margin-top: 90px;
  }
  .mb-lg-90{
    margin-bottom: 90px;
  }
  .ml-lg-90{
    margin-left: 90px;
  }
  .mr-lg-90{
    margin-right: 90px;
  }
  
  .m-lg-95{
    margin: 95px;
  }
  .mt-lg-95{
    margin-top: 95px;
  }
  .mb-lg-95{
    margin-bottom: 95px;
  }
  .ml-lg-95{
    margin-left: 95px;
  }
  .mr-lg-95{
    margin-right: 95px;
  }
  
  .m-lg-100{
    margin: 100px;
  }
  .mt-lg-100{
    margin-top: 100px;
  }
  .mb-lg-100{
    margin-bottom: 100px;
  }
  .ml-lg-100{
    margin-left: 100px;
  }
  .mr-lg-100{
    margin-right: 100px;
  }
  
  .m-lg-105{
    margin: 105px;
  }
  .mt-lg-105{
    margin-top: 105px;
  }
  .mb-lg-105{
    margin-bottom: 105px;
  }
  .ml-lg-105{
    margin-left: 105px;
  }
  .mr-lg-105{
    margin-right: 105px;
  }
  
  .m-lg-110{
    margin: 110px;
  }
  .mt-lg-110{
    margin-top: 110px;
  }
  .mb-lg-110{
    margin-bottom: 110px;
  }
  .ml-lg-110{
    margin-left: 110px;
  }
  .mr-lg-110{
    margin-right: 110px;
  }
  
  .m-lg-115{
    margin: 115px;
  }
  .mt-lg-115{
    margin-top: 115px;
  }
  .mb-lg-115{
    margin-bottom: 115px;
  }
  .ml-lg-115{
    margin-left: 115px;
  }
  .mr-lg-115{
    margin-right: 115px;
  }
  
  .m-lg-120{
    margin: 120px;
  }
  .mt-lg-120{
    margin-top: 120px;
  }
  .mb-lg-120{
    margin-bottom: 120px;
  }
  .ml-lg-120{
    margin-left: 120px;
  }
  .mr-lg-120{
    margin-right: 120px;
  }
  
  .m-lg-125{
    margin: 125px;
  }
  .mt-lg-125{
    margin-top: 125px;
  }
  .mb-lg-125{
    margin-bottom: 125px;
  }
  .ml-lg-125{
    margin-left: 125px;
  }
  .mr-lg-125{
    margin-right: 125px;
  }
  
  .m-lg-130{
    margin: 130px;
  }
  .mt-lg-130{
    margin-top: 130px;
  }
  .mb-lg-130{
    margin-bottom: 130px;
  }
  .ml-lg-130{
    margin-left: 130px;
  }
  .mr-lg-130{
    margin-right: 130px;
  }
  
  .m-lg-135{
    margin: 135px;
  }
  .mt-lg-135{
    margin-top: 135px;
  }
  .mb-lg-135{
    margin-bottom: 135px;
  }
  .ml-lg-135{
    margin-left: 135px;
  }
  .mr-lg-135{
    margin-right: 135px;
  }
  
  .m-lg-140{
    margin: 140px;
  }
  .mt-lg-140{
    margin-top: 140px;
  }
  .mb-lg-140{
    margin-bottom: 140px;
  }
  .ml-lg-140{
    margin-left: 140px;
  }
  .mr-lg-140{
    margin-right: 140px;
  }
  
  .m-lg-145{
    margin: 145px;
  }
  .mt-lg-145{
    margin-top: 145px;
  }
  .mb-lg-145{
    margin-bottom: 145px;
  }
  .ml-lg-145{
    margin-left: 145px;
  }
  .mr-lg-145{
    margin-right: 145px;
  }
  
  .m-lg-150{
    margin: 150px;
  }
  .mt-lg-150{
    margin-top: 150px;
  }
  .mb-lg-150{
    margin-bottom: 150px;
  }
  .ml-lg-150{
    margin-left: 150px;
  }
  .mr-lg-150{
    margin-right: 150px;
  }
  
  .m-lg-155{
    margin: 155px;
  }
  .mt-lg-155{
    margin-top: 155px;
  }
  .mb-lg-155{
    margin-bottom: 155px;
  }
  .ml-lg-155{
    margin-left: 155px;
  }
  .mr-lg-155{
    margin-right: 155px;
  }
  
  .m-lg-160{
    margin: 160px;
  }
  .mt-lg-160{
    margin-top: 160px;
  }
  .mb-lg-160{
    margin-bottom: 160px;
  }
  .ml-lg-160{
    margin-left: 160px;
  }
  .mr-lg-160{
    margin-right: 160px;
  }
  
  .m-lg-165{
    margin: 165px;
  }
  .mt-lg-165{
    margin-top: 165px;
  }
  .mb-lg-165{
    margin-bottom: 165px;
  }
  .ml-lg-165{
    margin-left: 165px;
  }
  .mr-lg-165{
    margin-right: 165px;
  }
  
  .m-lg-170{
    margin: 170px;
  }
  .mt-lg-170{
    margin-top: 170px;
  }
  .mb-lg-170{
    margin-bottom: 170px;
  }
  .ml-lg-170{
    margin-left: 170px;
  }
  .mr-lg-170{
    margin-right: 170px;
  }
  
  .m-lg-175{
    margin: 175px;
  }
  .mt-lg-175{
    margin-top: 175px;
  }
  .mb-lg-175{
    margin-bottom: 175px;
  }
  .ml-lg-175{
    margin-left: 175px;
  }
  .mr-lg-175{
    margin-right: 175px;
  }
  
  .m-lg-180{
    margin: 180px;
  }
  .mt-lg-180{
    margin-top: 180px;
  }
  .mb-lg-180{
    margin-bottom: 180px;
  }
  .ml-lg-180{
    margin-left: 180px;
  }
  .mr-lg-180{
    margin-right: 180px;
  }
  
  .m-lg-185{
    margin: 185px;
  }
  .mt-lg-185{
    margin-top: 185px;
  }
  .mb-lg-185{
    margin-bottom: 185px;
  }
  .ml-lg-185{
    margin-left: 185px;
  }
  .mr-lg-185{
    margin-right: 185px;
  }
  
  .m-lg-190{
    margin: 190px;
  }
  .mt-lg-190{
    margin-top: 190px;
  }
  .mb-lg-190{
    margin-bottom: 190px;
  }
  .ml-lg-190{
    margin-left: 190px;
  }
  .mr-lg-190{
    margin-right: 190px;
  }
  
  .m-lg-195{
    margin: 195px;
  }
  .mt-lg-195{
    margin-top: 195px;
  }
  .mb-lg-195{
    margin-bottom: 195px;
  }
  .ml-lg-195{
    margin-left: 195px;
  }
  .mr-lg-195{
    margin-right: 195px;
  }
  
  .m-lg-200{
    margin: 200px;
  }
  .mt-lg-200{
    margin-top: 200px;
  }
  .mb-lg-200{
    margin-bottom: 200px;
  }
  .ml-lg-200{
    margin-left: 200px;
  }
  .mr-lg-200{
    margin-right: 200px;
  }
  
}
@media (min-width: 1200px){
  
  .m-xl-0{
    margin: 0px;
  }
  .mt-xl-0{
    margin-top: 0px;
  }
  .mb-xl-0{
    margin-bottom: 0px;
  }
  .ml-xl-0{
    margin-left: 0px;
  }
  .mr-xl-0{
    margin-right: 0px;
  }
  
  .m-xl-5{
    margin: 5px;
  }
  .mt-xl-5{
    margin-top: 5px;
  }
  .mb-xl-5{
    margin-bottom: 5px;
  }
  .ml-xl-5{
    margin-left: 5px;
  }
  .mr-xl-5{
    margin-right: 5px;
  }
  
  .m-xl-10{
    margin: 10px;
  }
  .mt-xl-10{
    margin-top: 10px;
  }
  .mb-xl-10{
    margin-bottom: 10px;
  }
  .ml-xl-10{
    margin-left: 10px;
  }
  .mr-xl-10{
    margin-right: 10px;
  }
  
  .m-xl-15{
    margin: 15px;
  }
  .mt-xl-15{
    margin-top: 15px;
  }
  .mb-xl-15{
    margin-bottom: 15px;
  }
  .ml-xl-15{
    margin-left: 15px;
  }
  .mr-xl-15{
    margin-right: 15px;
  }
  
  .m-xl-20{
    margin: 20px;
  }
  .mt-xl-20{
    margin-top: 20px;
  }
  .mb-xl-20{
    margin-bottom: 20px;
  }
  .ml-xl-20{
    margin-left: 20px;
  }
  .mr-xl-20{
    margin-right: 20px;
  }
  
  .m-xl-25{
    margin: 25px;
  }
  .mt-xl-25{
    margin-top: 25px;
  }
  .mb-xl-25{
    margin-bottom: 25px;
  }
  .ml-xl-25{
    margin-left: 25px;
  }
  .mr-xl-25{
    margin-right: 25px;
  }
  
  .m-xl-30{
    margin: 30px;
  }
  .mt-xl-30{
    margin-top: 30px;
  }
  .mb-xl-30{
    margin-bottom: 30px;
  }
  .ml-xl-30{
    margin-left: 30px;
  }
  .mr-xl-30{
    margin-right: 30px;
  }
  
  .m-xl-35{
    margin: 35px;
  }
  .mt-xl-35{
    margin-top: 35px;
  }
  .mb-xl-35{
    margin-bottom: 35px;
  }
  .ml-xl-35{
    margin-left: 35px;
  }
  .mr-xl-35{
    margin-right: 35px;
  }
  
  .m-xl-40{
    margin: 40px;
  }
  .mt-xl-40{
    margin-top: 40px;
  }
  .mb-xl-40{
    margin-bottom: 40px;
  }
  .ml-xl-40{
    margin-left: 40px;
  }
  .mr-xl-40{
    margin-right: 40px;
  }
  
  .m-xl-45{
    margin: 45px;
  }
  .mt-xl-45{
    margin-top: 45px;
  }
  .mb-xl-45{
    margin-bottom: 45px;
  }
  .ml-xl-45{
    margin-left: 45px;
  }
  .mr-xl-45{
    margin-right: 45px;
  }
  
  .m-xl-50{
    margin: 50px;
  }
  .mt-xl-50{
    margin-top: 50px;
  }
  .mb-xl-50{
    margin-bottom: 50px;
  }
  .ml-xl-50{
    margin-left: 50px;
  }
  .mr-xl-50{
    margin-right: 50px;
  }
  
  .m-xl-55{
    margin: 55px;
  }
  .mt-xl-55{
    margin-top: 55px;
  }
  .mb-xl-55{
    margin-bottom: 55px;
  }
  .ml-xl-55{
    margin-left: 55px;
  }
  .mr-xl-55{
    margin-right: 55px;
  }
  
  .m-xl-60{
    margin: 60px;
  }
  .mt-xl-60{
    margin-top: 60px;
  }
  .mb-xl-60{
    margin-bottom: 60px;
  }
  .ml-xl-60{
    margin-left: 60px;
  }
  .mr-xl-60{
    margin-right: 60px;
  }
  
  .m-xl-65{
    margin: 65px;
  }
  .mt-xl-65{
    margin-top: 65px;
  }
  .mb-xl-65{
    margin-bottom: 65px;
  }
  .ml-xl-65{
    margin-left: 65px;
  }
  .mr-xl-65{
    margin-right: 65px;
  }
  
  .m-xl-70{
    margin: 70px;
  }
  .mt-xl-70{
    margin-top: 70px;
  }
  .mb-xl-70{
    margin-bottom: 70px;
  }
  .ml-xl-70{
    margin-left: 70px;
  }
  .mr-xl-70{
    margin-right: 70px;
  }
  
  .m-xl-75{
    margin: 75px;
  }
  .mt-xl-75{
    margin-top: 75px;
  }
  .mb-xl-75{
    margin-bottom: 75px;
  }
  .ml-xl-75{
    margin-left: 75px;
  }
  .mr-xl-75{
    margin-right: 75px;
  }
  
  .m-xl-80{
    margin: 80px;
  }
  .mt-xl-80{
    margin-top: 80px;
  }
  .mb-xl-80{
    margin-bottom: 80px;
  }
  .ml-xl-80{
    margin-left: 80px;
  }
  .mr-xl-80{
    margin-right: 80px;
  }
  
  .m-xl-85{
    margin: 85px;
  }
  .mt-xl-85{
    margin-top: 85px;
  }
  .mb-xl-85{
    margin-bottom: 85px;
  }
  .ml-xl-85{
    margin-left: 85px;
  }
  .mr-xl-85{
    margin-right: 85px;
  }
  
  .m-xl-90{
    margin: 90px;
  }
  .mt-xl-90{
    margin-top: 90px;
  }
  .mb-xl-90{
    margin-bottom: 90px;
  }
  .ml-xl-90{
    margin-left: 90px;
  }
  .mr-xl-90{
    margin-right: 90px;
  }
  
  .m-xl-95{
    margin: 95px;
  }
  .mt-xl-95{
    margin-top: 95px;
  }
  .mb-xl-95{
    margin-bottom: 95px;
  }
  .ml-xl-95{
    margin-left: 95px;
  }
  .mr-xl-95{
    margin-right: 95px;
  }
  
  .m-xl-100{
    margin: 100px;
  }
  .mt-xl-100{
    margin-top: 100px;
  }
  .mb-xl-100{
    margin-bottom: 100px;
  }
  .ml-xl-100{
    margin-left: 100px;
  }
  .mr-xl-100{
    margin-right: 100px;
  }
  
  .m-xl-105{
    margin: 105px;
  }
  .mt-xl-105{
    margin-top: 105px;
  }
  .mb-xl-105{
    margin-bottom: 105px;
  }
  .ml-xl-105{
    margin-left: 105px;
  }
  .mr-xl-105{
    margin-right: 105px;
  }
  
  .m-xl-110{
    margin: 110px;
  }
  .mt-xl-110{
    margin-top: 110px;
  }
  .mb-xl-110{
    margin-bottom: 110px;
  }
  .ml-xl-110{
    margin-left: 110px;
  }
  .mr-xl-110{
    margin-right: 110px;
  }
  
  .m-xl-115{
    margin: 115px;
  }
  .mt-xl-115{
    margin-top: 115px;
  }
  .mb-xl-115{
    margin-bottom: 115px;
  }
  .ml-xl-115{
    margin-left: 115px;
  }
  .mr-xl-115{
    margin-right: 115px;
  }
  
  .m-xl-120{
    margin: 120px;
  }
  .mt-xl-120{
    margin-top: 120px;
  }
  .mb-xl-120{
    margin-bottom: 120px;
  }
  .ml-xl-120{
    margin-left: 120px;
  }
  .mr-xl-120{
    margin-right: 120px;
  }
  
  .m-xl-125{
    margin: 125px;
  }
  .mt-xl-125{
    margin-top: 125px;
  }
  .mb-xl-125{
    margin-bottom: 125px;
  }
  .ml-xl-125{
    margin-left: 125px;
  }
  .mr-xl-125{
    margin-right: 125px;
  }
  
  .m-xl-130{
    margin: 130px;
  }
  .mt-xl-130{
    margin-top: 130px;
  }
  .mb-xl-130{
    margin-bottom: 130px;
  }
  .ml-xl-130{
    margin-left: 130px;
  }
  .mr-xl-130{
    margin-right: 130px;
  }
  
  .m-xl-135{
    margin: 135px;
  }
  .mt-xl-135{
    margin-top: 135px;
  }
  .mb-xl-135{
    margin-bottom: 135px;
  }
  .ml-xl-135{
    margin-left: 135px;
  }
  .mr-xl-135{
    margin-right: 135px;
  }
  
  .m-xl-140{
    margin: 140px;
  }
  .mt-xl-140{
    margin-top: 140px;
  }
  .mb-xl-140{
    margin-bottom: 140px;
  }
  .ml-xl-140{
    margin-left: 140px;
  }
  .mr-xl-140{
    margin-right: 140px;
  }
  
  .m-xl-145{
    margin: 145px;
  }
  .mt-xl-145{
    margin-top: 145px;
  }
  .mb-xl-145{
    margin-bottom: 145px;
  }
  .ml-xl-145{
    margin-left: 145px;
  }
  .mr-xl-145{
    margin-right: 145px;
  }
  
  .m-xl-150{
    margin: 150px;
  }
  .mt-xl-150{
    margin-top: 150px;
  }
  .mb-xl-150{
    margin-bottom: 150px;
  }
  .ml-xl-150{
    margin-left: 150px;
  }
  .mr-xl-150{
    margin-right: 150px;
  }
  
  .m-xl-155{
    margin: 155px;
  }
  .mt-xl-155{
    margin-top: 155px;
  }
  .mb-xl-155{
    margin-bottom: 155px;
  }
  .ml-xl-155{
    margin-left: 155px;
  }
  .mr-xl-155{
    margin-right: 155px;
  }
  
  .m-xl-160{
    margin: 160px;
  }
  .mt-xl-160{
    margin-top: 160px;
  }
  .mb-xl-160{
    margin-bottom: 160px;
  }
  .ml-xl-160{
    margin-left: 160px;
  }
  .mr-xl-160{
    margin-right: 160px;
  }
  
  .m-xl-165{
    margin: 165px;
  }
  .mt-xl-165{
    margin-top: 165px;
  }
  .mb-xl-165{
    margin-bottom: 165px;
  }
  .ml-xl-165{
    margin-left: 165px;
  }
  .mr-xl-165{
    margin-right: 165px;
  }
  
  .m-xl-170{
    margin: 170px;
  }
  .mt-xl-170{
    margin-top: 170px;
  }
  .mb-xl-170{
    margin-bottom: 170px;
  }
  .ml-xl-170{
    margin-left: 170px;
  }
  .mr-xl-170{
    margin-right: 170px;
  }
  
  .m-xl-175{
    margin: 175px;
  }
  .mt-xl-175{
    margin-top: 175px;
  }
  .mb-xl-175{
    margin-bottom: 175px;
  }
  .ml-xl-175{
    margin-left: 175px;
  }
  .mr-xl-175{
    margin-right: 175px;
  }
  
  .m-xl-180{
    margin: 180px;
  }
  .mt-xl-180{
    margin-top: 180px;
  }
  .mb-xl-180{
    margin-bottom: 180px;
  }
  .ml-xl-180{
    margin-left: 180px;
  }
  .mr-xl-180{
    margin-right: 180px;
  }
  
  .m-xl-185{
    margin: 185px;
  }
  .mt-xl-185{
    margin-top: 185px;
  }
  .mb-xl-185{
    margin-bottom: 185px;
  }
  .ml-xl-185{
    margin-left: 185px;
  }
  .mr-xl-185{
    margin-right: 185px;
  }
  
  .m-xl-190{
    margin: 190px;
  }
  .mt-xl-190{
    margin-top: 190px;
  }
  .mb-xl-190{
    margin-bottom: 190px;
  }
  .ml-xl-190{
    margin-left: 190px;
  }
  .mr-xl-190{
    margin-right: 190px;
  }
  
  .m-xl-195{
    margin: 195px;
  }
  .mt-xl-195{
    margin-top: 195px;
  }
  .mb-xl-195{
    margin-bottom: 195px;
  }
  .ml-xl-195{
    margin-left: 195px;
  }
  .mr-xl-195{
    margin-right: 195px;
  }
  
  .m-xl-200{
    margin: 200px;
  }
  .mt-xl-200{
    margin-top: 200px;
  }
  .mb-xl-200{
    margin-bottom: 200px;
  }
  .ml-xl-200{
    margin-left: 200px;
  }
  .mr-xl-200{
    margin-right: 200px;
  }
  
}

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

.text-end{
  text-align: end;
}

.text-left{
  text-align: left;
}

.text-justify{
  text-align: justify;
}

.text-right{
  text-align: right;
}

@media (min-width: 576px){ 
  
  .text-sm-center{
    text-align: center;
  }
  
  .text-sm-end{
    text-align: end;
  }
  
  .text-sm-left{
    text-align: left;
  }
  
  .text-sm-justify{
    text-align: justify;
  }
  
  .text-sm-right{
    text-align: right;
  }
  
}
@media (min-width: 768px){
  
  .text-md-center{
    text-align: center;
  }
  
  .text-md-end{
    text-align: end;
  }
  
  .text-md-left{
    text-align: left;
  }
  
  .text-md-justify{
    text-align: justify;
  }
  
  .text-md-right{
    text-align: right;
  }
  
}
@media (min-width: 992px){
  
  .text-lg-center{
    text-align: center;
  }
  
  .text-lg-end{
    text-align: end;
  }
  
  .text-lg-left{
    text-align: left;
  }
  
  .text-lg-justify{
    text-align: justify;
  }
  
  .text-lg-right{
    text-align: right;
  }
  
}
@media (min-width: 1200px){
  
  .text-xl-center{
    text-align: center;
  }
  
  .text-xl-end{
    text-align: end;
  }
  
  .text-xl-left{
    text-align: left;
  }
  
  .text-xl-justify{
    text-align: justify;
  }
  
  .text-xl-right{
    text-align: right;
  }
  
}


  .w-1{
    width: 1%;
  }
  .h-1{
    height: 1%;
}

  .w-2{
    width: 2%;
  }
  .h-2{
    height: 2%;
}

  .w-3{
    width: 3%;
  }
  .h-3{
    height: 3%;
}

  .w-4{
    width: 4%;
  }
  .h-4{
    height: 4%;
}

  .w-5{
    width: 5%;
  }
  .h-5{
    height: 5%;
}

  .w-6{
    width: 6%;
  }
  .h-6{
    height: 6%;
}

  .w-7{
    width: 7%;
  }
  .h-7{
    height: 7%;
}

  .w-8{
    width: 8%;
  }
  .h-8{
    height: 8%;
}

  .w-9{
    width: 9%;
  }
  .h-9{
    height: 9%;
}

  .w-10{
    width: 10%;
  }
  .h-10{
    height: 10%;
}

  .w-11{
    width: 11%;
  }
  .h-11{
    height: 11%;
}

  .w-12{
    width: 12%;
  }
  .h-12{
    height: 12%;
}

  .w-13{
    width: 13%;
  }
  .h-13{
    height: 13%;
}

  .w-14{
    width: 14%;
  }
  .h-14{
    height: 14%;
}

  .w-15{
    width: 15%;
  }
  .h-15{
    height: 15%;
}

  .w-16{
    width: 16%;
  }
  .h-16{
    height: 16%;
}

  .w-17{
    width: 17%;
  }
  .h-17{
    height: 17%;
}

  .w-18{
    width: 18%;
  }
  .h-18{
    height: 18%;
}

  .w-19{
    width: 19%;
  }
  .h-19{
    height: 19%;
}

  .w-20{
    width: 20%;
  }
  .h-20{
    height: 20%;
}

  .w-21{
    width: 21%;
  }
  .h-21{
    height: 21%;
}

  .w-22{
    width: 22%;
  }
  .h-22{
    height: 22%;
}

  .w-23{
    width: 23%;
  }
  .h-23{
    height: 23%;
}

  .w-24{
    width: 24%;
  }
  .h-24{
    height: 24%;
}

  .w-25{
    width: 25%;
  }
  .h-25{
    height: 25%;
}

  .w-26{
    width: 26%;
  }
  .h-26{
    height: 26%;
}

  .w-27{
    width: 27%;
  }
  .h-27{
    height: 27%;
}

  .w-28{
    width: 28%;
  }
  .h-28{
    height: 28%;
}

  .w-29{
    width: 29%;
  }
  .h-29{
    height: 29%;
}

  .w-30{
    width: 30%;
  }
  .h-30{
    height: 30%;
}

  .w-31{
    width: 31%;
  }
  .h-31{
    height: 31%;
}

  .w-32{
    width: 32%;
  }
  .h-32{
    height: 32%;
}

  .w-33{
    width: 33%;
  }
  .h-33{
    height: 33%;
}

  .w-34{
    width: 34%;
  }
  .h-34{
    height: 34%;
}

  .w-35{
    width: 35%;
  }
  .h-35{
    height: 35%;
}

  .w-36{
    width: 36%;
  }
  .h-36{
    height: 36%;
}

  .w-37{
    width: 37%;
  }
  .h-37{
    height: 37%;
}

  .w-38{
    width: 38%;
  }
  .h-38{
    height: 38%;
}

  .w-39{
    width: 39%;
  }
  .h-39{
    height: 39%;
}

  .w-40{
    width: 40%;
  }
  .h-40{
    height: 40%;
}

  .w-41{
    width: 41%;
  }
  .h-41{
    height: 41%;
}

  .w-42{
    width: 42%;
  }
  .h-42{
    height: 42%;
}

  .w-43{
    width: 43%;
  }
  .h-43{
    height: 43%;
}

  .w-44{
    width: 44%;
  }
  .h-44{
    height: 44%;
}

  .w-45{
    width: 45%;
  }
  .h-45{
    height: 45%;
}

  .w-46{
    width: 46%;
  }
  .h-46{
    height: 46%;
}

  .w-47{
    width: 47%;
  }
  .h-47{
    height: 47%;
}

  .w-48{
    width: 48%;
  }
  .h-48{
    height: 48%;
}

  .w-49{
    width: 49%;
  }
  .h-49{
    height: 49%;
}

  .w-50{
    width: 50%;
  }
  .h-50{
    height: 50%;
}

  .w-51{
    width: 51%;
  }
  .h-51{
    height: 51%;
}

  .w-52{
    width: 52%;
  }
  .h-52{
    height: 52%;
}

  .w-53{
    width: 53%;
  }
  .h-53{
    height: 53%;
}

  .w-54{
    width: 54%;
  }
  .h-54{
    height: 54%;
}

  .w-55{
    width: 55%;
  }
  .h-55{
    height: 55%;
}

  .w-56{
    width: 56%;
  }
  .h-56{
    height: 56%;
}

  .w-57{
    width: 57%;
  }
  .h-57{
    height: 57%;
}

  .w-58{
    width: 58%;
  }
  .h-58{
    height: 58%;
}

  .w-59{
    width: 59%;
  }
  .h-59{
    height: 59%;
}

  .w-60{
    width: 60%;
  }
  .h-60{
    height: 60%;
}

  .w-61{
    width: 61%;
  }
  .h-61{
    height: 61%;
}

  .w-62{
    width: 62%;
  }
  .h-62{
    height: 62%;
}

  .w-63{
    width: 63%;
  }
  .h-63{
    height: 63%;
}

  .w-64{
    width: 64%;
  }
  .h-64{
    height: 64%;
}

  .w-65{
    width: 65%;
  }
  .h-65{
    height: 65%;
}

  .w-66{
    width: 66%;
  }
  .h-66{
    height: 66%;
}

  .w-67{
    width: 67%;
  }
  .h-67{
    height: 67%;
}

  .w-68{
    width: 68%;
  }
  .h-68{
    height: 68%;
}

  .w-69{
    width: 69%;
  }
  .h-69{
    height: 69%;
}

  .w-70{
    width: 70%;
  }
  .h-70{
    height: 70%;
}

  .w-71{
    width: 71%;
  }
  .h-71{
    height: 71%;
}

  .w-72{
    width: 72%;
  }
  .h-72{
    height: 72%;
}

  .w-73{
    width: 73%;
  }
  .h-73{
    height: 73%;
}

  .w-74{
    width: 74%;
  }
  .h-74{
    height: 74%;
}

  .w-75{
    width: 75%;
  }
  .h-75{
    height: 75%;
}

  .w-76{
    width: 76%;
  }
  .h-76{
    height: 76%;
}

  .w-77{
    width: 77%;
  }
  .h-77{
    height: 77%;
}

  .w-78{
    width: 78%;
  }
  .h-78{
    height: 78%;
}

  .w-79{
    width: 79%;
  }
  .h-79{
    height: 79%;
}

  .w-80{
    width: 80%;
  }
  .h-80{
    height: 80%;
}

  .w-81{
    width: 81%;
  }
  .h-81{
    height: 81%;
}

  .w-82{
    width: 82%;
  }
  .h-82{
    height: 82%;
}

  .w-83{
    width: 83%;
  }
  .h-83{
    height: 83%;
}

  .w-84{
    width: 84%;
  }
  .h-84{
    height: 84%;
}

  .w-85{
    width: 85%;
  }
  .h-85{
    height: 85%;
}

  .w-86{
    width: 86%;
  }
  .h-86{
    height: 86%;
}

  .w-87{
    width: 87%;
  }
  .h-87{
    height: 87%;
}

  .w-88{
    width: 88%;
  }
  .h-88{
    height: 88%;
}

  .w-89{
    width: 89%;
  }
  .h-89{
    height: 89%;
}

  .w-90{
    width: 90%;
  }
  .h-90{
    height: 90%;
}

  .w-91{
    width: 91%;
  }
  .h-91{
    height: 91%;
}

  .w-92{
    width: 92%;
  }
  .h-92{
    height: 92%;
}

  .w-93{
    width: 93%;
  }
  .h-93{
    height: 93%;
}

  .w-94{
    width: 94%;
  }
  .h-94{
    height: 94%;
}

  .w-95{
    width: 95%;
  }
  .h-95{
    height: 95%;
}

  .w-96{
    width: 96%;
  }
  .h-96{
    height: 96%;
}

  .w-97{
    width: 97%;
  }
  .h-97{
    height: 97%;
}

  .w-98{
    width: 98%;
  }
  .h-98{
    height: 98%;
}

  .w-99{
    width: 99%;
  }
  .h-99{
    height: 99%;
}

  .w-100{
    width: 100%;
  }
  .h-100{
    height: 100%;
}

@media (min-width: 576px){
  
  .w-sm-1{
    width: 1%;
  }
  .h-sm-1{
    height: 1%;
  }
  
  .w-sm-2{
    width: 2%;
  }
  .h-sm-2{
    height: 2%;
  }
  
  .w-sm-3{
    width: 3%;
  }
  .h-sm-3{
    height: 3%;
  }
  
  .w-sm-4{
    width: 4%;
  }
  .h-sm-4{
    height: 4%;
  }
  
  .w-sm-5{
    width: 5%;
  }
  .h-sm-5{
    height: 5%;
  }
  
  .w-sm-6{
    width: 6%;
  }
  .h-sm-6{
    height: 6%;
  }
  
  .w-sm-7{
    width: 7%;
  }
  .h-sm-7{
    height: 7%;
  }
  
  .w-sm-8{
    width: 8%;
  }
  .h-sm-8{
    height: 8%;
  }
  
  .w-sm-9{
    width: 9%;
  }
  .h-sm-9{
    height: 9%;
  }
  
  .w-sm-10{
    width: 10%;
  }
  .h-sm-10{
    height: 10%;
  }
  
  .w-sm-11{
    width: 11%;
  }
  .h-sm-11{
    height: 11%;
  }
  
  .w-sm-12{
    width: 12%;
  }
  .h-sm-12{
    height: 12%;
  }
  
  .w-sm-13{
    width: 13%;
  }
  .h-sm-13{
    height: 13%;
  }
  
  .w-sm-14{
    width: 14%;
  }
  .h-sm-14{
    height: 14%;
  }
  
  .w-sm-15{
    width: 15%;
  }
  .h-sm-15{
    height: 15%;
  }
  
  .w-sm-16{
    width: 16%;
  }
  .h-sm-16{
    height: 16%;
  }
  
  .w-sm-17{
    width: 17%;
  }
  .h-sm-17{
    height: 17%;
  }
  
  .w-sm-18{
    width: 18%;
  }
  .h-sm-18{
    height: 18%;
  }
  
  .w-sm-19{
    width: 19%;
  }
  .h-sm-19{
    height: 19%;
  }
  
  .w-sm-20{
    width: 20%;
  }
  .h-sm-20{
    height: 20%;
  }
  
  .w-sm-21{
    width: 21%;
  }
  .h-sm-21{
    height: 21%;
  }
  
  .w-sm-22{
    width: 22%;
  }
  .h-sm-22{
    height: 22%;
  }
  
  .w-sm-23{
    width: 23%;
  }
  .h-sm-23{
    height: 23%;
  }
  
  .w-sm-24{
    width: 24%;
  }
  .h-sm-24{
    height: 24%;
  }
  
  .w-sm-25{
    width: 25%;
  }
  .h-sm-25{
    height: 25%;
  }
  
  .w-sm-26{
    width: 26%;
  }
  .h-sm-26{
    height: 26%;
  }
  
  .w-sm-27{
    width: 27%;
  }
  .h-sm-27{
    height: 27%;
  }
  
  .w-sm-28{
    width: 28%;
  }
  .h-sm-28{
    height: 28%;
  }
  
  .w-sm-29{
    width: 29%;
  }
  .h-sm-29{
    height: 29%;
  }
  
  .w-sm-30{
    width: 30%;
  }
  .h-sm-30{
    height: 30%;
  }
  
  .w-sm-31{
    width: 31%;
  }
  .h-sm-31{
    height: 31%;
  }
  
  .w-sm-32{
    width: 32%;
  }
  .h-sm-32{
    height: 32%;
  }
  
  .w-sm-33{
    width: 33%;
  }
  .h-sm-33{
    height: 33%;
  }
  
  .w-sm-34{
    width: 34%;
  }
  .h-sm-34{
    height: 34%;
  }
  
  .w-sm-35{
    width: 35%;
  }
  .h-sm-35{
    height: 35%;
  }
  
  .w-sm-36{
    width: 36%;
  }
  .h-sm-36{
    height: 36%;
  }
  
  .w-sm-37{
    width: 37%;
  }
  .h-sm-37{
    height: 37%;
  }
  
  .w-sm-38{
    width: 38%;
  }
  .h-sm-38{
    height: 38%;
  }
  
  .w-sm-39{
    width: 39%;
  }
  .h-sm-39{
    height: 39%;
  }
  
  .w-sm-40{
    width: 40%;
  }
  .h-sm-40{
    height: 40%;
  }
  
  .w-sm-41{
    width: 41%;
  }
  .h-sm-41{
    height: 41%;
  }
  
  .w-sm-42{
    width: 42%;
  }
  .h-sm-42{
    height: 42%;
  }
  
  .w-sm-43{
    width: 43%;
  }
  .h-sm-43{
    height: 43%;
  }
  
  .w-sm-44{
    width: 44%;
  }
  .h-sm-44{
    height: 44%;
  }
  
  .w-sm-45{
    width: 45%;
  }
  .h-sm-45{
    height: 45%;
  }
  
  .w-sm-46{
    width: 46%;
  }
  .h-sm-46{
    height: 46%;
  }
  
  .w-sm-47{
    width: 47%;
  }
  .h-sm-47{
    height: 47%;
  }
  
  .w-sm-48{
    width: 48%;
  }
  .h-sm-48{
    height: 48%;
  }
  
  .w-sm-49{
    width: 49%;
  }
  .h-sm-49{
    height: 49%;
  }
  
  .w-sm-50{
    width: 50%;
  }
  .h-sm-50{
    height: 50%;
  }
  
  .w-sm-51{
    width: 51%;
  }
  .h-sm-51{
    height: 51%;
  }
  
  .w-sm-52{
    width: 52%;
  }
  .h-sm-52{
    height: 52%;
  }
  
  .w-sm-53{
    width: 53%;
  }
  .h-sm-53{
    height: 53%;
  }
  
  .w-sm-54{
    width: 54%;
  }
  .h-sm-54{
    height: 54%;
  }
  
  .w-sm-55{
    width: 55%;
  }
  .h-sm-55{
    height: 55%;
  }
  
  .w-sm-56{
    width: 56%;
  }
  .h-sm-56{
    height: 56%;
  }
  
  .w-sm-57{
    width: 57%;
  }
  .h-sm-57{
    height: 57%;
  }
  
  .w-sm-58{
    width: 58%;
  }
  .h-sm-58{
    height: 58%;
  }
  
  .w-sm-59{
    width: 59%;
  }
  .h-sm-59{
    height: 59%;
  }
  
  .w-sm-60{
    width: 60%;
  }
  .h-sm-60{
    height: 60%;
  }
  
  .w-sm-61{
    width: 61%;
  }
  .h-sm-61{
    height: 61%;
  }
  
  .w-sm-62{
    width: 62%;
  }
  .h-sm-62{
    height: 62%;
  }
  
  .w-sm-63{
    width: 63%;
  }
  .h-sm-63{
    height: 63%;
  }
  
  .w-sm-64{
    width: 64%;
  }
  .h-sm-64{
    height: 64%;
  }
  
  .w-sm-65{
    width: 65%;
  }
  .h-sm-65{
    height: 65%;
  }
  
  .w-sm-66{
    width: 66%;
  }
  .h-sm-66{
    height: 66%;
  }
  
  .w-sm-67{
    width: 67%;
  }
  .h-sm-67{
    height: 67%;
  }
  
  .w-sm-68{
    width: 68%;
  }
  .h-sm-68{
    height: 68%;
  }
  
  .w-sm-69{
    width: 69%;
  }
  .h-sm-69{
    height: 69%;
  }
  
  .w-sm-70{
    width: 70%;
  }
  .h-sm-70{
    height: 70%;
  }
  
  .w-sm-71{
    width: 71%;
  }
  .h-sm-71{
    height: 71%;
  }
  
  .w-sm-72{
    width: 72%;
  }
  .h-sm-72{
    height: 72%;
  }
  
  .w-sm-73{
    width: 73%;
  }
  .h-sm-73{
    height: 73%;
  }
  
  .w-sm-74{
    width: 74%;
  }
  .h-sm-74{
    height: 74%;
  }
  
  .w-sm-75{
    width: 75%;
  }
  .h-sm-75{
    height: 75%;
  }
  
  .w-sm-76{
    width: 76%;
  }
  .h-sm-76{
    height: 76%;
  }
  
  .w-sm-77{
    width: 77%;
  }
  .h-sm-77{
    height: 77%;
  }
  
  .w-sm-78{
    width: 78%;
  }
  .h-sm-78{
    height: 78%;
  }
  
  .w-sm-79{
    width: 79%;
  }
  .h-sm-79{
    height: 79%;
  }
  
  .w-sm-80{
    width: 80%;
  }
  .h-sm-80{
    height: 80%;
  }
  
  .w-sm-81{
    width: 81%;
  }
  .h-sm-81{
    height: 81%;
  }
  
  .w-sm-82{
    width: 82%;
  }
  .h-sm-82{
    height: 82%;
  }
  
  .w-sm-83{
    width: 83%;
  }
  .h-sm-83{
    height: 83%;
  }
  
  .w-sm-84{
    width: 84%;
  }
  .h-sm-84{
    height: 84%;
  }
  
  .w-sm-85{
    width: 85%;
  }
  .h-sm-85{
    height: 85%;
  }
  
  .w-sm-86{
    width: 86%;
  }
  .h-sm-86{
    height: 86%;
  }
  
  .w-sm-87{
    width: 87%;
  }
  .h-sm-87{
    height: 87%;
  }
  
  .w-sm-88{
    width: 88%;
  }
  .h-sm-88{
    height: 88%;
  }
  
  .w-sm-89{
    width: 89%;
  }
  .h-sm-89{
    height: 89%;
  }
  
  .w-sm-90{
    width: 90%;
  }
  .h-sm-90{
    height: 90%;
  }
  
  .w-sm-91{
    width: 91%;
  }
  .h-sm-91{
    height: 91%;
  }
  
  .w-sm-92{
    width: 92%;
  }
  .h-sm-92{
    height: 92%;
  }
  
  .w-sm-93{
    width: 93%;
  }
  .h-sm-93{
    height: 93%;
  }
  
  .w-sm-94{
    width: 94%;
  }
  .h-sm-94{
    height: 94%;
  }
  
  .w-sm-95{
    width: 95%;
  }
  .h-sm-95{
    height: 95%;
  }
  
  .w-sm-96{
    width: 96%;
  }
  .h-sm-96{
    height: 96%;
  }
  
  .w-sm-97{
    width: 97%;
  }
  .h-sm-97{
    height: 97%;
  }
  
  .w-sm-98{
    width: 98%;
  }
  .h-sm-98{
    height: 98%;
  }
  
  .w-sm-99{
    width: 99%;
  }
  .h-sm-99{
    height: 99%;
  }
  
  .w-sm-100{
    width: 100%;
  }
  .h-sm-100{
    height: 100%;
  }
  
}
@media (min-width: 768px){
  
  .w-md-1{
    width: 1%;
  }
  .h-md-1{
    height: 1%;
  }
  
  .w-md-2{
    width: 2%;
  }
  .h-md-2{
    height: 2%;
  }
  
  .w-md-3{
    width: 3%;
  }
  .h-md-3{
    height: 3%;
  }
  
  .w-md-4{
    width: 4%;
  }
  .h-md-4{
    height: 4%;
  }
  
  .w-md-5{
    width: 5%;
  }
  .h-md-5{
    height: 5%;
  }
  
  .w-md-6{
    width: 6%;
  }
  .h-md-6{
    height: 6%;
  }
  
  .w-md-7{
    width: 7%;
  }
  .h-md-7{
    height: 7%;
  }
  
  .w-md-8{
    width: 8%;
  }
  .h-md-8{
    height: 8%;
  }
  
  .w-md-9{
    width: 9%;
  }
  .h-md-9{
    height: 9%;
  }
  
  .w-md-10{
    width: 10%;
  }
  .h-md-10{
    height: 10%;
  }
  
  .w-md-11{
    width: 11%;
  }
  .h-md-11{
    height: 11%;
  }
  
  .w-md-12{
    width: 12%;
  }
  .h-md-12{
    height: 12%;
  }
  
  .w-md-13{
    width: 13%;
  }
  .h-md-13{
    height: 13%;
  }
  
  .w-md-14{
    width: 14%;
  }
  .h-md-14{
    height: 14%;
  }
  
  .w-md-15{
    width: 15%;
  }
  .h-md-15{
    height: 15%;
  }
  
  .w-md-16{
    width: 16%;
  }
  .h-md-16{
    height: 16%;
  }
  
  .w-md-17{
    width: 17%;
  }
  .h-md-17{
    height: 17%;
  }
  
  .w-md-18{
    width: 18%;
  }
  .h-md-18{
    height: 18%;
  }
  
  .w-md-19{
    width: 19%;
  }
  .h-md-19{
    height: 19%;
  }
  
  .w-md-20{
    width: 20%;
  }
  .h-md-20{
    height: 20%;
  }
  
  .w-md-21{
    width: 21%;
  }
  .h-md-21{
    height: 21%;
  }
  
  .w-md-22{
    width: 22%;
  }
  .h-md-22{
    height: 22%;
  }
  
  .w-md-23{
    width: 23%;
  }
  .h-md-23{
    height: 23%;
  }
  
  .w-md-24{
    width: 24%;
  }
  .h-md-24{
    height: 24%;
  }
  
  .w-md-25{
    width: 25%;
  }
  .h-md-25{
    height: 25%;
  }
  
  .w-md-26{
    width: 26%;
  }
  .h-md-26{
    height: 26%;
  }
  
  .w-md-27{
    width: 27%;
  }
  .h-md-27{
    height: 27%;
  }
  
  .w-md-28{
    width: 28%;
  }
  .h-md-28{
    height: 28%;
  }
  
  .w-md-29{
    width: 29%;
  }
  .h-md-29{
    height: 29%;
  }
  
  .w-md-30{
    width: 30%;
  }
  .h-md-30{
    height: 30%;
  }
  
  .w-md-31{
    width: 31%;
  }
  .h-md-31{
    height: 31%;
  }
  
  .w-md-32{
    width: 32%;
  }
  .h-md-32{
    height: 32%;
  }
  
  .w-md-33{
    width: 33%;
  }
  .h-md-33{
    height: 33%;
  }
  
  .w-md-34{
    width: 34%;
  }
  .h-md-34{
    height: 34%;
  }
  
  .w-md-35{
    width: 35%;
  }
  .h-md-35{
    height: 35%;
  }
  
  .w-md-36{
    width: 36%;
  }
  .h-md-36{
    height: 36%;
  }
  
  .w-md-37{
    width: 37%;
  }
  .h-md-37{
    height: 37%;
  }
  
  .w-md-38{
    width: 38%;
  }
  .h-md-38{
    height: 38%;
  }
  
  .w-md-39{
    width: 39%;
  }
  .h-md-39{
    height: 39%;
  }
  
  .w-md-40{
    width: 40%;
  }
  .h-md-40{
    height: 40%;
  }
  
  .w-md-41{
    width: 41%;
  }
  .h-md-41{
    height: 41%;
  }
  
  .w-md-42{
    width: 42%;
  }
  .h-md-42{
    height: 42%;
  }
  
  .w-md-43{
    width: 43%;
  }
  .h-md-43{
    height: 43%;
  }
  
  .w-md-44{
    width: 44%;
  }
  .h-md-44{
    height: 44%;
  }
  
  .w-md-45{
    width: 45%;
  }
  .h-md-45{
    height: 45%;
  }
  
  .w-md-46{
    width: 46%;
  }
  .h-md-46{
    height: 46%;
  }
  
  .w-md-47{
    width: 47%;
  }
  .h-md-47{
    height: 47%;
  }
  
  .w-md-48{
    width: 48%;
  }
  .h-md-48{
    height: 48%;
  }
  
  .w-md-49{
    width: 49%;
  }
  .h-md-49{
    height: 49%;
  }
  
  .w-md-50{
    width: 50%;
  }
  .h-md-50{
    height: 50%;
  }
  
  .w-md-51{
    width: 51%;
  }
  .h-md-51{
    height: 51%;
  }
  
  .w-md-52{
    width: 52%;
  }
  .h-md-52{
    height: 52%;
  }
  
  .w-md-53{
    width: 53%;
  }
  .h-md-53{
    height: 53%;
  }
  
  .w-md-54{
    width: 54%;
  }
  .h-md-54{
    height: 54%;
  }
  
  .w-md-55{
    width: 55%;
  }
  .h-md-55{
    height: 55%;
  }
  
  .w-md-56{
    width: 56%;
  }
  .h-md-56{
    height: 56%;
  }
  
  .w-md-57{
    width: 57%;
  }
  .h-md-57{
    height: 57%;
  }
  
  .w-md-58{
    width: 58%;
  }
  .h-md-58{
    height: 58%;
  }
  
  .w-md-59{
    width: 59%;
  }
  .h-md-59{
    height: 59%;
  }
  
  .w-md-60{
    width: 60%;
  }
  .h-md-60{
    height: 60%;
  }
  
  .w-md-61{
    width: 61%;
  }
  .h-md-61{
    height: 61%;
  }
  
  .w-md-62{
    width: 62%;
  }
  .h-md-62{
    height: 62%;
  }
  
  .w-md-63{
    width: 63%;
  }
  .h-md-63{
    height: 63%;
  }
  
  .w-md-64{
    width: 64%;
  }
  .h-md-64{
    height: 64%;
  }
  
  .w-md-65{
    width: 65%;
  }
  .h-md-65{
    height: 65%;
  }
  
  .w-md-66{
    width: 66%;
  }
  .h-md-66{
    height: 66%;
  }
  
  .w-md-67{
    width: 67%;
  }
  .h-md-67{
    height: 67%;
  }
  
  .w-md-68{
    width: 68%;
  }
  .h-md-68{
    height: 68%;
  }
  
  .w-md-69{
    width: 69%;
  }
  .h-md-69{
    height: 69%;
  }
  
  .w-md-70{
    width: 70%;
  }
  .h-md-70{
    height: 70%;
  }
  
  .w-md-71{
    width: 71%;
  }
  .h-md-71{
    height: 71%;
  }
  
  .w-md-72{
    width: 72%;
  }
  .h-md-72{
    height: 72%;
  }
  
  .w-md-73{
    width: 73%;
  }
  .h-md-73{
    height: 73%;
  }
  
  .w-md-74{
    width: 74%;
  }
  .h-md-74{
    height: 74%;
  }
  
  .w-md-75{
    width: 75%;
  }
  .h-md-75{
    height: 75%;
  }
  
  .w-md-76{
    width: 76%;
  }
  .h-md-76{
    height: 76%;
  }
  
  .w-md-77{
    width: 77%;
  }
  .h-md-77{
    height: 77%;
  }
  
  .w-md-78{
    width: 78%;
  }
  .h-md-78{
    height: 78%;
  }
  
  .w-md-79{
    width: 79%;
  }
  .h-md-79{
    height: 79%;
  }
  
  .w-md-80{
    width: 80%;
  }
  .h-md-80{
    height: 80%;
  }
  
  .w-md-81{
    width: 81%;
  }
  .h-md-81{
    height: 81%;
  }
  
  .w-md-82{
    width: 82%;
  }
  .h-md-82{
    height: 82%;
  }
  
  .w-md-83{
    width: 83%;
  }
  .h-md-83{
    height: 83%;
  }
  
  .w-md-84{
    width: 84%;
  }
  .h-md-84{
    height: 84%;
  }
  
  .w-md-85{
    width: 85%;
  }
  .h-md-85{
    height: 85%;
  }
  
  .w-md-86{
    width: 86%;
  }
  .h-md-86{
    height: 86%;
  }
  
  .w-md-87{
    width: 87%;
  }
  .h-md-87{
    height: 87%;
  }
  
  .w-md-88{
    width: 88%;
  }
  .h-md-88{
    height: 88%;
  }
  
  .w-md-89{
    width: 89%;
  }
  .h-md-89{
    height: 89%;
  }
  
  .w-md-90{
    width: 90%;
  }
  .h-md-90{
    height: 90%;
  }
  
  .w-md-91{
    width: 91%;
  }
  .h-md-91{
    height: 91%;
  }
  
  .w-md-92{
    width: 92%;
  }
  .h-md-92{
    height: 92%;
  }
  
  .w-md-93{
    width: 93%;
  }
  .h-md-93{
    height: 93%;
  }
  
  .w-md-94{
    width: 94%;
  }
  .h-md-94{
    height: 94%;
  }
  
  .w-md-95{
    width: 95%;
  }
  .h-md-95{
    height: 95%;
  }
  
  .w-md-96{
    width: 96%;
  }
  .h-md-96{
    height: 96%;
  }
  
  .w-md-97{
    width: 97%;
  }
  .h-md-97{
    height: 97%;
  }
  
  .w-md-98{
    width: 98%;
  }
  .h-md-98{
    height: 98%;
  }
  
  .w-md-99{
    width: 99%;
  }
  .h-md-99{
    height: 99%;
  }
  
  .w-md-100{
    width: 100%;
  }
  .h-md-100{
    height: 100%;
  }
  
}
@media (min-width: 992px){
  
  .w-lg-1{
    width: 1%;
  }
  .h-lg-1{
    height: 1%;
  }
  
  .w-lg-2{
    width: 2%;
  }
  .h-lg-2{
    height: 2%;
  }
  
  .w-lg-3{
    width: 3%;
  }
  .h-lg-3{
    height: 3%;
  }
  
  .w-lg-4{
    width: 4%;
  }
  .h-lg-4{
    height: 4%;
  }
  
  .w-lg-5{
    width: 5%;
  }
  .h-lg-5{
    height: 5%;
  }
  
  .w-lg-6{
    width: 6%;
  }
  .h-lg-6{
    height: 6%;
  }
  
  .w-lg-7{
    width: 7%;
  }
  .h-lg-7{
    height: 7%;
  }
  
  .w-lg-8{
    width: 8%;
  }
  .h-lg-8{
    height: 8%;
  }
  
  .w-lg-9{
    width: 9%;
  }
  .h-lg-9{
    height: 9%;
  }
  
  .w-lg-10{
    width: 10%;
  }
  .h-lg-10{
    height: 10%;
  }
  
  .w-lg-11{
    width: 11%;
  }
  .h-lg-11{
    height: 11%;
  }
  
  .w-lg-12{
    width: 12%;
  }
  .h-lg-12{
    height: 12%;
  }
  
  .w-lg-13{
    width: 13%;
  }
  .h-lg-13{
    height: 13%;
  }
  
  .w-lg-14{
    width: 14%;
  }
  .h-lg-14{
    height: 14%;
  }
  
  .w-lg-15{
    width: 15%;
  }
  .h-lg-15{
    height: 15%;
  }
  
  .w-lg-16{
    width: 16%;
  }
  .h-lg-16{
    height: 16%;
  }
  
  .w-lg-17{
    width: 17%;
  }
  .h-lg-17{
    height: 17%;
  }
  
  .w-lg-18{
    width: 18%;
  }
  .h-lg-18{
    height: 18%;
  }
  
  .w-lg-19{
    width: 19%;
  }
  .h-lg-19{
    height: 19%;
  }
  
  .w-lg-20{
    width: 20%;
  }
  .h-lg-20{
    height: 20%;
  }
  
  .w-lg-21{
    width: 21%;
  }
  .h-lg-21{
    height: 21%;
  }
  
  .w-lg-22{
    width: 22%;
  }
  .h-lg-22{
    height: 22%;
  }
  
  .w-lg-23{
    width: 23%;
  }
  .h-lg-23{
    height: 23%;
  }
  
  .w-lg-24{
    width: 24%;
  }
  .h-lg-24{
    height: 24%;
  }
  
  .w-lg-25{
    width: 25%;
  }
  .h-lg-25{
    height: 25%;
  }
  
  .w-lg-26{
    width: 26%;
  }
  .h-lg-26{
    height: 26%;
  }
  
  .w-lg-27{
    width: 27%;
  }
  .h-lg-27{
    height: 27%;
  }
  
  .w-lg-28{
    width: 28%;
  }
  .h-lg-28{
    height: 28%;
  }
  
  .w-lg-29{
    width: 29%;
  }
  .h-lg-29{
    height: 29%;
  }
  
  .w-lg-30{
    width: 30%;
  }
  .h-lg-30{
    height: 30%;
  }
  
  .w-lg-31{
    width: 31%;
  }
  .h-lg-31{
    height: 31%;
  }
  
  .w-lg-32{
    width: 32%;
  }
  .h-lg-32{
    height: 32%;
  }
  
  .w-lg-33{
    width: 33%;
  }
  .h-lg-33{
    height: 33%;
  }
  
  .w-lg-34{
    width: 34%;
  }
  .h-lg-34{
    height: 34%;
  }
  
  .w-lg-35{
    width: 35%;
  }
  .h-lg-35{
    height: 35%;
  }
  
  .w-lg-36{
    width: 36%;
  }
  .h-lg-36{
    height: 36%;
  }
  
  .w-lg-37{
    width: 37%;
  }
  .h-lg-37{
    height: 37%;
  }
  
  .w-lg-38{
    width: 38%;
  }
  .h-lg-38{
    height: 38%;
  }
  
  .w-lg-39{
    width: 39%;
  }
  .h-lg-39{
    height: 39%;
  }
  
  .w-lg-40{
    width: 40%;
  }
  .h-lg-40{
    height: 40%;
  }
  
  .w-lg-41{
    width: 41%;
  }
  .h-lg-41{
    height: 41%;
  }
  
  .w-lg-42{
    width: 42%;
  }
  .h-lg-42{
    height: 42%;
  }
  
  .w-lg-43{
    width: 43%;
  }
  .h-lg-43{
    height: 43%;
  }
  
  .w-lg-44{
    width: 44%;
  }
  .h-lg-44{
    height: 44%;
  }
  
  .w-lg-45{
    width: 45%;
  }
  .h-lg-45{
    height: 45%;
  }
  
  .w-lg-46{
    width: 46%;
  }
  .h-lg-46{
    height: 46%;
  }
  
  .w-lg-47{
    width: 47%;
  }
  .h-lg-47{
    height: 47%;
  }
  
  .w-lg-48{
    width: 48%;
  }
  .h-lg-48{
    height: 48%;
  }
  
  .w-lg-49{
    width: 49%;
  }
  .h-lg-49{
    height: 49%;
  }
  
  .w-lg-50{
    width: 50%;
  }
  .h-lg-50{
    height: 50%;
  }
  
  .w-lg-51{
    width: 51%;
  }
  .h-lg-51{
    height: 51%;
  }
  
  .w-lg-52{
    width: 52%;
  }
  .h-lg-52{
    height: 52%;
  }
  
  .w-lg-53{
    width: 53%;
  }
  .h-lg-53{
    height: 53%;
  }
  
  .w-lg-54{
    width: 54%;
  }
  .h-lg-54{
    height: 54%;
  }
  
  .w-lg-55{
    width: 55%;
  }
  .h-lg-55{
    height: 55%;
  }
  
  .w-lg-56{
    width: 56%;
  }
  .h-lg-56{
    height: 56%;
  }
  
  .w-lg-57{
    width: 57%;
  }
  .h-lg-57{
    height: 57%;
  }
  
  .w-lg-58{
    width: 58%;
  }
  .h-lg-58{
    height: 58%;
  }
  
  .w-lg-59{
    width: 59%;
  }
  .h-lg-59{
    height: 59%;
  }
  
  .w-lg-60{
    width: 60%;
  }
  .h-lg-60{
    height: 60%;
  }
  
  .w-lg-61{
    width: 61%;
  }
  .h-lg-61{
    height: 61%;
  }
  
  .w-lg-62{
    width: 62%;
  }
  .h-lg-62{
    height: 62%;
  }
  
  .w-lg-63{
    width: 63%;
  }
  .h-lg-63{
    height: 63%;
  }
  
  .w-lg-64{
    width: 64%;
  }
  .h-lg-64{
    height: 64%;
  }
  
  .w-lg-65{
    width: 65%;
  }
  .h-lg-65{
    height: 65%;
  }
  
  .w-lg-66{
    width: 66%;
  }
  .h-lg-66{
    height: 66%;
  }
  
  .w-lg-67{
    width: 67%;
  }
  .h-lg-67{
    height: 67%;
  }
  
  .w-lg-68{
    width: 68%;
  }
  .h-lg-68{
    height: 68%;
  }
  
  .w-lg-69{
    width: 69%;
  }
  .h-lg-69{
    height: 69%;
  }
  
  .w-lg-70{
    width: 70%;
  }
  .h-lg-70{
    height: 70%;
  }
  
  .w-lg-71{
    width: 71%;
  }
  .h-lg-71{
    height: 71%;
  }
  
  .w-lg-72{
    width: 72%;
  }
  .h-lg-72{
    height: 72%;
  }
  
  .w-lg-73{
    width: 73%;
  }
  .h-lg-73{
    height: 73%;
  }
  
  .w-lg-74{
    width: 74%;
  }
  .h-lg-74{
    height: 74%;
  }
  
  .w-lg-75{
    width: 75%;
  }
  .h-lg-75{
    height: 75%;
  }
  
  .w-lg-76{
    width: 76%;
  }
  .h-lg-76{
    height: 76%;
  }
  
  .w-lg-77{
    width: 77%;
  }
  .h-lg-77{
    height: 77%;
  }
  
  .w-lg-78{
    width: 78%;
  }
  .h-lg-78{
    height: 78%;
  }
  
  .w-lg-79{
    width: 79%;
  }
  .h-lg-79{
    height: 79%;
  }
  
  .w-lg-80{
    width: 80%;
  }
  .h-lg-80{
    height: 80%;
  }
  
  .w-lg-81{
    width: 81%;
  }
  .h-lg-81{
    height: 81%;
  }
  
  .w-lg-82{
    width: 82%;
  }
  .h-lg-82{
    height: 82%;
  }
  
  .w-lg-83{
    width: 83%;
  }
  .h-lg-83{
    height: 83%;
  }
  
  .w-lg-84{
    width: 84%;
  }
  .h-lg-84{
    height: 84%;
  }
  
  .w-lg-85{
    width: 85%;
  }
  .h-lg-85{
    height: 85%;
  }
  
  .w-lg-86{
    width: 86%;
  }
  .h-lg-86{
    height: 86%;
  }
  
  .w-lg-87{
    width: 87%;
  }
  .h-lg-87{
    height: 87%;
  }
  
  .w-lg-88{
    width: 88%;
  }
  .h-lg-88{
    height: 88%;
  }
  
  .w-lg-89{
    width: 89%;
  }
  .h-lg-89{
    height: 89%;
  }
  
  .w-lg-90{
    width: 90%;
  }
  .h-lg-90{
    height: 90%;
  }
  
  .w-lg-91{
    width: 91%;
  }
  .h-lg-91{
    height: 91%;
  }
  
  .w-lg-92{
    width: 92%;
  }
  .h-lg-92{
    height: 92%;
  }
  
  .w-lg-93{
    width: 93%;
  }
  .h-lg-93{
    height: 93%;
  }
  
  .w-lg-94{
    width: 94%;
  }
  .h-lg-94{
    height: 94%;
  }
  
  .w-lg-95{
    width: 95%;
  }
  .h-lg-95{
    height: 95%;
  }
  
  .w-lg-96{
    width: 96%;
  }
  .h-lg-96{
    height: 96%;
  }
  
  .w-lg-97{
    width: 97%;
  }
  .h-lg-97{
    height: 97%;
  }
  
  .w-lg-98{
    width: 98%;
  }
  .h-lg-98{
    height: 98%;
  }
  
  .w-lg-99{
    width: 99%;
  }
  .h-lg-99{
    height: 99%;
  }
  
  .w-lg-100{
    width: 100%;
  }
  .h-lg-100{
    height: 100%;
  }
  
}
@media (min-width: 1200px){
  
  .w-xl-1{
    width: 1%;
  }
  .h-xl-1{
    height: 1%;
  }
  
  .w-xl-2{
    width: 2%;
  }
  .h-xl-2{
    height: 2%;
  }
  
  .w-xl-3{
    width: 3%;
  }
  .h-xl-3{
    height: 3%;
  }
  
  .w-xl-4{
    width: 4%;
  }
  .h-xl-4{
    height: 4%;
  }
  
  .w-xl-5{
    width: 5%;
  }
  .h-xl-5{
    height: 5%;
  }
  
  .w-xl-6{
    width: 6%;
  }
  .h-xl-6{
    height: 6%;
  }
  
  .w-xl-7{
    width: 7%;
  }
  .h-xl-7{
    height: 7%;
  }
  
  .w-xl-8{
    width: 8%;
  }
  .h-xl-8{
    height: 8%;
  }
  
  .w-xl-9{
    width: 9%;
  }
  .h-xl-9{
    height: 9%;
  }
  
  .w-xl-10{
    width: 10%;
  }
  .h-xl-10{
    height: 10%;
  }
  
  .w-xl-11{
    width: 11%;
  }
  .h-xl-11{
    height: 11%;
  }
  
  .w-xl-12{
    width: 12%;
  }
  .h-xl-12{
    height: 12%;
  }
  
  .w-xl-13{
    width: 13%;
  }
  .h-xl-13{
    height: 13%;
  }
  
  .w-xl-14{
    width: 14%;
  }
  .h-xl-14{
    height: 14%;
  }
  
  .w-xl-15{
    width: 15%;
  }
  .h-xl-15{
    height: 15%;
  }
  
  .w-xl-16{
    width: 16%;
  }
  .h-xl-16{
    height: 16%;
  }
  
  .w-xl-17{
    width: 17%;
  }
  .h-xl-17{
    height: 17%;
  }
  
  .w-xl-18{
    width: 18%;
  }
  .h-xl-18{
    height: 18%;
  }
  
  .w-xl-19{
    width: 19%;
  }
  .h-xl-19{
    height: 19%;
  }
  
  .w-xl-20{
    width: 20%;
  }
  .h-xl-20{
    height: 20%;
  }
  
  .w-xl-21{
    width: 21%;
  }
  .h-xl-21{
    height: 21%;
  }
  
  .w-xl-22{
    width: 22%;
  }
  .h-xl-22{
    height: 22%;
  }
  
  .w-xl-23{
    width: 23%;
  }
  .h-xl-23{
    height: 23%;
  }
  
  .w-xl-24{
    width: 24%;
  }
  .h-xl-24{
    height: 24%;
  }
  
  .w-xl-25{
    width: 25%;
  }
  .h-xl-25{
    height: 25%;
  }
  
  .w-xl-26{
    width: 26%;
  }
  .h-xl-26{
    height: 26%;
  }
  
  .w-xl-27{
    width: 27%;
  }
  .h-xl-27{
    height: 27%;
  }
  
  .w-xl-28{
    width: 28%;
  }
  .h-xl-28{
    height: 28%;
  }
  
  .w-xl-29{
    width: 29%;
  }
  .h-xl-29{
    height: 29%;
  }
  
  .w-xl-30{
    width: 30%;
  }
  .h-xl-30{
    height: 30%;
  }
  
  .w-xl-31{
    width: 31%;
  }
  .h-xl-31{
    height: 31%;
  }
  
  .w-xl-32{
    width: 32%;
  }
  .h-xl-32{
    height: 32%;
  }
  
  .w-xl-33{
    width: 33%;
  }
  .h-xl-33{
    height: 33%;
  }
  
  .w-xl-34{
    width: 34%;
  }
  .h-xl-34{
    height: 34%;
  }
  
  .w-xl-35{
    width: 35%;
  }
  .h-xl-35{
    height: 35%;
  }
  
  .w-xl-36{
    width: 36%;
  }
  .h-xl-36{
    height: 36%;
  }
  
  .w-xl-37{
    width: 37%;
  }
  .h-xl-37{
    height: 37%;
  }
  
  .w-xl-38{
    width: 38%;
  }
  .h-xl-38{
    height: 38%;
  }
  
  .w-xl-39{
    width: 39%;
  }
  .h-xl-39{
    height: 39%;
  }
  
  .w-xl-40{
    width: 40%;
  }
  .h-xl-40{
    height: 40%;
  }
  
  .w-xl-41{
    width: 41%;
  }
  .h-xl-41{
    height: 41%;
  }
  
  .w-xl-42{
    width: 42%;
  }
  .h-xl-42{
    height: 42%;
  }
  
  .w-xl-43{
    width: 43%;
  }
  .h-xl-43{
    height: 43%;
  }
  
  .w-xl-44{
    width: 44%;
  }
  .h-xl-44{
    height: 44%;
  }
  
  .w-xl-45{
    width: 45%;
  }
  .h-xl-45{
    height: 45%;
  }
  
  .w-xl-46{
    width: 46%;
  }
  .h-xl-46{
    height: 46%;
  }
  
  .w-xl-47{
    width: 47%;
  }
  .h-xl-47{
    height: 47%;
  }
  
  .w-xl-48{
    width: 48%;
  }
  .h-xl-48{
    height: 48%;
  }
  
  .w-xl-49{
    width: 49%;
  }
  .h-xl-49{
    height: 49%;
  }
  
  .w-xl-50{
    width: 50%;
  }
  .h-xl-50{
    height: 50%;
  }
  
  .w-xl-51{
    width: 51%;
  }
  .h-xl-51{
    height: 51%;
  }
  
  .w-xl-52{
    width: 52%;
  }
  .h-xl-52{
    height: 52%;
  }
  
  .w-xl-53{
    width: 53%;
  }
  .h-xl-53{
    height: 53%;
  }
  
  .w-xl-54{
    width: 54%;
  }
  .h-xl-54{
    height: 54%;
  }
  
  .w-xl-55{
    width: 55%;
  }
  .h-xl-55{
    height: 55%;
  }
  
  .w-xl-56{
    width: 56%;
  }
  .h-xl-56{
    height: 56%;
  }
  
  .w-xl-57{
    width: 57%;
  }
  .h-xl-57{
    height: 57%;
  }
  
  .w-xl-58{
    width: 58%;
  }
  .h-xl-58{
    height: 58%;
  }
  
  .w-xl-59{
    width: 59%;
  }
  .h-xl-59{
    height: 59%;
  }
  
  .w-xl-60{
    width: 60%;
  }
  .h-xl-60{
    height: 60%;
  }
  
  .w-xl-61{
    width: 61%;
  }
  .h-xl-61{
    height: 61%;
  }
  
  .w-xl-62{
    width: 62%;
  }
  .h-xl-62{
    height: 62%;
  }
  
  .w-xl-63{
    width: 63%;
  }
  .h-xl-63{
    height: 63%;
  }
  
  .w-xl-64{
    width: 64%;
  }
  .h-xl-64{
    height: 64%;
  }
  
  .w-xl-65{
    width: 65%;
  }
  .h-xl-65{
    height: 65%;
  }
  
  .w-xl-66{
    width: 66%;
  }
  .h-xl-66{
    height: 66%;
  }
  
  .w-xl-67{
    width: 67%;
  }
  .h-xl-67{
    height: 67%;
  }
  
  .w-xl-68{
    width: 68%;
  }
  .h-xl-68{
    height: 68%;
  }
  
  .w-xl-69{
    width: 69%;
  }
  .h-xl-69{
    height: 69%;
  }
  
  .w-xl-70{
    width: 70%;
  }
  .h-xl-70{
    height: 70%;
  }
  
  .w-xl-71{
    width: 71%;
  }
  .h-xl-71{
    height: 71%;
  }
  
  .w-xl-72{
    width: 72%;
  }
  .h-xl-72{
    height: 72%;
  }
  
  .w-xl-73{
    width: 73%;
  }
  .h-xl-73{
    height: 73%;
  }
  
  .w-xl-74{
    width: 74%;
  }
  .h-xl-74{
    height: 74%;
  }
  
  .w-xl-75{
    width: 75%;
  }
  .h-xl-75{
    height: 75%;
  }
  
  .w-xl-76{
    width: 76%;
  }
  .h-xl-76{
    height: 76%;
  }
  
  .w-xl-77{
    width: 77%;
  }
  .h-xl-77{
    height: 77%;
  }
  
  .w-xl-78{
    width: 78%;
  }
  .h-xl-78{
    height: 78%;
  }
  
  .w-xl-79{
    width: 79%;
  }
  .h-xl-79{
    height: 79%;
  }
  
  .w-xl-80{
    width: 80%;
  }
  .h-xl-80{
    height: 80%;
  }
  
  .w-xl-81{
    width: 81%;
  }
  .h-xl-81{
    height: 81%;
  }
  
  .w-xl-82{
    width: 82%;
  }
  .h-xl-82{
    height: 82%;
  }
  
  .w-xl-83{
    width: 83%;
  }
  .h-xl-83{
    height: 83%;
  }
  
  .w-xl-84{
    width: 84%;
  }
  .h-xl-84{
    height: 84%;
  }
  
  .w-xl-85{
    width: 85%;
  }
  .h-xl-85{
    height: 85%;
  }
  
  .w-xl-86{
    width: 86%;
  }
  .h-xl-86{
    height: 86%;
  }
  
  .w-xl-87{
    width: 87%;
  }
  .h-xl-87{
    height: 87%;
  }
  
  .w-xl-88{
    width: 88%;
  }
  .h-xl-88{
    height: 88%;
  }
  
  .w-xl-89{
    width: 89%;
  }
  .h-xl-89{
    height: 89%;
  }
  
  .w-xl-90{
    width: 90%;
  }
  .h-xl-90{
    height: 90%;
  }
  
  .w-xl-91{
    width: 91%;
  }
  .h-xl-91{
    height: 91%;
  }
  
  .w-xl-92{
    width: 92%;
  }
  .h-xl-92{
    height: 92%;
  }
  
  .w-xl-93{
    width: 93%;
  }
  .h-xl-93{
    height: 93%;
  }
  
  .w-xl-94{
    width: 94%;
  }
  .h-xl-94{
    height: 94%;
  }
  
  .w-xl-95{
    width: 95%;
  }
  .h-xl-95{
    height: 95%;
  }
  
  .w-xl-96{
    width: 96%;
  }
  .h-xl-96{
    height: 96%;
  }
  
  .w-xl-97{
    width: 97%;
  }
  .h-xl-97{
    height: 97%;
  }
  
  .w-xl-98{
    width: 98%;
  }
  .h-xl-98{
    height: 98%;
  }
  
  .w-xl-99{
    width: 99%;
  }
  .h-xl-99{
    height: 99%;
  }
  
  .w-xl-100{
    width: 100%;
  }
  .h-xl-100{
    height: 100%;
  }
  
}

.d-block{
  display: block;
}

.d-flex{
  display: flex;
}

.d-contents{
  display: contents;
}

.d-grid{
  display: grid;
}

.d-inline{
  display: inline;
}

.d-inline-block{
  display: inline-block;
}

.d-table{
  display: table;
}

.d-none{
  display: none;
}

.d-table-cell{
  display: table-cell;
}

@media (min-width: 576px){

  .d-sm-block{
    display: block;
  }

  .d-sm-flex{
    display: flex;
  }

  .d-sm-contents{
    display: contents;
  }

  .d-sm-grid{
    display: grid;
  }

  .d-sm-inline{
    display: inline;
  }

  .d-sm-inline-block{
    display: inline-block;
  }

  .d-sm-table{
    display: table;
  }

  .d-sm-none{
    display: none;
  }

  .d-sm-table-cell{
    display: table-cell;
  }

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

  .d-md-block{
    display: block;
  }

  .d-md-flex{
    display: flex;
  }

  .d-md-contents{
    display: contents;
  }

  .d-md-grid{
    display: grid;
  }

  .d-md-inline{
    display: inline;
  }

  .d-md-inline-block{
    display: inline-block;
  }

  .d-md-table{
    display: table;
  }

  .d-md-none{
    display: none;
  }

  .d-md-table-cell{
    display: table-cell;
  }

}
@media (min-width: 992px){
  
  .d-lg-block{
    display: block;
  }

  .d-lg-flex{
    display: flex;
  }

  .d-lg-contents{
    display: contents;
  }

  .d-lg-grid{
    display: grid;
  }

  .d-lg-inline{
    display: inline;
  }

  .d-lg-inline-block{
    display: inline-block;
  }

  .d-lg-table{
    display: table;
  }

  .d-lg-none{
    display: none;
  }

  .d-lg-table-cell{
    display: table-cell;
  }

}
@media (min-width: 1200px){
  
  .d-xl-block{
    display: block;
  }

  .d-xl-flex{
    display: flex;
  }

  .d-xl-contents{
    display: contents;
  }

  .d-xl-grid{
    display: grid;
  }

  .d-xl-inline{
    display: inline;
  }

  .d-xl-inline-block{
    display: inline-block;
  }

  .d-xl-table{
    display: table;
  }

  .d-xl-none{
    display: none;
  }

  .d-xl-table-cell{
    display: table-cell;
  }

}

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

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

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

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

@media (min-width: 576px){
 
.flex-sm-nowrap{
  -ms-flex-wrap: nowrap;
  flex: nowrap;
}

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

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

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

}
@media (min-width: 768px){
 
.flex-md-nowrap{
  -ms-flex-wrap: nowrap;
  flex: nowrap;
}

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

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

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

}
@media (min-width: 992px){
 
.flex-lg-nowrap{
  -ms-flex-wrap: nowrap;
  flex: nowrap;
}

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

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

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

}
@media (min-width: 1200px){
 
.flex-xl-nowrap{
  -ms-flex-wrap: nowrap;
  flex: nowrap;
}

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

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

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

}

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

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

.direction-revert{
  -ms-flex-direction: revert;
  flex-direction: revert;
}

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

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

@media (min-width: 576px){

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

.direction-sm-column-reverse{
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.direction-sm-revert{
  -ms-flex-direction: revert;
  flex-direction: revert;
}

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

.direction-sm-row-reverse{
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

}
@media (min-width: 768px){
 
.direction-md-column{
  -ms-flex-direction: column;
  flex-direction: column;
}

.direction-md-column-reverse{
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.direction-md-revert{
  -ms-flex-direction: revert;
  flex-direction: revert;
}

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

.direction-md-row-reverse{
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

}
@media (min-width: 992px){
 
.direction-lg-column{
  -ms-flex-direction: column;
  flex-direction: column;
}

.direction-lg-column-reverse{
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.direction-lg-revert{
  -ms-flex-direction: revert;
  flex-direction: revert;
}

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

.direction-lg-row-reverse{
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

}
@media (min-width: 1200px){
 
.direction-xl-column{
  -ms-flex-direction: column;
  flex-direction: column;
}

.direction-xl-column-reverse{
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.direction-xl-revert{
  -ms-flex-direction: revert;
  flex-direction: revert;
}

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

.direction-xl-row-reverse{
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

}

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

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

.align-left{
  -ms-flex-align: left;
  align-items: left;
}

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

.align-revert{
  -ms-flex-align: revert;
  align-items: revert;
}

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

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

@media (min-width: 576px){

.align-sm-center{
  -ms-flex-align: center;
  align-items: center;
}

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

.align-sm-left{
  -ms-flex-align: left;
  align-items: left;
}

.align-sm-baseline{
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-sm-revert{
  -ms-flex-align: revert;
  align-items: revert;
}

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

.align-sm-flex-start{
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

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

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

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

.align-md-left{
  -ms-flex-align: left;
  align-items: left;
}

.align-md-baseline{
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-md-revert{
  -ms-flex-align: revert;
  align-items: revert;
}

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

.align-md-flex-start{
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

}
@media (min-width: 992px){

.align-lg-center{
  -ms-flex-align: center;
  align-items: center;
}

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

.align-lg-left{
  -ms-flex-align: left;
  align-items: left;
}

.align-lg-baseline{
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-lg-revert{
  -ms-flex-align: revert;
  align-items: revert;
}

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

.align-lg-flex-start{
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

}
@media (min-width: 1200px){

.align-xl-center{
  -ms-flex-align: center;
  align-items: center;
}

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

.align-xl-left{
  -ms-flex-align: left;
  align-items: left;
}

.align-xl-baseline{
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-xl-revert{
  -ms-flex-align: revert;
  align-items: revert;
}

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

.align-xl-flex-start{
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

}

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

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

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

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

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

@media (min-width: 576px){

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

.justify-sm-end{
  -ms-flex-pack: end;
  justify-content: end;
}

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

.justify-sm-space-around{
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

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

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

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

.justify-md-end{
  -ms-flex-pack: end;
  justify-content: end;
}

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

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

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

}
@media (min-width: 992px){

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

.justify-lg-end{
  -ms-flex-pack: end;
  justify-content: end;
}

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

.justify-lg-space-around{
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

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

}
@media (min-width: 1200px){

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

.justify-xl-end{
  -ms-flex-pack: end;
  justify-content: end;
}

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

.justify-xl-space-around{
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

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

}

.position-relative{
  position: relative;
}

.position-absolute{
  position: absolute;
}

.position-static{
  position: static;
}

.position-fixed{
  position: fixed;
}

@media (min-width: 576px){

.position-sm-relative{
  position: relative;
}

.position-sm-absolute{
  position: absolute;
}

.position-sm-static{
  position: static;
}

.position-sm-fixed{
  position: fixed;
}

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

.position-md-relative{
  position: relative;
}

.position-md-absolute{
  position: absolute;
}

.position-md-static{
  position: static;
}

.position-md-fixed{
  position: fixed;
}

}
@media (min-width: 992px){

.position-lg-relative{
  position: relative;
}

.position-lg-absolute{
  position: absolute;
}

.position-lg-static{
  position: static;
}

.position-lg-fixed{
  position: fixed;
}

}
@media (min-width: 1200px){

.position-xl-relative{
  position: relative;
}

.position-xl-absolute{
  position: absolute;
}

.position-xl-static{
  position: static;
}

.position-xl-fixed{
  position: fixed;
}

}
/* atc-Hero-with-Form   */
.single-items .icons{
  color:var(--black);
  width:60px;
  height:60px;
  margin:0 auto 10px;
}

.icons svg{
   width:100%;
   height:100%;
}

.content-with-icon{
  text-align:center;
  margin-top: 80px;
}

.content-with-hero.home-hero-banner .richtext{
   padding:0;
}

.icon-with-content{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.home-hero-banner{
  padding: 120px 0;
  overflow:hidden;
  position:relative;
}
.home-hero-banner .row{
  align-items: center;
}

.home-hero-banner .inner .card-img{
/*   max-height: 450px; */
  object-fit: cover;
}
.home-hero-banner .inner .hs-video-widget{
  box-shadow: 0px 4px 39px rgb(54 66 71 / 72%);
  border-radius: 20px;
}
.home-hero-banner .inner .hs-video-widget iframe{
  border-radius: 20px; 
}
/* video Button */
.home-hero-banner .video-popup-button .button_primary{
  position: relative;
}
.home-hero-banner .video-popup-button .button_primary a{
  z-index:10;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-hero-banner .video-popup-button .button_primary a:hover{
  background-color: #fb706c !important;
  border: 1px solid transparent;
}
.home-hero-banner .video-popup-button .button_primary a span{
  display: inline-flex;
}
.home-hero-banner .video-popup-button .button_primary:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 170px;
  height: 60px;
  background: #fb706cb0;
  border-radius: 50px;
  animation: pulse-border 1500ms ease-out infinite;
}
.home-hero-banner .button.button_primary a:hover{
  background-color: #f6c25d;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.home-hero-banner .waves-img {
  height: 80px;
  z-index: 9;
  transform: rotate(180deg);
  bottom: -1px;
  bottom: 0;
}
   
.home-hero-banner .hero-img{
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  position: relative;
}
.home-hero-banner .video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.home-hero-banner .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #0c0a44;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.home-hero-banner .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #0c0a44;
  border-radius: 50%;
  transition: all 200ms;
}

.home-hero-banner .video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.home-hero-banner .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.home-hero-banner .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.hero-banner-with-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #eee;
}

.hero-banner-with-form  .form-title{
  display: none;
}

.hero-banner-with-form form input, 
.hero-banner-with-form form select, 
.hero-banner-with-form form textarea{
  font-size: 16px;
  transition:0.2s all ease-in-out;
  line-height: 1.4;
}

.hero-banner-with-form form input:focus,
.hero-banner-with-form form select:focus,
.hero-banner-with-form form textarea:focus{
    outline: 1px solid #fb706c;
    box-shadow: 0px 0px 0px 5px rgb(251 112 108 / 30%);
    outline-offset: 0px;
}

.hero-banner-with-form form select{
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: center right;
}

.hero-banner-with-form .hs-error-msg {
    font-size: 14px;
    color: red;
    margin-top: 0.35rem;
}
.hero-banner-with-form form .inputs-list>li {
  margin-top: 0px;
}

/* atc-Hero-with-Form end   */

/* atc-home-hero-banner-v2  */

.btn-parent-flex{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.home-hero-banner{
  padding: 120px 0;
  overflow:hidden;
position:relative;
}
.home-hero-banner .row{
  align-items: center;
}

.home-hero-banner .inner .card-img{
/*   max-height: 450px; */
  object-fit: cover;
}
.home-hero-banner .inner .hs-video-widget{
  box-shadow: 0px 4px 39px rgb(54 66 71 / 72%);
  border-radius: 20px;
}
.home-hero-banner .inner .hs-video-widget iframe{
  border-radius: 20px; 
}
/* video Button */
.home-hero-banner .video-popup-button .button_primary{
  position: relative;
}
.home-hero-banner .video-popup-button .button_primary a{
  z-index:10;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-hero-banner .video-popup-button .button_primary a:hover{
  background-color: #fb706c !important;
  border: 1px solid transparent;
}
.home-hero-banner .video-popup-button .button_primary a span{
  display: inline-flex;
}
.home-hero-banner .video-popup-button .button_primary:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 170px;
  height: 60px;
  background: #fb706cb0;
  border-radius: 50px;
  animation: pulse-border 1500ms ease-out infinite;
}
.home-hero-banner .button.button_primary a:hover{
  background-color: #f6c25d;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.home-hero-banner .waves-img {
  height: 80px;
  z-index: 9;
  transform: rotate(180deg);
  bottom: -1px;
  bottom: 0;
}
   
.home-hero-banner .hero-img{
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  position: relative;
}
.home-hero-banner .video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.home-hero-banner .video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #0c0a44;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.home-hero-banner .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #0c0a44;
  border-radius: 50%;
  transition: all 200ms;
}

.home-hero-banner .video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.home-hero-banner .video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.home-hero-banner .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.home-hero-banner .richtext{
  padding-left: 30px;
}

/* Responsive */

@media (max-width: 1150px){
  .home-hero-banner .hero-img{
    height: 400px;
    width: 400px;
    margin: 0 auto;
  }
  
}

@media screen and (max-width: 991px){
  .content-with-icon {
      text-align: center;
      max-width: 600px;
      margin: 80px auto 20px;
  }
  .content-with-icon p {
      font-size: 16px;
  }
}

@media screen and (min-width: 1201px){
  .home-hero-banner .richtext h1{
    font-size: 44px;
  }
  .home-hero-banner {
    padding: 80px 0 120px;
  }
}


@media (min-width: 1201px) and (max-width: 1400px){
  .home-hero-banner {
    padding: 80px 0 120px;
  }
}

@media (min-width: 991px) and (max-width: 1200px){
  .home-hero-banner .richtext h1{
    font-size: 40px;
  }
  .home-hero-banner {
    padding: 60px 0 120px;
  }
}

@media (max-width: 500px){
  .home-hero-banner {
    padding: 60px 0 120px;
  }
}


@media (max-width: 500px){
  .home-hero-banner .richtext{
    padding-left: 0;
  }
  .home-hero-banner .hero-img{
    height: auto;
    width: auto;
    margin: 0 auto;
  }
  .icon-with-content {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .icon-with-content {
    gap: 5px;
  }
}
 
/* atc-home-hero-banner-v2 end    */


/* Responsive */

@media (max-width: 1150px){
  .home-hero-banner .hero-img{
    height: 400px;
    width: 400px;
    margin: 0 auto;
  }
  
}

@media (min-width: 1201px) and (max-width: 1400px){
  .home-hero-banner {
    padding: 80px 0 120px;
  }
}

@media (min-width: 991px) and (max-width: 1200px){
  .home-hero-banner .richtext h1{
    font-size: 40px;
  }
  .home-hero-banner {
    padding: 60px 0 120px;
  }
}

@media (max-width: 500px){

  .home-hero-banner {
    padding: 60px 0 120px;
  }
  .home-hero-banner .richtext{
    padding-left: 0;
  }
  .home-hero-banner .hero-img{
    height: auto;
    width: auto;
    margin: 0 auto;
  }
  .hero-banner-with-form {
      padding: 30px 20px;  
      margin-top: 50px;
  }
}

/* Button Module */
.buton_wrap { display: flex; flex-wrap: wrap; }
.buton_wrap .col { width: 50%; padding: 0 7px 15px; }

/* .hs_what_content_do_you_have_.hs-form-field { display: none; } */
.buton_wrap .col.active .button a { background: rgba(12, 10, 68, 1.0); border-color: rgba(12, 10, 68, 1.0); }
.custom-error-msg {color: #ef6b51;font-size: 17px;}
.buton_wrap .col .button { width: 100%; max-width: 100%; }
.buton_wrap .col .button a { width: 100%;  display: flex; align-items: center; justify-content: center; height:100%; }


@media (max-width:991px){
    .buton_wrap .col .button a { font-size: 12px; padding: 10px 10px; }

}
@media (max-width:767px){
    .buton_wrap .col { width: 100%; padding: 0 0 15px; text-align:center; }
    
    .buton_wrap .col .button a { font-size:14px; padding:10px 20px; min-height:auto; }
    .buton_wrap .col .button { width: 100%; max-width: 50%; }
    
    
}

@media (max-width:550px){
    .buton_wrap .col .button { width: 100%; max-width: 100%; padding: 0 15px; }
}