


@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox'],
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio'] {
    --active: #3978fc;
    --active-inner: #ffffff;
    --focus: 2px rgba(57,120,252,0.300008);
    --border: #3778fc;
    --border-hover: #3978fc;
    --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='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:after,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][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='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:checked,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][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='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:disabled,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:disabled:checked,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:disabled + label,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:disabled + label {
    cursor: not-allowed;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:hover:not(:checked):not(:disabled),
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:focus,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:not(.switch),
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:not(.switch) {
    width: 21px;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:not(.switch):after,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:not(.switch):checked,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio']:not(.switch):checked {
    --o: 1;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox'] + label,
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio'] + label {
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 0.2em;
  }

  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:not(.switch) {
    border-radius: 7px;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][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='0f29d95eaef54da89ec21c14bb801275'][type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][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='0f29d95eaef54da89ec21c14bb801275'][type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }

  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][type='radio'] {
    border-radius: 50%;
  }
  .wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'][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='0f29d95eaef54da89ec21c14bb801275'][type='radio']:checked {
    --s: .5;
  }
}

.wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'] * {
  box-sizing: border-box;
}
.wafx-form-input[data-uuid-form='0f29d95eaef54da89ec21c14bb801275'] *:before, *:after {
  box-sizing: border-box;
}



/* (A) TABS CONTAINER */ .tab, .tab * { font-family: Raleway; box-sizing: border-box; } .tab { max-width:1800px; } /* (B) HIDE CHECKBOX */ .tab input { display: none; } /* (C) TAB LABEL */ .tab label { /* (C1) DIMENSIONS */ position: relative; /* required for (f2) position:absolute */ display: block; width: 100%; margin-top: 10px; padding: 10px; /* (C2) COSMETICS */ font-weight: 700; color: #fff; background: #6102a1; cursor: pointer; } /* (D) TAB CONTENT - HIDDEN BY DEFAULT */ /* css animation will not work with auto height */ /* this is why we use max-height instead */ .tab .content { background: #f3e0ff; overflow: hidden; transition: max-height 0.3s; max-height: 0; } .tab .content p { padding: 10px; } /* (E) OPEN TAB ON CHECKED */ .tab input:checked ~ .content { max-height: 100vh; } /* (F) EXTRA - ADD ARROW INDICATOR */ .tab label::after { /* (F1) RIGHT ARROW */ display: block; content: "\25b6"; /* (F2) PLACE AT RIGHT SIDE */ position: absolute; right: 10px; top: 10px; /* (F3) ANIMATED ARROW */ transition: all 0.3s; } /* (F4) ROTATE ARROW ON CHECKED */ .tab input:checked ~ label::after { transform: rotate(90deg); }

.comp_0 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_10 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_10 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_10 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_10 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_10 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_11 {
    background-color: rgba(255,255,255,1);
    border: 1px solid rgba(0,0,0,0.12549);
    overflow: hidden;
}
.comp_12 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_13 {
    flex-direction: column;
}
.comp_13 > .wa_inner_col {
    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: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_14 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_14 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    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(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_15 {
    width: 100%;
}
.comp_15 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Lucida Sans';
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_15 input:focus {
    box-shadow: 0 0 5px rgba(81,203,238,1) !important;
}
.comp_16 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_16 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_16 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_16 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_16 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_17 {
    width: 100%;
}
.comp_17 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Lucida Sans';
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_17 input:focus {
    box-shadow: 0 0 5px rgba(81,203,238,1) !important;
}
.comp_18 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_18 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_18 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_18 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_18 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_19 {
    width: 100%;
}
.comp_19 input {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Lucida Sans';
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_19 input:focus {
    box-shadow: 0 0 5px rgba(81,203,238,1) !important;
}
.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 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_20 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_20 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_20 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_20 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_21 {
    width: 100%;
}
.comp_21 textarea {
    background-color: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    font-family: 'Lucida Sans';
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.comp_21 textarea:focus {
    box-shadow: 0 0 5px rgba(81,203,238,1) !important;
}
.comp_22 {
    display: flex;
    width: 100%;
}
.comp_22 .wa-btn {
    background-color: rgba(39,142,193,1);
    border-color: rgba(192,192,192,1);
    color: rgba(255,255,255,1);
    font-family: 'Lucida Sans';
}
.comp_22 .wa-btn.wa-btn.wa-btn-icon-left .wa-btn-icon-vector {
    margin-left: .5em;
    margin-right: .25em;
}
.comp_22 .wa-btn.wa-btn:active {
    background-color: rgba(39,142,193,1);
    border-color: rgba(192,192,192,1);
    color: rgba(255,255,255,1);
}
.comp_22 .wa-btn.wa-btn:hover {
    background-color: rgba(33,118,161,1);
    border-color: rgba(192,192,192,1);
    color: rgba(255,255,255,1);
}
.comp_22 a {
    display: flex;
    text-decoration: none;
}
.comp_22 div {
    justify-content: center;
}
.comp_23 {
    width: 100%;
}
.comp_23 .wa-btn {
    background-color: rgba(39,142,193,1);
    border-color: rgba(192,192,192,1);
    color: rgba(255,255,255,1);
    font-family: 'Lucida Sans';
}
.comp_23 .wa-btn-upload-label {
    color: rgba(0,0,0,1);
    font-family: 'Lucida Sans';
}
.comp_23 .wa-btn.wa-btn.wa-btn-icon-left .wa-btn-icon-vector {
    margin-left: .5em;
    margin-right: .25em;
}
.comp_23 .wa-btn.wa-btn:active {
    background-color: rgba(39,142,193,1);
    border-color: rgba(192,192,192,1);
    color: rgba(255,255,255,1);
}
.comp_23 .wa-btn.wa-btn:hover {
    background-color: rgba(33,118,161,1);
    border-color: rgba(192,192,192,1);
    color: rgba(255,255,255,1);
}
.comp_23 a {
    text-decoration: none;
}
.comp_24 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_24 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.comp_25 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_25 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.comp_26 {
    flex-direction: column;
}
.comp_26 > .wa_inner_col {
    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_27 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_27 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_27 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_27 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_27 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_28 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_28 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.comp_29 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_29 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_29 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_29 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_29 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_30 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_30 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_30 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_30 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.comp_30 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_31 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_31 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_32 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_33 {
    flex-direction: column;
}
.comp_33 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_33 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_34 {
    width: 100%;
}
.comp_35 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_35 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.comp_36 {
    flex-direction: column;
}
.comp_36 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_36 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_37 {
    width: 100%;
}
.comp_38 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_38 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.comp_39 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_4 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_4 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    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 {
    background-color: rgba(255,255,255,1);
    border: 1px solid rgba(0,0,0,0.12549);
    overflow: hidden;
}
.comp_8 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_9 {
    flex-direction: column;
}
.comp_9 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_9 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
body {
    background-color: rgba(255,255,255,1);
}
.comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_10 {
    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;
}
.comp_10 .wa-txt-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}
.comp_10 .wa-txt-par.wa-last-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}
.comp_11 {
    border-radius: 6px 6px 6px 6px;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    min-height: 0rem;
}
.comp_12 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.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: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
.comp_14 {
    border: none;
    border-radius: 0px;
    margin-bottom: 3px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_14 .wa-txt-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_14 .wa-txt-par.wa-last-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_15 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_15 input {
    border: 1px solid #c0c0c0;
    border-radius: 3px 3px 3px 3px;
    font-size: 14px;
    height: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_15 input:focus {
    border: 1px solid #51cbee;
}
.comp_16 {
    border: none;
    border-radius: 0px;
    margin-bottom: 3px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_16 .wa-txt-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_16 .wa-txt-par.wa-last-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_17 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_17 input {
    border: 1px solid #c0c0c0;
    border-radius: 3px 3px 3px 3px;
    font-size: 14px;
    height: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_17 input:focus {
    border: 1px solid #51cbee;
}
.comp_18 {
    border: none;
    border-radius: 0px;
    margin-bottom: 3px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_18 .wa-txt-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_18 .wa-txt-par.wa-last-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_19 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_19 input {
    border: 1px solid #c0c0c0;
    border-radius: 3px 3px 3px 3px;
    font-size: 14px;
    height: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 8px;
    padding-right: 8px;
}
.comp_19 input:focus {
    border: 1px solid #51cbee;
}
.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 {
    border: none;
    border-radius: 0px;
    margin-bottom: 3px;
    margin-top: 8px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.comp_20 .wa-txt-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_20 .wa-txt-par.wa-last-par {
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
}
.comp_21 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_21 textarea {
    border: 1px solid #c0c0c0;
    border-radius: 3px 3px 3px 3px;
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 50px;
    padding: 8px;
}
.comp_21 textarea:focus {
    border: 1px solid #51cbee;
}
.comp_22 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 8px;
}
.comp_22 .wa-btn {
    font-size: 0.75em;
}
.comp_22 .wa-btn.wa-btn-rounded {
    border-radius: 0.375em;
}
.comp_22 a {
    width: unset;
}
.comp_22 div {
    width: unset;
}
.comp_23 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.comp_23 .wa-btn {
    font-size: 0.75em;
}
.comp_23 .wa-btn-upload-container {
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_23 .wa-btn-upload-label {
    font-size: 14px;
    margin-left: 4.2px;
}
.comp_23 .wa-btn.wa-btn-rounded {
    border-radius: 0.375em;
}
.comp_24 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_25 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 50px;
}
.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_27 {
    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;
}
.comp_27 .wa-txt-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}
.comp_27 .wa-txt-par.wa-last-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}
.comp_28 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_29 {
    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;
}
.comp_29 .wa-txt-par {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}
.comp_29 .wa-txt-par.wa-last-par {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}
.comp_30 {
    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;
}
.comp_30 .wa-txt-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}
.comp_30 .wa-txt-par.wa-last-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}
.comp_31 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_31 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_32 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_33 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_33 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_33 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_34 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.comp_35 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 80px;
}
.comp_36 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_36 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_36 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_37 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.comp_38 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 80px;
}
.comp_39 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_4 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.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: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_7 {
    border-radius: 6px 6px 6px 6px;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    min-height: 0rem;
}
.comp_8 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_9 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_9 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_9 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
body {
    background-image: url('');
}
@media (min-width: 992px) {
    .comp_0 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_10 {
        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;
    }
    .comp_10 .wa-txt-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_10 .wa-txt-par.wa-last-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_11 {
        border-radius: 6px 6px 6px 6px;
        margin-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
        min-height: 0rem;
    }
    .comp_12 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .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: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
    }
    .comp_14 {
        border: none;
        border-radius: 0px;
        margin-bottom: 3px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_14 .wa-txt-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_14 .wa-txt-par.wa-last-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_15 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_15 input {
        border: 1px solid #c0c0c0;
        border-radius: 3px 3px 3px 3px;
        font-size: 14px;
        height: 25px;
        margin-bottom: 0px;
        margin-top: 0px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_15 input:focus {
        border: 1px solid #51cbee;
    }
    .comp_16 {
        border: none;
        border-radius: 0px;
        margin-bottom: 3px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_16 .wa-txt-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_16 .wa-txt-par.wa-last-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_17 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_17 input {
        border: 1px solid #c0c0c0;
        border-radius: 3px 3px 3px 3px;
        font-size: 14px;
        height: 25px;
        margin-bottom: 0px;
        margin-top: 0px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_17 input:focus {
        border: 1px solid #51cbee;
    }
    .comp_18 {
        border: none;
        border-radius: 0px;
        margin-bottom: 3px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_18 .wa-txt-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_18 .wa-txt-par.wa-last-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_19 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_19 input {
        border: 1px solid #c0c0c0;
        border-radius: 3px 3px 3px 3px;
        font-size: 14px;
        height: 25px;
        margin-bottom: 0px;
        margin-top: 0px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .comp_19 input:focus {
        border: 1px solid #51cbee;
    }
    .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 {
        border: none;
        border-radius: 0px;
        margin-bottom: 3px;
        margin-top: 8px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .comp_20 .wa-txt-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_20 .wa-txt-par.wa-last-par {
        font-size: 15px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_21 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_21 textarea {
        border: 1px solid #c0c0c0;
        border-radius: 3px 3px 3px 3px;
        font-size: 14px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 50px;
        padding: 8px;
    }
    .comp_21 textarea:focus {
        border: 1px solid #51cbee;
    }
    .comp_22 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 8px;
    }
    .comp_22 .wa-btn {
        font-size: 0.75em;
    }
    .comp_22 .wa-btn.wa-btn-rounded {
        border-radius: 0.375em;
    }
    .comp_22 a {
        width: unset;
    }
    .comp_22 div {
        width: unset;
    }
    .comp_23 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .comp_23 .wa-btn {
        font-size: 0.75em;
    }
    .comp_23 .wa-btn-upload-container {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_23 .wa-btn-upload-label {
        font-size: 14px;
        margin-left: 4.2px;
    }
    .comp_23 .wa-btn.wa-btn-rounded {
        border-radius: 0.375em;
    }
    .comp_24 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_25 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 50px;
    }
    .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_27 {
        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;
    }
    .comp_27 .wa-txt-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_27 .wa-txt-par.wa-last-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .comp_28 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_29 {
        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;
    }
    .comp_29 .wa-txt-par {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }
    .comp_29 .wa-txt-par.wa-last-par {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }
    .comp_30 {
        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;
    }
    .comp_30 .wa-txt-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
    }
    .comp_30 .wa-txt-par.wa-last-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
    }
    .comp_31 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_31 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_32 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_33 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_33 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_33 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_34 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .comp_35 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 80px;
    }
    .comp_36 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_36 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_36 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_37 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .comp_38 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 80px;
    }
    .comp_39 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_4 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .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: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_7 {
        border-radius: 6px 6px 6px 6px;
        margin-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
        min-height: 0rem;
    }
    .comp_8 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_9 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_9 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_9 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    body {
        background-image: url('');
    }
}


.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_back_sep {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item {
    color: rgba(0,0,0,1);
    font-family: 'Lucida Sans';
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item a {
    color: rgba(0,0,0,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item:hover {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item:hover a {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item:hover svg {
    fill: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item:hover:not(.waf_menu_item_search) {
    background-color: rgba(187,187,187,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_generic_header {
    background-color: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
    font-family: 'Lucida Sans';
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item {
    color: rgba(17,17,17,1);
    font-family: 'Lucida Sans';
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.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_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item:hover a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item:hover svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_layout {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.blockcomp-0-comp_0 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-0-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-0-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-0-comp_10 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-0-comp_11 {
    flex-direction: column;
}
.blockcomp-0-comp_11 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_11 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-0-comp_12 {
    width: 100%;
}
.blockcomp-0-comp_12 .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_12 .waf_menu-mini-btn {
    background-color: rgba(51,178,240,1);
    border-color: rgba(119,119,119,1);
    border-style: solid;
    border-width: 1px;
}
.blockcomp-0-comp_12 .waf_menu-mini-btn-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}
.blockcomp-0-comp_12 .waf_menu-mini-btn:hover {
    background-color: rgba(60,193,229,1);
    border-color: rgba(119,119,119,1);
}
.blockcomp-0-comp_12 .waf_menu-mini-btn:hover svg path {
    fill: rgba(51,51,51,1);
}
.blockcomp-0-comp_12 nav {
    background-color: rgba(249,249,249,1);
    color: rgba(145,35,58,1);
    font-family: 'Lucida Sans';
}
.blockcomp-0-comp_12 nav > ul > li {
    align-items: center;
    display: flex;
    justify-content: start;
}
.blockcomp-0-comp_12 nav > ul > li > .waf-nav-link {
    align-items: center;
    color: rgba(145,35,58,1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_12 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    display: flex;
}
.blockcomp-0-comp_12 nav > ul > li > .waf-nav-link > .waf_menu_icn > svg {
    fill: rgba(145,35,58,1);
}
.blockcomp-0-comp_12 nav > ul > li > .waf-nav-link > .waf_menu_label {
    display: flex;
    flex-grow: 5;
}
.blockcomp-0-comp_12 nav > ul > li > .waf_menu_search {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_12 nav > ul > li:hover > .waf-nav-link {
    color: rgba(145,35,58,1);
}
.blockcomp-0-comp_12 nav > ul > li:hover > .waf-nav-link > .waf_menu_icn >svg {
    fill: rgba(145,35,58,1);
}
.blockcomp-0-comp_12 nav > ul > li:hover:not(.waf_menu_item_search) {
    background-color: rgba(6,69,201,1);
}
.blockcomp-0-comp_13 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-0-comp_14 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-0-comp_15 {
    flex-direction: column;
}
.blockcomp-0-comp_15 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_15 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-0-comp_16 {
    flex-direction: column;
}
.blockcomp-0-comp_16 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_16 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.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: flex-start;
}
.blockcomp-0-comp_3 {
    align-items: center;
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_3 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.blockcomp-0-comp_4 {
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_4 .wa-image-wrap {
    aspect-ratio: 1400/787;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 1400px) );
}
.blockcomp-0-comp_4 .wa-image-wrap > div {
    aspect-ratio: 1400/787;;
    position: relative;
    width: 100%;
}
.blockcomp-0-comp_4 .wa-image-wrap img {
    aspect-ratio: 1400/787;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-0-comp_5 {
    align-items: center;
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_5 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.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: flex-start;
}
.blockcomp-0-comp_7 {
    align-items: center;
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_7 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.blockcomp-0-comp_8 {
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_8 .wa-image-wrap {
    aspect-ratio: 166/217;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 166px) );
}
.blockcomp-0-comp_8 .wa-image-wrap > div {
    aspect-ratio: 166/217;;
    position: relative;
    width: 100%;
}
.blockcomp-0-comp_8 .wa-image-wrap img {
    aspect-ratio: 166/217;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-0-comp_9 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-0-comp_9 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-0-comp_9 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-0-comp_9 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Lucida Sans';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} ;
}
.blockcomp-0-comp_9 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3 > .waf_menu_panel_icon_wrap {
    height: 48px;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item {
    font-size: 13px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_generic_header {
    font-size: 1.3rem;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item {
    font-size: 13px;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_size {
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.blockcomp-0-comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.blockcomp-0-comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_10 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_11 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_11 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_11 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_12 {
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_12 .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_12 .waf_menu > ul {
    flex-direction: row;
    width: unset;
}
.blockcomp-0-comp_12 .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_12 .waf_menu-mini-btn {
    border-radius: 4.5px;
    height: 45px;
    width: 45px;
}
.blockcomp-0-comp_12 .waf_menu-mini-btn-wrapper {
    display: flex !important;
    justify-content: end;
}
.blockcomp-0-comp_12 nav {
    border: none;
    border-radius: 0px;
    display: none !important;
    font-size: 20px;
    justify-content: start;
    min-height: 2rem;
}
.blockcomp-0-comp_12 nav > ul > li > .waf-nav-link {
    padding-bottom: 16px;
    padding-left: 21px;
    padding-right: 21px;
    padding-top: 16px;
}
.blockcomp-0-comp_12 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    height: 20px;
    width: 20px;
}
.blockcomp-0-comp_12 nav > ul > li > .waf_menu_search {
    padding-left: 21px;
    padding-right: 21px;
}
.blockcomp-0-comp_13 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_14 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_15 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_15 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_15 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_16 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_16 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_16 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_2 {
    min-height: 0px;
    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: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_3 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.blockcomp-0-comp_4 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_4 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 1400px) );
}
.blockcomp-0-comp_5 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.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;
    min-height: 79px;
}
.blockcomp-0-comp_8 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_8 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 110px , 166px) );
}
.blockcomp-0-comp_9 {
    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-0-comp_9 .wa-txt-par {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-0-comp_9 .wa-txt-par.wa-last-par {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
}
@media (min-width: 992px) {
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3 > .waf_menu_panel_icon_wrap {
        height: 48px;
    }
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_8bff513b13194bfa9ca9c66662d972f3.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .blockcomp-0-comp_0 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-0-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_10 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_11 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_11 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_11 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_12 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_12 .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_12 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_12 .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_12 .waf_menu-mini-btn {
        border-radius: 4.5px;
        height: 45px;
        width: 45px;
    }
    .blockcomp-0-comp_12 .waf_menu-mini-btn-wrapper {
        display: none !important;
        justify-content: end;
    }
    .blockcomp-0-comp_12 nav {
        border: none;
        border-radius: 0px;
        display: flex !important;
        font-size: 20px;
        justify-content: start;
        min-height: 2rem;
    }
    .blockcomp-0-comp_12 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 21px;
        padding-right: 21px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_12 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 20px;
        width: 20px;
    }
    .blockcomp-0-comp_12 nav > ul > li > .waf_menu_search {
        padding-left: 21px;
        padding-right: 21px;
    }
    .blockcomp-0-comp_13 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_14 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_15 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_15 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_15 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_16 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_16 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_16 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_2 {
        min-height: 0px;
        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: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_3 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .blockcomp-0-comp_4 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_4 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 1400px) );
    }
    .blockcomp-0-comp_5 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .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;
        min-height: 79px;
    }
    .blockcomp-0-comp_8 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_8 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 110px , 166px) );
    }
    .blockcomp-0-comp_9 {
        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-0-comp_9 .wa-txt-par {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-0-comp_9 .wa-txt-par.wa-last-par {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }
}


.blockcomp-1-comp_0 {
    background-color: rgba(251,197,134,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-1-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-1-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.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;
    width: 100%;
}
.blockcomp-1-comp_3 .wa-image-wrap {
    aspect-ratio: 183/249;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 183px) );
}
.blockcomp-1-comp_3 .wa-image-wrap > div {
    aspect-ratio: 183/249;;
    position: relative;
    width: 100%;
}
.blockcomp-1-comp_3 .wa-image-wrap img {
    aspect-ratio: 183/249;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-1-comp_4 {
    flex-direction: column;
}
.blockcomp-1-comp_4 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_4 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_5 {
    align-items: center;
    display: flex;
    width: 100%;
}
.blockcomp-1-comp_5 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0.25098;
    width: 100%;
}
.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: 'Lucida Sans';
    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: 'Lucida Sans';
    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 {
    flex-direction: column;
}
.blockcomp-1-comp_7 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_7 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.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;
    width: 100%;
    filter: drop-shadow(7px -1px 5px #000000);
}
.blockcomp-1-comp_9 .wa-image-wrap {
    aspect-ratio: 529/472;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 529px) );
}
.blockcomp-1-comp_9 .wa-image-wrap > div {
    aspect-ratio: 529/472;;
    position: relative;
    width: 100%;
}
.blockcomp-1-comp_9 .wa-image-wrap img {
    aspect-ratio: 529/472;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-1-comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.blockcomp-1-comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_2 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.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: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_3 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-1-comp_3 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 183px) );
}
.blockcomp-1-comp_4 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-1-comp_4 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_4 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_5 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.blockcomp-1-comp_6 {
    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_6 .wa-txt-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_6 .wa-txt-par.wa-last-par {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_7 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-1-comp_7 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_7 > .wa_inner_col > .wa_inner_col2 {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_8 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.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: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_9 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-1-comp_9 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 320px , 529px) );
}
@media (min-width: 992px) {
    .blockcomp-1-comp_0 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-1-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .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: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_3 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-1-comp_3 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 140px , 183px) );
    }
    .blockcomp-1-comp_4 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_4 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_4 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_5 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .blockcomp-1-comp_6 {
        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_6 .wa-txt-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_6 .wa-txt-par.wa-last-par {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_7 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_7 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_7 > .wa_inner_col > .wa_inner_col2 {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .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: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_9 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-1-comp_9 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 180px , 529px) );
    }
}
