


@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox'],
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio'] {
    --active: #214f4e;
    --active-inner: #ffffff;
    --focus: 2px rgba(33,79,78,0.300008);
    --border: rgba(33,79,78,0);
    --border-hover: #214f4e;
    --background: #ffffff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:after,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:checked,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:disabled,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:disabled:checked,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:disabled + label,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:disabled + label {
    cursor: not-allowed;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:hover:not(:checked):not(:disabled),
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:focus,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:not(.switch),
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:not(.switch) {
    width: 21px;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:not(.switch):after,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:not(.switch):checked,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:not(.switch):checked {
    --o: 1;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox'] + label,
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio'] + label {
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 0.2em;
  }

  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:not(.switch) {
    border-radius: 7px;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }

  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio'] {
    border-radius: 50%;
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  .wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'][type='radio']:checked {
    --s: .5;
  }
}

.wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'] * {
  box-sizing: border-box;
}
.wafx-form-input[data-uuid-form='88a3a18849484b68b63b76439690a648'] *:before, *:after {
  box-sizing: border-box;
}


.comp_0 {
    padding-left: 0px;
    padding-right: 0px;
}
.comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_0-wrap {
    border-style: solid;
    flex-direction: column;
    width: 100%;
}
.comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_10 {
    flex-direction: column;
}
.comp_10 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_10 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_11 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_12 {
    flex-direction: column;
}
.comp_12 > .wa_inner_col {
    background-position: right center;
    background-repeat: repeat;
    background-size: cover;
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_12 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_13 {
    flex-direction: column;
}
.comp_13 > .wa_inner_col {
    background-color: rgba(241,241,241,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_13 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_14 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_14 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_14 .wa-txt-par a {
    color: rgba(33,37,41,1);
    font-weight: normal;
    text-decoration: none;
}
.comp_14 .wa-txt-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: underline;
}
.comp_14 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_14 .wa-txt-par.wa-last-par a {
    color: rgba(33,37,41,1);
    font-weight: normal;
    text-decoration: none;
}
.comp_14 .wa-txt-par.wa-last-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: underline;
}
.comp_15 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_15 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_15 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_15 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_15 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_16 {
    width: 100%;
}
.comp_16 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_16 input:focus {
    box-shadow: 0 0 5px rgba(92,92,92,1) !important;
}
.comp_17 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_17 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_17 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_17 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_17 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_18 {
    width: 100%;
}
.comp_18 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_18 input:focus {
    box-shadow: 0 0 5px rgba(92,92,92,1) !important;
}
.comp_19 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_19 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_19 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_19 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_19 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_2 {
    flex-direction: column;
}
.comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_20 {
    width: 100%;
}
.comp_20 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_20 input:focus {
    box-shadow: 0 0 5px rgba(92,92,92,1) !important;
}
.comp_21 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_21 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_21 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_21 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_21 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_22 {
    width: 100%;
}
.comp_22 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_22 input:focus {
    box-shadow: 0 0 5px rgba(92,92,92,1) !important;
}
.comp_23 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_23 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_23 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_23 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_23 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_24 {
    width: 100%;
}
.comp_24 textarea {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_24 textarea:focus {
    box-shadow: 0 0 5px rgba(92,92,92,1) !important;
}
.comp_25 {
    display: flex;
    width: 100%;
}
.comp_25 .wa-btn {
    background-color: rgba(33,79,78,1);
    border-color: rgba(192,192,192,0);
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.comp_25 .wa-btn.wa-btn.wa-btn-icon-left .wa-btn-icon-vector {
    margin-left: .5em;
    margin-right: .25em;
}
.comp_25 .wa-btn.wa-btn:active {
    background-color: rgba(33,79,78,1);
    border-color: rgba(192,192,192,0);
    color: rgba(255,255,255,1);
}
.comp_25 .wa-btn.wa-btn:hover {
    background-color: rgba(21,49,48,1);
    border-color: rgba(192,192,192,0);
    color: rgba(255,255,255,1);
}
.comp_25 a {
    display: flex;
    text-decoration: none;
}
.comp_25 div {
    justify-content: center;
}
.comp_26 {
    flex-direction: column;
}
.comp_26 > .wa_inner_col {
    background-color: rgba(241,241,241,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_26 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_4 {
    padding-left: 0px;
    padding-right: 0px;
}
.comp_4 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_4-wrap {
    flex-direction: column;
    width: 100%;
}
.comp_5 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_6 {
    flex-direction: column;
}
.comp_6 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_6 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_7 .wa-txt-par {
    color: rgba(25,25,25,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_7 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_7 .wa-txt-par.wa-last-par {
    color: rgba(25,25,25,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_7 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_8 {
    padding-left: 0px;
    padding-right: 0px;
}
.comp_8 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_8-wrap {
    background-color: rgba(241,241,241,1);
    flex-direction: column;
    width: 100%;
}
.comp_9 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
body {
    background-color: rgba(255,255,255,1);
}
.comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_0-wrap {
    border-bottom-color: #999999;
    border-bottom-width: 1px;
    border-left-color: #999999;
    border-left-width: 0px;
    border-radius: 0px;
    border-right-color: #999999;
    border-right-width: 0px;
    border-top-color: #999999;
    border-top-width: 0px;
    display: flex;
    min-height: 0px;
}
.comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_10 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_10 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_10 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_11 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_12 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_12 > .wa_inner_col {
    background-image: url('../../icons/014.jpg?t=df88b025_e4ec_4e4f_8b83_f3076248b8d7');
    border: none;
    border-radius: 0px;
}
.comp_12 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0rem;
}
.comp_13 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_13 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_13 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0px;
    margin-left: 26px;
    margin-right: 26px;
    margin-top: 40px;
}
.comp_14 {
    border: none;
    border-radius: 0px;
    margin-bottom: 30px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 16px;
    padding-top: 0px;
}
.comp_14 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.6;
    text-align: left;
}
.comp_14 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.6;
    text-align: left;
}
.comp_15 {
    border: none;
    border-radius: 0px;
    margin-bottom: 6px;
    margin-top: 25px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_15 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_15 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_16 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_16 input {
    border: none;
    border-radius: 0px;
    font-size: 14px;
    height: 35px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_17 {
    border: none;
    border-radius: 0px;
    margin-bottom: 6px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_17 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_17 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_18 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_18 input {
    border: none;
    border-radius: 0px;
    font-size: 14px;
    height: 35px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_19 {
    border: none;
    border-radius: 0px;
    margin-bottom: 6px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_19 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_19 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_2 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_2 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_2 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_20 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_20 input {
    border: none;
    border-radius: 0px;
    font-size: 14px;
    height: 35px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_21 {
    border: none;
    border-radius: 0px;
    margin-bottom: 6px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_21 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_21 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_22 {
    margin-bottom: 16px;
    margin-top: 6px;
}
.comp_22 input {
    border: none;
    border-radius: 0px;
    font-size: 14px;
    height: 35px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_23 {
    border: none;
    border-radius: 0px;
    margin-bottom: 6px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_23 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_23 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_24 {
    margin-bottom: 16px;
    margin-top: 6px;
}
.comp_24 textarea {
    border: none;
    border-radius: 0px;
    font-size: 14px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    min-height: 50px;
    padding: 8px;
}
.comp_25 {
    justify-content: flex-start;
    margin-bottom: 50px;
    margin-top: 8px;
}
.comp_25 .wa-btn {
    font-size: 1em;
}
.comp_25 .wa-btn.wa-btn-rounded {
    border-radius: 5px;
}
.comp_25 a {
    width: unset;
}
.comp_25 div {
    width: unset;
}
.comp_26 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_26 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_26 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_4 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_4-wrap {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_5 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_6 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_6 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_6 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0px;
    margin-left: 12px;
    margin-right: 16px;
    margin-top: 20px;
}
.comp_7 {
    border: none;
    border-radius: 0px;
    margin-bottom: 20px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_7 .wa-txt-par {
    font-size: 24px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_7 .wa-txt-par.wa-last-par {
    font-size: 24px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.comp_8 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_8-wrap {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_9 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
body {
    background-image: url('');
}
@media (min-width: 576px) {
    .comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_0-wrap {
        border-bottom-color: #999999;
        border-bottom-width: 1px;
        border-left-color: #999999;
        border-left-width: 0px;
        border-radius: 0px;
        border-right-color: #999999;
        border-right-width: 0px;
        border-top-color: #999999;
        border-top-width: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_10 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_10 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_10 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_11 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_12 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_12 > .wa_inner_col {
        background-image: url('../../icons/014.jpg?t=df88b025_e4ec_4e4f_8b83_f3076248b8d7');
        border: none;
        border-radius: 0px;
    }
    .comp_12 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0rem;
    }
    .comp_13 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_13 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_13 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 60px;
    }
    .comp_14 {
        border: none;
        border-radius: 0px;
        margin-bottom: 30px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .comp_14 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.6;
        text-align: left;
    }
    .comp_14 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.6;
        text-align: left;
    }
    .comp_15 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 25px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_15 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_15 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_16 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_16 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_17 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_17 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_17 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_18 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_18 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_19 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_19 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_19 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_2 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_20 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_20 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_21 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_21 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_21 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_22 {
        margin-bottom: 16px;
        margin-top: 6px;
    }
    .comp_22 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_23 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_23 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_23 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_24 {
        margin-bottom: 16px;
        margin-top: 6px;
    }
    .comp_24 textarea {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        min-height: 50px;
        padding: 8px;
    }
    .comp_25 {
        justify-content: flex-start;
        margin-bottom: 50px;
        margin-top: 8px;
    }
    .comp_25 .wa-btn {
        font-size: 1em;
    }
    .comp_25 .wa-btn.wa-btn-rounded {
        border-radius: 5px;
    }
    .comp_25 a {
        width: unset;
    }
    .comp_25 div {
        width: unset;
    }
    .comp_26 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_26 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_26 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_4 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_4-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_5 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_6 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_6 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_6 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 20px;
    }
    .comp_7 {
        border: none;
        border-radius: 0px;
        margin-bottom: 20px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 8px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_7 .wa-txt-par {
        font-size: 24px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_7 .wa-txt-par.wa-last-par {
        font-size: 24px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_8 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_8-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_9 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    body {
        background-image: url('');
    }
}
@media (min-width: 992px) {
    .comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_0-wrap {
        border-bottom-color: #999999;
        border-bottom-width: 1px;
        border-left-color: #999999;
        border-left-width: 0px;
        border-radius: 0px;
        border-right-color: #999999;
        border-right-width: 0px;
        border-top-color: #999999;
        border-top-width: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_10 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_10 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_10 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_11 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_12 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_12 > .wa_inner_col {
        background-image: url('../../icons/014.jpg?t=df88b025_e4ec_4e4f_8b83_f3076248b8d7');
        border: none;
        border-radius: 0px;
    }
    .comp_12 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 80px;
        margin-right: 30px;
        margin-top: 0rem;
    }
    .comp_13 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_13 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_13 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0px;
        margin-left: 30px;
        margin-right: 0px;
        margin-top: 50px;
    }
    .comp_14 {
        border: none;
        border-radius: 0px;
        margin-bottom: 30px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .comp_14 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.6;
        text-align: left;
    }
    .comp_14 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.6;
        text-align: left;
    }
    .comp_15 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 25px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_15 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_15 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_16 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_16 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_17 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_17 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_17 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_18 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_18 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_19 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_19 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_19 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_2 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_20 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_20 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_21 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_21 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_21 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_22 {
        margin-bottom: 16px;
        margin-top: 6px;
    }
    .comp_22 input {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        height: 35px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_23 {
        border: none;
        border-radius: 0px;
        margin-bottom: 6px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_23 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_23 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_24 {
        margin-bottom: 16px;
        margin-top: 6px;
    }
    .comp_24 textarea {
        border: none;
        border-radius: 0px;
        font-size: 14px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        min-height: 50px;
        padding: 8px;
    }
    .comp_25 {
        justify-content: flex-start;
        margin-bottom: 50px;
        margin-top: 8px;
    }
    .comp_25 .wa-btn {
        font-size: 1em;
    }
    .comp_25 .wa-btn.wa-btn-rounded {
        border-radius: 5px;
    }
    .comp_25 a {
        width: unset;
    }
    .comp_25 div {
        width: unset;
    }
    .comp_26 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_26 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_26 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_4 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_4-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_5 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_6 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_6 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_6 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 20px;
    }
    .comp_7 {
        border: none;
        border-radius: 0px;
        margin-bottom: 20px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 8px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_7 .wa-txt-par {
        font-size: 24px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_7 .wa-txt-par.wa-last-par {
        font-size: 24px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .comp_8 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_8-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_9 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    body {
        background-image: url('');
    }
}


.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_back_sep {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item {
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item a {
    color: rgba(0,0,0,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item:hover {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item:hover a {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item:hover svg {
    fill: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item:hover:not(.waf_menu_item_search) {
    background-color: rgba(187,187,187,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_generic_header {
    background-color: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item {
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item a {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item svg {
    fill: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item:hover {
    background-color: rgba(15,15,15,1);
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item:hover a {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item:hover svg {
    fill: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_layout {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_back_sep {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item {
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item a {
    color: rgba(0,0,0,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item:hover {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item:hover a {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item:hover svg {
    fill: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item:hover:not(.waf_menu_item_search) {
    background-color: rgba(187,187,187,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_generic_header {
    background-color: rgba(15,15,15,1);
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item {
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item a {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item svg {
    fill: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item:hover {
    background-color: rgba(15,15,15,1);
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item:hover a {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item:hover svg {
    fill: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_layout {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_back_sep {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item {
    color: rgba(0,0,0,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item a {
    color: rgba(0,0,0,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item:hover {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item:hover a {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item:hover svg {
    fill: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item:hover:not(.waf_menu_item_search) {
    background-color: rgba(187,187,187,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_generic_header {
    background-color: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item {
    color: rgba(17,17,17,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item:hover {
    background-color: rgba(232,232,232,1);
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item:hover a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item:hover svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_layout {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.blockcomp-0-comp_0 {
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-0-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-0-comp_0-wrap {
    flex-direction: column;
    width: 100%;
}
.blockcomp-0-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
    z-index: 2;
}
.blockcomp-0-comp_2 {
    flex-direction: column;
}
.blockcomp-0-comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_3 {
    display: flex;
    width: 100%;
    z-index: 3;
}
.blockcomp-0-comp_3 .wa-image-second-inner {
    background-image: url("../../images/?t=");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    opacity: 0;
    transition: all .5s ease;
    width: 100%;
}
.blockcomp-0-comp_3 .wa-image-second-inner div {
    background-color: rgba(255,255,255,0);
    height: 100%;
    width: 100%;
}
.blockcomp-0-comp_3 .wa-image-wrap {
    aspect-ratio: 500/98;;
    box-sizing: content-box;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 500px) );
}
.blockcomp-0-comp_3 .wa-image-wrap .wa-image-fx {
    animation: fadeInUp 0.8s;
}
.blockcomp-0-comp_3 .wa-image-wrap .wa-image-txt {
    opacity: 0;
    text-align: left;
}
.blockcomp-0-comp_3 .wa-image-wrap .wa-img-overlay {
    align-items: center;
    color: rgba(255,255,255,1);
    font-family: 'Signika Negative';
    font-weight: 300;
    justify-content: center;
}
.blockcomp-0-comp_3 .wa-image-wrap > div {
    aspect-ratio: 500/98;;
    position: relative;
    width: 100%;
}
.blockcomp-0-comp_3 .wa-image-wrap img {
    aspect-ratio: 500/98;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-0-comp_3 .wa-image-wrap:hover .wa-image-second-inner {
    opacity: 1;
}
.blockcomp-0-comp_4 {
    flex-direction: column;
}
.blockcomp-0-comp_4 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_4 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_5 {
    width: 100%;
    z-index: 3;
}
.blockcomp-0-comp_5 .waf_menu {
    --bubble-bg-color: rgba(238,232,237,1);
    --bubble-border-color: rgba(0,0,0,0);
    --bubble-text-color: rgba(0,0,0,1);
    --panel-bg-color: rgba(255,255,255,1);
    --panel-header-text-color: rgba(255,255,255,1);
    --panel-orientation: left;
    --panel-text-color: rgba(17,17,17,1);
}
.blockcomp-0-comp_5 .waf_menu-mini-btn {
    background-color: rgba(51,178,240,0);
    border-color: rgba(119,119,119,0);
    border-style: solid;
    border-width: 1px;
}
.blockcomp-0-comp_5 .waf_menu-mini-btn-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}
.blockcomp-0-comp_5 .waf_menu-mini-btn:hover {
    background-color: rgba(51,178,240,0);
    border-color: rgba(119,119,119,0);
}
.blockcomp-0-comp_5 .waf_menu-mini-btn:hover svg path {
    fill: rgba(255,255,255,1);
}
.blockcomp-0-comp_5 nav {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.blockcomp-0-comp_5 nav > ul > li {
    align-items: center;
    display: flex;
    justify-content: start;
}
.blockcomp-0-comp_5 nav > ul > li > .waf-nav-link {
    align-items: center;
    color: rgba(33,37,41,1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_5 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    display: flex;
}
.blockcomp-0-comp_5 nav > ul > li > .waf-nav-link > .waf_menu_icn > svg {
    fill: rgba(33,37,41,1);
}
.blockcomp-0-comp_5 nav > ul > li > .waf-nav-link > .waf_menu_label {
    display: flex;
    flex-grow: 5;
}
.blockcomp-0-comp_5 nav > ul > li > .waf_menu_search {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_5 nav > ul > li:hover > .waf-nav-link {
    color: rgba(33,37,41,1);
}
.blockcomp-0-comp_5 nav > ul > li:hover > .waf-nav-link > .waf_menu_icn >svg {
    fill: rgba(33,37,41,1);
}
.blockcomp-0-comp_6 {
    flex-direction: column;
}
.blockcomp-0-comp_6 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_6 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_7 {
    width: 100%;
    z-index: 3;
}
.blockcomp-0-comp_7 .waf_menu {
    --bubble-bg-color: rgba(238,232,237,1);
    --bubble-border-color: rgba(0,0,0,0);
    --bubble-text-color: rgba(0,0,0,1);
    --panel-bg-color: rgba(15,15,15,1);
    --panel-brand-icon: wa_res/icons/BetaConcept_Alpha_White_-_Menu_(1).png !important;
    --panel-header-text-color: rgba(255,255,255,1);
    --panel-orientation: right;
    --panel-text-color: rgba(255,255,255,1);
}
.blockcomp-0-comp_7 .waf_menu-mini-btn {
    background-color: rgba(51,178,240,0);
    border-color: rgba(119,119,119,0);
    border-style: solid;
    border-width: 1px;
}
.blockcomp-0-comp_7 .waf_menu-mini-btn-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}
.blockcomp-0-comp_7 .waf_menu-mini-btn:hover {
    background-color: rgba(51,178,240,0);
    border-color: rgba(119,119,119,0);
}
.blockcomp-0-comp_7 .waf_menu-mini-btn:hover svg path {
    fill: rgba(33,37,41,1);
}
.blockcomp-0-comp_7 nav {
    background-color: rgba(33,37,41,1);
    color: rgba(119,119,119,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.blockcomp-0-comp_7 nav > ul > li {
    align-items: center;
    display: flex;
    justify-content: start;
}
.blockcomp-0-comp_7 nav > ul > li > .waf-nav-link {
    align-items: center;
    color: rgba(119,119,119,1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    display: flex;
}
.blockcomp-0-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn > svg {
    fill: rgba(119,119,119,1);
}
.blockcomp-0-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_label {
    display: flex;
    flex-grow: 5;
}
.blockcomp-0-comp_7 nav > ul > li > .waf_menu_search {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_7 nav > ul > li:hover > .waf-nav-link {
    color: rgba(68,68,68,1);
}
.blockcomp-0-comp_7 nav > ul > li:hover > .waf-nav-link > .waf_menu_icn >svg {
    fill: rgba(68,68,68,1);
}
.blockcomp-0-comp_8 {
    flex-direction: column;
}
.blockcomp-0-comp_8 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_8 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_9 {
    width: 100%;
    z-index: 3;
}
.blockcomp-0-comp_9 .waf_menu {
    --bubble-bg-color: rgba(238,232,237,1);
    --bubble-border-color: rgba(0,0,0,0);
    --bubble-text-color: rgba(0,0,0,1);
    --panel-bg-color: rgba(15,15,15,1);
    --panel-brand-icon: wa_res/icons/BetaConcept_Alpha_White_-_Menu_(1).png !important;
    --panel-header-text-color: rgba(255,255,255,1);
    --panel-orientation: left;
    --panel-text-color: rgba(255,255,255,1);
}
.blockcomp-0-comp_9 .waf_menu-mini-btn {
    background-color: rgba(51,178,240,0);
    border-color: rgba(119,119,119,0);
    border-style: solid;
    border-width: 1px;
}
.blockcomp-0-comp_9 .waf_menu-mini-btn-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}
.blockcomp-0-comp_9 .waf_menu-mini-btn:hover {
    background-color: rgba(51,178,240,0);
    border-color: rgba(119,119,119,0);
}
.blockcomp-0-comp_9 .waf_menu-mini-btn:hover svg path {
    fill: rgba(0,0,0,1);
}
.blockcomp-0-comp_9 nav {
    background-color: rgba(249,249,249,1);
    color: rgba(119,119,119,1);
    font-family: 'Signika Negative';
    font-weight: 300;
}
.blockcomp-0-comp_9 nav > ul > li {
    align-items: center;
    display: flex;
    justify-content: start;
}
.blockcomp-0-comp_9 nav > ul > li > .waf-nav-link {
    align-items: center;
    color: rgba(119,119,119,1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_9 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    display: flex;
}
.blockcomp-0-comp_9 nav > ul > li > .waf-nav-link > .waf_menu_icn > svg {
    fill: rgba(119,119,119,1);
}
.blockcomp-0-comp_9 nav > ul > li > .waf-nav-link > .waf_menu_label {
    display: flex;
    flex-grow: 5;
}
.blockcomp-0-comp_9 nav > ul > li > .waf_menu_search {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_9 nav > ul > li:hover > .waf-nav-link {
    color: rgba(68,68,68,1);
}
.blockcomp-0-comp_9 nav > ul > li:hover > .waf-nav-link > .waf_menu_icn >svg {
    fill: rgba(68,68,68,1);
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813 > .waf_menu_panel_icon_wrap {
    height: 70px;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item {
    font-size: 13px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_generic_header {
    font-size: 1.3rem;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item {
    font-size: 20px;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item a {
    font-size: 20px;
}
.COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_size {
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6 > .waf_menu_panel_icon_wrap {
    height: 70px;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item {
    font-size: 13px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_generic_header {
    font-size: 1.3rem;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item {
    font-size: 16px;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item a {
    font-size: 16px;
}
.COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_size {
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244 > .waf_menu_panel_icon_wrap {
    height: 48px;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item {
    font-size: 13px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_generic_header {
    font-size: 1.3rem;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item {
    font-size: 13px;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_size {
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.blockcomp-0-comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_0-wrap {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.blockcomp-0-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_2 {
    min-height: 80px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_2 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_2 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 16px;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_3 {
    justify-content: flex-start;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_3 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 178.571px , 500px) );
}
.blockcomp-0-comp_3 .wa-image-wrap .wa-img-overlay {
    font-size: 13px;
}
.blockcomp-0-comp_4 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_4 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_4 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 20px;
    margin-top: 0rem;
}
.blockcomp-0-comp_5 {
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_5 .waf_menu {
    --bubble-content-column: 1;
    --bubble-content-font-size: 5.2px;
    --bubble-content-width: 350px;
    --bubble-flow-horz: 1;
    --panel-content-font-size: 5.2px;
    --panel-content-width: 380px;
}
.blockcomp-0-comp_5 .waf_menu > ul {
    flex-direction: row;
    width: unset;
}
.blockcomp-0-comp_5 .waf_menu > ul > .waf_menu_sep {
    border-bottom: none;
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0);
    border-top: none;
}
.blockcomp-0-comp_5 .waf_menu-mini-btn {
    border-radius: 4.5px;
    height: 45px;
    width: 45px;
}
.blockcomp-0-comp_5 .waf_menu-mini-btn-wrapper {
    display: flex !important;
    justify-content: end;
}
.blockcomp-0-comp_5 nav {
    border: none;
    border-radius: 0px;
    display: none !important;
    font-size: 15px;
    justify-content: end;
    min-height: 2rem;
}
.blockcomp-0-comp_5 nav > ul > li > .waf-nav-link {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-0-comp_5 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    height: 15px;
    width: 15px;
}
.blockcomp-0-comp_5 nav > ul > li > .waf_menu_search {
    padding-left: 16px;
    padding-right: 16px;
}
.blockcomp-0-comp_6 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_6 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_6 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_7 {
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_7 .waf_menu {
    --bubble-content-column: 1;
    --bubble-content-font-size: 5.2px;
    --bubble-content-width: 350px;
    --bubble-flow-horz: 1;
    --panel-content-font-size: 6.4px;
    --panel-content-width: 380px;
}
.blockcomp-0-comp_7 .waf_menu > ul {
    flex-direction: row;
    width: unset;
}
.blockcomp-0-comp_7 .waf_menu > ul > .waf_menu_sep {
    border-bottom: none;
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0);
    border-top: none;
}
.blockcomp-0-comp_7 .waf_menu-mini-btn {
    border-radius: 3.5px;
    height: 35px;
    width: 35px;
}
.blockcomp-0-comp_7 .waf_menu-mini-btn-wrapper {
    display: flex !important;
    justify-content: center;
}
.blockcomp-0-comp_7 nav {
    border: none;
    border-radius: 0px;
    display: none !important;
    font-size: 13px;
    justify-content: start;
    min-height: 2rem;
}
.blockcomp-0-comp_7 nav > ul > li > .waf-nav-link {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-0-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    height: 13px;
    width: 13px;
}
.blockcomp-0-comp_7 nav > ul > li > .waf_menu_search {
    padding-left: 16px;
    padding-right: 16px;
}
.blockcomp-0-comp_8 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_8 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_8 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_9 {
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_9 .waf_menu {
    --bubble-content-column: 1;
    --bubble-content-font-size: 5.2px;
    --bubble-content-width: 350px;
    --bubble-flow-horz: 1;
    --panel-content-font-size: 8px;
    --panel-content-width: 450px;
}
.blockcomp-0-comp_9 .waf_menu > ul {
    flex-direction: row;
    width: unset;
}
.blockcomp-0-comp_9 .waf_menu > ul > .waf_menu_sep {
    border-bottom: none;
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0);
    border-top: none;
}
.blockcomp-0-comp_9 .waf_menu-mini-btn {
    border-radius: 4px;
    height: 40px;
    width: 40px;
}
.blockcomp-0-comp_9 .waf_menu-mini-btn-wrapper {
    display: flex !important;
    justify-content: center;
}
.blockcomp-0-comp_9 nav {
    border: none;
    border-radius: 0px;
    display: none !important;
    font-size: 13px;
    justify-content: end;
    min-height: 2rem;
}
.blockcomp-0-comp_9 nav > ul > li > .waf-nav-link {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-0-comp_9 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    height: 13px;
    width: 13px;
}
.blockcomp-0-comp_9 nav > ul > li > .waf_menu_search {
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 576px) {
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813 > .waf_menu_panel_icon_wrap {
        height: 70px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 20px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 20px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6 > .waf_menu_panel_icon_wrap {
        height: 70px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 16px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 16px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244 > .waf_menu_panel_icon_wrap {
        height: 48px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .blockcomp-0-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_0-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-0-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_2 {
        min-height: 80px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_2 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_3 {
        justify-content: flex-start;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_3 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 178.571px , 500px) );
    }
    .blockcomp-0-comp_3 .wa-image-wrap .wa-img-overlay {
        font-size: 13px;
    }
    .blockcomp-0-comp_4 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_4 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_4 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0px;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_5 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_5 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 5.2px;
        --panel-content-width: 380px;
    }
    .blockcomp-0-comp_5 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_5 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_5 .waf_menu-mini-btn {
        border-radius: 4.5px;
        height: 45px;
        width: 45px;
    }
    .blockcomp-0-comp_5 .waf_menu-mini-btn-wrapper {
        display: flex !important;
        justify-content: end;
    }
    .blockcomp-0-comp_5 nav {
        border: none;
        border-radius: 0px;
        display: none !important;
        font-size: 15px;
        justify-content: end;
        min-height: 2rem;
    }
    .blockcomp-0-comp_5 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_5 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 15px;
        width: 15px;
    }
    .blockcomp-0-comp_5 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
    .blockcomp-0-comp_6 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_6 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_6 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_7 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_7 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 6.4px;
        --panel-content-width: 380px;
    }
    .blockcomp-0-comp_7 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_7 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_7 .waf_menu-mini-btn {
        border-radius: 3.5px;
        height: 35px;
        width: 35px;
    }
    .blockcomp-0-comp_7 .waf_menu-mini-btn-wrapper {
        display: flex !important;
        justify-content: center;
    }
    .blockcomp-0-comp_7 nav {
        border: none;
        border-radius: 0px;
        display: none !important;
        font-size: 13px;
        justify-content: start;
        min-height: 2rem;
    }
    .blockcomp-0-comp_7 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 13px;
        width: 13px;
    }
    .blockcomp-0-comp_7 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
    .blockcomp-0-comp_8 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_8 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_8 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_9 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_9 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 8px;
        --panel-content-width: 450px;
    }
    .blockcomp-0-comp_9 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_9 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_9 .waf_menu-mini-btn {
        border-radius: 4px;
        height: 40px;
        width: 40px;
    }
    .blockcomp-0-comp_9 .waf_menu-mini-btn-wrapper {
        display: flex !important;
        justify-content: end;
    }
    .blockcomp-0-comp_9 nav {
        border: none;
        border-radius: 0px;
        display: none !important;
        font-size: 13px;
        justify-content: end;
        min-height: 2rem;
    }
    .blockcomp-0-comp_9 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_9 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 13px;
        width: 13px;
    }
    .blockcomp-0-comp_9 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (min-width: 992px) {
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813 > .waf_menu_panel_icon_wrap {
        height: 48px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 20px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 20px;
    }
    .COMP_MENU_MATCHER_33416d82844944b9bfd4442875dae813.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6 > .waf_menu_panel_icon_wrap {
        height: 70px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 14px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 14px;
    }
    .COMP_MENU_MATCHER_c9c7a8ac0f9c4614a36efa867d9c9bc6.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244 > .waf_menu_panel_icon_wrap {
        height: 48px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_cf883f6cf6d9489e84a862ebfaa5c244.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .blockcomp-0-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_0-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-0-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_2 {
        min-height: 80px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_2 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 3px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_3 {
        justify-content: flex-start;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_3 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 200px , 500px) );
    }
    .blockcomp-0-comp_3 .wa-image-wrap .wa-img-overlay {
        font-size: 13px;
    }
    .blockcomp-0-comp_4 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_4 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_4 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0px;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_5 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_5 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 5.2px;
        --panel-content-width: 380px;
    }
    .blockcomp-0-comp_5 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_5 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_5 .waf_menu-mini-btn {
        border-radius: 4.5px;
        height: 45px;
        width: 45px;
    }
    .blockcomp-0-comp_5 .waf_menu-mini-btn-wrapper {
        display: none !important;
        justify-content: end;
    }
    .blockcomp-0-comp_5 nav {
        border: none;
        border-radius: 0px;
        display: flex !important;
        font-size: 15px;
        justify-content: end;
        min-height: 2rem;
    }
    .blockcomp-0-comp_5 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_5 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 15px;
        width: 15px;
    }
    .blockcomp-0-comp_5 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
    .blockcomp-0-comp_6 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_6 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_6 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_7 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_7 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 5.6px;
        --panel-content-width: 380px;
    }
    .blockcomp-0-comp_7 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_7 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_7 .waf_menu-mini-btn {
        border-radius: 3.5px;
        height: 35px;
        width: 35px;
    }
    .blockcomp-0-comp_7 .waf_menu-mini-btn-wrapper {
        display: flex !important;
        justify-content: center;
    }
    .blockcomp-0-comp_7 nav {
        border: none;
        border-radius: 0px;
        display: none !important;
        font-size: 13px;
        justify-content: start;
        min-height: 2rem;
    }
    .blockcomp-0-comp_7 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 13px;
        width: 13px;
    }
    .blockcomp-0-comp_7 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
    .blockcomp-0-comp_8 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_8 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_8 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_9 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_9 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 8px;
        --panel-content-width: 450px;
    }
    .blockcomp-0-comp_9 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_9 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_9 .waf_menu-mini-btn {
        border-radius: 4px;
        height: 40px;
        width: 40px;
    }
    .blockcomp-0-comp_9 .waf_menu-mini-btn-wrapper {
        display: none !important;
        justify-content: end;
    }
    .blockcomp-0-comp_9 nav {
        border: none;
        border-radius: 0px;
        display: flex !important;
        font-size: 13px;
        justify-content: end;
        min-height: 2rem;
    }
    .blockcomp-0-comp_9 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_9 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 13px;
        width: 13px;
    }
    .blockcomp-0-comp_9 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
}


.blockcomp-1-comp_0 {
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-1-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-1-comp_0-wrap {
    border-style: solid;
    flex-direction: column;
    width: 100%;
}
.blockcomp-1-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_10 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_10 .wa-txt-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_10 .wa-txt-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_10 .wa-txt-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_11 {
    flex-direction: column;
}
.blockcomp-1-comp_11 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_11 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_12 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_12 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_12 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_13 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_13 .wa-txt-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_13 .wa-txt-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_13 .wa-txt-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_13 .wa-txt-par.wa-last-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_13 .wa-txt-par.wa-last-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_13 .wa-txt-par.wa-last-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_2 {
    flex-direction: column;
}
.blockcomp-1-comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_3 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_3 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_3 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_4 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_4 .wa-txt-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_4 .wa-txt-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_4 .wa-txt-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_4 .wa-txt-par.wa-last-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_4 .wa-txt-par.wa-last-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_4 .wa-txt-par.wa-last-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_5 {
    flex-direction: column;
}
.blockcomp-1-comp_5 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_6 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_6 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_6 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_6 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_7 .wa-txt-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_7 .wa-txt-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_7 .wa-txt-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_7 .wa-txt-par.wa-last-par {
    color: rgba(122,122,122,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_7 .wa-txt-par.wa-last-par a {
    color: rgba(122,122,122,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_7 .wa-txt-par.wa-last-par a:hover {
    color: rgba(33,37,41,1);
    text-decoration: none;
}
.blockcomp-1-comp_8 {
    flex-direction: column;
}
.blockcomp-1-comp_8 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_8 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_9 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_9 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_9 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Signika Negative';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-1-comp_9 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_0 > .innerBox {
    margin-bottom: 0px;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0px;
}
.blockcomp-1-comp_0-wrap {
    border-bottom-color: #e0e0e0;
    border-bottom-width: 0px;
    border-left-color: #e0e0e0;
    border-left-width: 0px;
    border-radius: 0px;
    border-right-color: #e0e0e0;
    border-right-width: 0px;
    border-top-color: #e0e0e0;
    border-top-width: 1px;
    display: flex;
    min-height: 0px;
}
.blockcomp-1-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_10 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_10 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_11 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_11 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_11 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0px;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_12 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_12 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_13 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_13 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_13 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_2 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_2 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0px;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_3 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 40px;
}
.blockcomp-1-comp_3 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_4 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_4 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_4 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_5 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_5 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_6 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_6 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_6 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_7 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_7 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_7 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-1-comp_8 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_8 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_8 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0px;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_9 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_9 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    text-align: left;
}
@media (min-width: 576px) {
    .blockcomp-1-comp_0 > .innerBox {
        margin-bottom: 30px;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 30px;
    }
    .blockcomp-1-comp_0-wrap {
        border-bottom-color: #e0e0e0;
        border-bottom-width: 0px;
        border-left-color: #e0e0e0;
        border-left-width: 0px;
        border-radius: 0px;
        border-right-color: #e0e0e0;
        border-right-width: 0px;
        border-top-color: #e0e0e0;
        border-top-width: 1px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-1-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_10 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 8px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_10 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_11 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_11 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_11 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_12 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_12 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_13 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_13 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_13 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_3 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 8px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_3 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_4 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 8px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_4 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_4 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_5 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_5 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_6 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_6 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_6 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_7 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_7 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_7 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_8 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_8 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_8 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_9 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 8px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_9 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
}
@media (min-width: 992px) {
    .blockcomp-1-comp_0 > .innerBox {
        margin-bottom: 20px;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0px;
    }
    .blockcomp-1-comp_0-wrap {
        border-bottom-color: #e0e0e0;
        border-bottom-width: 0px;
        border-left-color: #e0e0e0;
        border-left-width: 0px;
        border-radius: 0px;
        border-right-color: #e0e0e0;
        border-right-width: 0px;
        border-top-color: #e0e0e0;
        border-top-width: 1px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-1-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_10 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_10 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_11 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_11 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_11 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 60px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_12 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 40px;
    }
    .blockcomp-1-comp_12 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_13 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_13 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_13 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_3 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 40px;
    }
    .blockcomp-1-comp_3 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_4 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_4 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_4 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_5 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_5 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_6 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 40px;
    }
    .blockcomp-1-comp_6 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_6 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_7 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_7 .wa-txt-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_7 .wa-txt-par.wa-last-par {
        font-size: 13px;
        letter-spacing: 0%;
        line-height: 2;
        text-align: left;
    }
    .blockcomp-1-comp_8 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_8 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_8 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 40px;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_9 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 40px;
    }
    .blockcomp-1-comp_9 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0%;
        line-height: 1.2;
        text-align: left;
    }
}
