


/* ===== Escopo do componente ===== */
.banner{
  --peek: 28px;          /* ajuste aqui a “mordida” lateral (ex.: 40–80px) */
  --peek-snap: max(var(--peek), 1px); /* nunca 0 para o snap */
  --gap: 26px;
  --radius: 18px;
  --height: 800px;
}

/* Zera paddings do grid só neste bloco */
.banner .row, .banner [class*="col"] { padding-left:0; padding-right:0; }

/* Contêiner do carrossel (full-bleed) */
.banner #waCarousel{
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* NÃO usar margin-inline: calc(-1 * var(--peek)) aqui */
  overflow: hidden;
}

/* Faixa rolável com snapping */
.banner #waCarousel .carousel-track{
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* controla o quanto aparece dos lados */
  padding-inline: var(--peek);
  /* garante centralização no snap mesmo com peek pequeno */
  scroll-padding-inline: var(--peek-snap);

  -ms-overflow-style: none;
  scrollbar-width: none;
}
.banner #waCarousel .carousel-track::-webkit-scrollbar{ display: none; }

/* Cada slide ocupa menos que 100% para sobrar o peek */
.banner .slide{
  flex: 0 0 calc(100% - (var(--peek) * 2));
  scroll-snap-align: center;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

/* Link + imagem */
.banner .slide-link{
  display: block;
  width: 100%;
  height: var(--height);
}
.banner .slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legenda */
.banner .caption{
  position: absolute;
  left: 24px;
  bottom: 72px;
  margin: 0;
  color: #fff;
  font: 700 2.2rem/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

/* Indicadores dentro da área visível */
.banner #waCarousel .carousel-indicators{
  position: absolute;
  left:  var(--peek);
  right: var(--peek);
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
  pointer-events: auto;
}
.banner .carousel-indicators .ind{ width:40px;height:4px;border-radius:999px;background:rgba(255,255,255,.45);cursor:pointer; }
.banner .carousel-indicators .ind.active{ background:#fff; }

/* Responsivo */
@media (max-width: 1024px){ .banner{ --peek: 28px; } }
@media (max-width: 768px){
  .banner{ --peek: 20px; }
  .banner .caption{ font-size: 1.25rem; left: 16px; bottom: 66px; }
}

/* Intensidade da máscara (ajuste à vontade) */
.banner{
  --mask-top: .08;     /* parte de cima */
  --mask-bottom: .35;  /* parte de baixo (onde fica a legenda) */
}

/* Overlay em cima da imagem */
.banner .slide{
  position: relative; /* (já está) */
}
.banner .slide::after{
  content: "";
  position: absolute;
  inset: 0;
  /* gradiente sutil: transparente no topo -> mais escuro embaixo */
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / var(--mask-top)),
    rgb(0 0 0 / var(--mask-bottom))
  );
  pointer-events: none;   /* não bloqueia cliques */
  z-index: 1;
}

/* garante legenda acima da máscara */
.banner .caption{ z-index: 2; }


/* Controles rápidos (altere aqui) */
.banner{
  --caption-size: clamp(28px, 4vw, 56px); /* tamanho da fonte */
  --caption-line: 2.08;                   /* altura da linha */
  --caption-left: 64px;                   /* distância da esquerda */
  --caption-bottom: 88px;                 /* distância do fundo */
  --caption-width: 28ch;                  /* largura máx. do texto (opcional) */
}

/* Legenda */
.banner .caption{
  position: absolute;
  left: var(--caption-left);
  bottom: var(--caption-bottom);
  margin: 0;
  max-width: var(--caption-width);
  color: #fff;
  font-weight: 800;
  font-size: var(--caption-size);
  line-height: var(--caption-line);
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
  z-index: 2;
}

/* Responsivo: ajuste se quiser valores menores no mobile */
@media (max-width: 1024px){
  .banner{
    --caption-size: clamp(22px, 3.2vw, 40px);
    --caption-left: 20px;
    --caption-bottom: 66px;
    --caption-width: 26ch;
  }
}
@media (max-width: 768px){
  .banner{
    --caption-size: 22px;
    --caption-left: 16px;
    --caption-bottom: 66px;
    --caption-width: 24ch;
  }
}

/* 1) Sombra suave (recomendada) */
.banner{
  --caption-shadow:
    0 2px 4px rgba(0,0,0,.55),
    0 8px 22px rgba(0,0,0,.35);
}
.banner .caption{
  text-shadow: var(--caption-shadow);
}



/* ====== Variáveis de controle ====== */
.shelf{
  --cols: 5;                 /* quantos cards visíveis */
  --gap: 24px;               /* espaçamento entre cards */
  --radius: 22px;            /* cantos dos cards */
  --card-min: 240px;         /* largura mínima do card */
  --card-h: 420px;           /* altura da imagem */
  --btn-size: 48px;          /* tamanho dos botões */
  --btn-offset: 10px;        /* afastamento lateral dos botões */
  --fade-w: 80px;            /* largura do gradiente de fade nas bordas */
  position: relative;
}

/* 1) Borda do card (ou do tema) */
/*.shelf .card{ border: none !important; }*/

/* ====== Faixa rolável ====== */
.shelf-track{
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shelf-track::-webkit-scrollbar{ display: none; }

/* ====== Cards ====== */
.shelf .card{
  /* Largura EXATA para caberem --cols cards visíveis */
  flex: 0 0 calc((100% - (var(--gap) * (var(--cols) - 1))) / var(--cols));
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  color: #111;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 26px rgba(0,0,0,.06);
}

.shelf .media{
  display:block;
  width:100%;
  height: var(--card-h);
  object-fit: cover;
}

/* máscara leve para legibilidade */
.shelf .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0) 55%, rgb(0 0 0 / .35) 100%);
  pointer-events:none;
  z-index:1;
}

/* rodapé do card (título + seta) */
.shelf .meta{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 20px;
  background: #fafafa;
}

/* cores configuráveis */
.shelf{
  --meta-bg: #fafafa;
  --meta-fg: #111;
}

/* deixe a meta acima do overlay */
.shelf .meta{
  background: var(--meta-bg);
  color: var(--meta-fg);
  position: relative;
  z-index: 2;        /* sobe a camada */
}

/* garante que o overlay fique abaixo da meta */
.shelf .card::after{
  z-index: 1;
  pointer-events: none;
}

.shelf .title{
  margin:0;
  font: 700 1.4rem/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.shelf .go{ font-size: 1.4rem; opacity:.65; }

/* ====== Botões de navegação ====== */
.shelf .nav{
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: var(--btn-size);
  height: var(--btn-size);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  color: #111;
  cursor: pointer;
  opacity: 0;                /* aparece só no hover */
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 4;
}
.shelf .nav.next{ right: var(--btn-offset); }
.shelf .nav.prev{ left:  var(--btn-offset); }

/* Mostrar botões ao passar o mouse (e esconder quando não há mais pra rolar) */
.shelf:hover .nav{ opacity: 1; pointer-events: auto; }
.shelf.at-start .nav.prev{ opacity: 0; pointer-events: none; }
.shelf.at-end   .nav.next{ opacity: 0; pointer-events: none; }

/* Fades nas bordas para indicar continuidade */
.shelf::before,
.shelf::after{
  content:"";
  position:absolute; top:0; bottom:0; width: var(--fade-w);
  pointer-events:none;
  z-index:3;
  opacity:0; transition:opacity .2s ease;
}
.shelf::after{ right:0; background: linear-gradient(to left, #fff, rgba(255,255,255,0)); }
.shelf::before{ left:0;  background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.shelf:hover::after{ opacity: 1; }
.shelf:hover::before{ opacity: 1; }
.shelf.at-start::before{ opacity: 0; }
.shelf.at-end::after{   opacity: 0; }

/* ====== Responsivo ====== */
@media (max-width: 1280px){ .shelf{ --cols: 4; --card-h: 380px; } }
@media (max-width: 980px){  .shelf{ --cols: 3; --card-h: 340px; } }
@media (max-width: 720px){  .shelf{ --cols: 2; --card-h: 300px; } }
@media (max-width: 480px){  .shelf{ --cols: 1; --card-h: 260px; } }



.yt-wrap{
  border-radius: 24px 24px 0px 0px;   /* borda redonda */
  overflow: hidden;      /* corta os cantos do iframe */
}
.yt-wrap .yt{
  display: block;
  width: 100%;
  height: 828px;
  border: 0;             /* remove borda do iframe */
}



                                                    img{
                                                      width:100%;
                                                      display:block;
                                                    }
                                                    
                                                    #before-after-slider {
                                                      width:100%;
                                                      position:relative;
                                                      overflow:hidden;
                                                    }
                                                    
                                                    #after-image {
                                                      display:block
                                                    }
                                                    
                                                    #before-image {
                                                      position:absolute;
                                                      height:100%;
                                                      width:50%;
                                                      top:0;
                                                      left:0;
                                                      overflow:hidden;
                                                      z-index:2;
                                                    }
                                                    
                                                    #resizer {
                                                      position:absolute;
                                                      display:flex;
                                                      align-items:center;
                                                      z-index:5;
                                                      top:0;
                                                      left:50%;
                                                      height:100%;
                                                      width:5px;
                                                      background:white;
                                                      /*Stop vertical scrolling on touch*/
                                                      -ms-touch-action: pan-y;
                                                        touch-action: pan-y;
                                                    }
                                                    
                                                    #resizer:after {
                                                      background: black;
                                                      font-family: "Ropa Sans";
                                                      content:'< >';
                                                      font-weight:900;
                                                      display:flex;
                                                      justify-content:center;
                                                      align-items:center;
                                                      color:white;
                                                      position:absolute;
                                                      margin: 0 0 0 -22px;
                                                      width:50px;
                                                      height:50px;
                                                      border-radius:50%;
                                                      border:10px solid white;
                                                    
                                                    }
                                                    

.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: center;
}
.comp_11 {
    animation: fadeInRight;
    animation-duration: 1000ms;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_11 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_11 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_11 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_11 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.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: center;
}
.comp_14 {
    animation: zoomIn;
    animation-duration: 1000ms;
    display: flex;
    view-transition-name: wa-vt-5efa8b2a_ca3c_480f_b3e6_76ecb10441c9;
    width: 100%;
}
.comp_14 .wa-btn {
    background-color: rgba(255,255,255,1);
    border-color: rgba(23,23,23,1);
    color: rgba(23,23,23,1);
    font-family: 'Poppins';
    font-weight: 400;
}
.comp_14 .wa-btn.wa-btn.wa-btn-icon-left .wa-btn-icon-vector {
    margin-left: .5em;
    margin-right: .25em;
}
.comp_14 .wa-btn.wa-btn:active {
    background-color: rgba(255,255,255,1);
    border-color: rgba(23,23,23,1);
    color: rgba(23,23,23,1);
}
.comp_14 .wa-btn.wa-btn:hover {
    background-color: rgba(23,23,23,1);
    border-color: rgba(23,23,23,1);
    color: rgba(255,255,255,1);
}
.comp_14 a {
    display: flex;
    text-decoration: none;
}
.comp_14 div {
    justify-content: center;
}
.comp_15 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_15 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_16 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_17 {
    animation: fadeInUp;
    animation-duration: 1000ms;
    flex-direction: column;
}
.comp_17 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_17 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_18 {
    width: 100%;
}
.comp_19 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_19 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_2 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_2 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_20 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_21 {
    animation: fadeInUp;
    animation-duration: 1000ms;
    flex-direction: column;
}
.comp_21 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_21 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_22 {
    width: 100%;
}
.comp_23 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_23 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_24 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_25 {
    animation: fadeInUp;
    animation-duration: 1000ms;
    flex-direction: column;
}
.comp_25 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_25 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_26 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_27 {
    flex-direction: column;
}
.comp_27 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_27 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_28 {
    background-color: rgba(0,0,0,1);
    width: 100%;
}
.comp_29 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_3 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_30 {
    flex-direction: column;
}
.comp_30 > .wa_inner_col {
    background-color: rgba(255,255,255,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_30 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_31 {
    background-color: rgba(255,255,255,1);
    width: 100%;
}
.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 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_35 {
    flex-direction: column;
}
.comp_35 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_35 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_36 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_36 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_36 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_36 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_36 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_37 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_38 {
    flex-direction: column;
}
.comp_38 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_38 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_39 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_39 .wa-txt-par {
    color: rgba(175,141,105,1);
    font-family: 'Poppins';
    font-weight: 900;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_39 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_39 .wa-txt-par.wa-last-par {
    color: rgba(175,141,105,1);
    font-family: 'Poppins';
    font-weight: 900;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_39 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_4 {
    flex-direction: column;
}
.comp_4 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_4 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.comp_40 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_41 {
    flex-direction: column;
}
.comp_41 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_41 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_42 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_42 .wa-txt-par {
    color: rgba(153,153,153,1);
    font-family: 'Poppins';
    font-weight: 700;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_42 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_42 .wa-txt-par.wa-last-par {
    color: rgba(153,153,153,1);
    font-family: 'Poppins';
    font-weight: 700;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_42 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_43 {
    flex-direction: column;
}
.comp_43 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_43 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_44 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_44 .wa-txt-par {
    color: rgba(153,153,153,1);
    font-family: 'Poppins';
    font-weight: 700;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_44 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_44 .wa-txt-par.wa-last-par {
    color: rgba(153,153,153,1);
    font-family: 'Poppins';
    font-weight: 700;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_44 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_45 {
    width: 100%;
}
.comp_46 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_46 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_47 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_48 {
    animation: fadeInUp;
    animation-duration: 1000ms;
    flex-direction: column;
}
.comp_48 > .wa_inner_col {
    background-position: center top;
    background-repeat: repeat;
    background-size: cover;
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_48 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.comp_49 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_5 {
    width: 100%;
}
.comp_50 {
    flex-direction: column;
}
.comp_50 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_50 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_51 {
    line-height: 100%;
    width: 100%;
}
.comp_51 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.comp_52 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_53 {
    flex-direction: column;
}
.comp_53 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_53 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_54 {
    display: flex;
    width: 100%;
}
.comp_54 .wa-image-wrap {
    aspect-ratio: 3000/386;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 3000px) );
}
.comp_54 .wa-image-wrap > div {
    aspect-ratio: 3000/386;;
    position: relative;
    width: 100%;
}
.comp_54 .wa-image-wrap img {
    aspect-ratio: 3000/386;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.comp_55 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_56 {
    flex-direction: column;
}
.comp_56 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_56 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_57 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_57 .wa-txt-par {
    color: rgba(153,152,152,1);
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_57 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_57 .wa-txt-par.wa-last-par {
    color: rgba(153,152,152,1);
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_57 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_58 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_58 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_59 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_6 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_6 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_60 {
    flex-direction: column;
}
.comp_60 > .wa_inner_col {
    background-color: rgba(255,255,255,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_60 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.comp_61 {
    animation: zoomIn;
    animation-duration: 1000ms;
    display: flex;
    width: 100%;
}
.comp_61 .wa-image-wrap {
    aspect-ratio: 384/50;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 384px) );
}
.comp_61 .wa-image-wrap > div {
    aspect-ratio: 384/50;;
    position: relative;
    width: 100%;
}
.comp_61 .wa-image-wrap img {
    aspect-ratio: 384/50;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.comp_62 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_62 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_63 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_64 {
    animation: fadeInUp;
    animation-duration: 1000ms;
    flex-direction: column;
}
.comp_64 > .wa_inner_col {
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_64 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.comp_7 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_8 {
    flex-direction: column;
}
.comp_8 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_8 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.comp_9 {
    animation: fadeInLeft;
    animation-duration: 1000ms;
    display: flex;
    width: 100%;
}
.comp_9 .wa-image-wrap {
    aspect-ratio: 2316/818;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 2316px) );
}
.comp_9 .wa-image-wrap > div {
    aspect-ratio: 2316/818;;
    position: relative;
    width: 100%;
}
.comp_9 .wa-image-wrap img {
    aspect-ratio: 2316/818;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
body {
    background-color: rgba(255,255,255,1);
}
.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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 0rem;
}
.comp_11 {
    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_11 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: justify;
}
.comp_11 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: justify;
}
.comp_12 {
    display: flex;
    margin-bottom: 50px !important;
    margin-top: 25px !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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_14 {
    justify-content: flex-start;
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_14 .wa-btn {
    font-size: 1.5em;
}
.comp_14 a {
    width: unset;
}
.comp_14 div {
    width: unset;
}
.comp_15 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_15 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_16 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_17 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_17 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_17 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_18 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 300px;
}
.comp_19 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_19 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 4rem;
}
.comp_2 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_2 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_20 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_21 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_21 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_21 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_22 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.comp_23 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_23 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_24 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_25 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_25 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_25 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_26 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_27 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_27 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_27 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_28 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 60px;
}
.comp_29 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: -25px !important;
}
.comp_3 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_30 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_30 > .wa_inner_col {
    border: none;
    border-radius: 2rem 2rem 0rem 0rem;
}
.comp_30 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_31 {
    border: none;
    border-radius: 2rem 2rem 0rem 0rem;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.comp_32 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: -25px !important;
}
.comp_33 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_33 > .wa_inner_col {
    border: none;
    border-radius: 2rem 2rem 0rem 0rem;
}
.comp_33 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_34 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_35 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_35 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_35 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_36 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_36 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_36 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_37 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_38 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_38 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_38 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_39 {
    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: 0px;
}
.comp_39 .wa-txt-par {
    font-size: 38px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_39 .wa-txt-par.wa-last-par {
    font-size: 38px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_4 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_4 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_4 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_40 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_41 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_41 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_41 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_42 {
    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_42 .wa-txt-par {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_42 .wa-txt-par.wa-last-par {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_43 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_43 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_43 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_44 {
    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_44 .wa-txt-par {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_44 .wa-txt-par.wa-last-par {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_45 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 400px;
}
.comp_46 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_46 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_47 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_48 {
    min-height: 700px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_48 > .wa_inner_col {
    background-image: url('../../icons/banner5.webp?t=19431c0d_4ea3_4d7b_99b1_0dd00b0fc8b6');
    border: none;
    border-radius: 2rem 2rem 0rem 0rem;
}
.comp_48 > .wa_inner_col > .wa_inner_col2 {
    gap: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_49 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_5 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 300px;
}
.comp_50 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_50 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_50 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_51 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.comp_51 .wa-v-icon-wrapper {
    align-items: center;
    height: 4rem;
    justify-content: center;
}
.comp_51 .wa-v-icon-wrapper i {
    font-size: 4rem;
}
.comp_52 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_53 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_53 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_53 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_54 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_54 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 3000px) );
}
.comp_55 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_56 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_56 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_56 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_57 {
    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_57 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_57 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_58 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_58 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_59 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_6 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_6 > .innerBox {
    margin-bottom: 2rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 2rem;
}
.comp_60 {
    min-height: 200px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_60 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_60 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_61 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_61 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 384px) );
}
.comp_62 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_62 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_63 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_64 {
    min-height: 700px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_64 > .wa_inner_col {
    background-image: url('../../icons/banner2_800.png?t=19431c0d_4ea3_4d7b_99b1_0dd00b0fc8b6');
    border: none;
    border-radius: 2rem 2rem 0rem 0rem;
}
.comp_64 > .wa_inner_col > .wa_inner_col2 {
    gap: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_7 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_8 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_8 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_8 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_9 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_9 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 2316px) );
}
body {
    background-image: url('');
}
@media (min-width: 992px) {
    .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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 4rem;
        margin-right: 4rem;
        margin-top: 0rem;
    }
    .comp_11 {
        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_11 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: justify;
    }
    .comp_11 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: justify;
    }
    .comp_12 {
        display: flex;
        margin-bottom: 50px !important;
        margin-top: 25px !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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_14 {
        justify-content: flex-start;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_14 .wa-btn {
        font-size: 1.5em;
    }
    .comp_14 a {
        width: unset;
    }
    .comp_14 div {
        width: unset;
    }
    .comp_15 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_15 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_16 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_17 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_17 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_17 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_18 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 350px;
    }
    .comp_19 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_19 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 4rem;
    }
    .comp_2 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_2 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_20 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_21 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_21 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_21 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_22 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .comp_23 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_23 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_24 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_25 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_25 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_25 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_26 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_27 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_27 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_27 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_28 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 60px;
    }
    .comp_29 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: -25px !important;
    }
    .comp_3 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_30 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_30 > .wa_inner_col {
        border: none;
        border-radius: 2rem 2rem 0rem 0rem;
    }
    .comp_30 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_31 {
        border: none;
        border-radius: 2rem 2rem 0rem 0rem;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .comp_32 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: -25px !important;
    }
    .comp_33 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_33 > .wa_inner_col {
        border: none;
        border-radius: 2rem 2rem 0rem 0rem;
    }
    .comp_33 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_34 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_35 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_35 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_35 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_36 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 5px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_36 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_36 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_37 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_38 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_38 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_38 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_39 {
        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: 0px;
    }
    .comp_39 .wa-txt-par {
        font-size: 56px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_39 .wa-txt-par.wa-last-par {
        font-size: 56px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_4 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_4 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_4 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_40 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_41 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_41 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_41 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_42 {
        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_42 .wa-txt-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_42 .wa-txt-par.wa-last-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_43 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_43 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_43 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_44 {
        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_44 .wa-txt-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_44 .wa-txt-par.wa-last-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_45 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 400px;
    }
    .comp_46 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_46 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_47 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_48 {
        min-height: 700px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_48 > .wa_inner_col {
        background-image: url('../../icons/banner5.webp?t=19431c0d_4ea3_4d7b_99b1_0dd00b0fc8b6');
        border: none;
        border-radius: 2rem 2rem 0rem 0rem;
    }
    .comp_48 > .wa_inner_col > .wa_inner_col2 {
        gap: 0rem;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_49 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_5 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 800px;
    }
    .comp_50 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_50 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_50 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_51 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .comp_51 .wa-v-icon-wrapper {
        align-items: center;
        height: 4rem;
        justify-content: center;
    }
    .comp_51 .wa-v-icon-wrapper i {
        font-size: 4rem;
    }
    .comp_52 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_53 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_53 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_53 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_54 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_54 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 3000px) );
    }
    .comp_55 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_56 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_56 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_56 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_57 {
        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_57 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_57 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_58 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_58 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_59 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_6 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_6 > .innerBox {
        margin-bottom: 2rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 2rem;
    }
    .comp_60 {
        min-height: 200px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_60 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_60 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_61 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_61 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 384px) );
    }
    .comp_62 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_62 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_63 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_64 {
        min-height: 700px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_64 > .wa_inner_col {
        background-image: url('../../icons/banner2_800.png?t=19431c0d_4ea3_4d7b_99b1_0dd00b0fc8b6');
        border: none;
        border-radius: 2rem 2rem 0rem 0rem;
    }
    .comp_64 > .wa_inner_col > .wa_inner_col2 {
        gap: 0rem;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_7 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_8 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_8 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_8 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 4rem;
        margin-right: 4rem;
        margin-top: 0rem;
    }
    .comp_9 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_9 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 2316px) );
    }
    body {
        background-image: url('');
    }
}



.blockcomp-0-comp_13 {
                                    	line-height: 50px;
                                    	background-color: transparent;
                                    	color: #ffffff;
                                        white-space: nowrap;
                                        overflow: hidden;
                                        box-sizing: border-box;
                                        font-family: "Ropa sans";
                                        font-size: 18px;
                                    }
                                    .marquee p {
                                        display: inline-block;
                                        padding-left: 100%;
                                        animation: marquee 30s linear infinite;
                                    }
                                    @keyframes marquee {
                                        0%   { transform: translate(0, 0); }
                                        100% { transform: translate(-100%, 0); }
                                    }

.blockcomp-0-comp_0 {
    background: linear-gradient(90deg,#f41647 4%, #bd002f 62%);
    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 {
    flex-direction: column;
}
.blockcomp-0-comp_10 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_10 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_11 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-0-comp_11 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-0-comp_12 {
    flex-direction: column;
}
.blockcomp-0-comp_12 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_12 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_13 {
    width: 100%;
}
.blockcomp-0-comp_14 {
    flex-direction: column;
}
.blockcomp-0-comp_14 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_14 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_15 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.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: center;
}
.blockcomp-0-comp_17 {
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_17 .wa-image-wrap {
    aspect-ratio: 125/123;;
    box-sizing: content-box;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 125px) );
}
.blockcomp-0-comp_17 .wa-image-wrap > div {
    aspect-ratio: 125/123;;
    position: relative;
    width: 100%;
}
.blockcomp-0-comp_17 .wa-image-wrap img {
    aspect-ratio: 125/123;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-0-comp_18 {
    flex-direction: column;
}
.blockcomp-0-comp_18 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_18 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-0-comp_19 {
    display: flex;
    width: 100%;
}
.blockcomp-0-comp_19 .wa-image-wrap {
    aspect-ratio: 123/122;;
    box-sizing: content-box;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 123px) );
}
.blockcomp-0-comp_19 .wa-image-wrap > div {
    aspect-ratio: 123/122;;
    position: relative;
    width: 100%;
}
.blockcomp-0-comp_19 .wa-image-wrap img {
    aspect-ratio: 123/122;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.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 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.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 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-0-comp_5 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    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: center;
}
.blockcomp-0-comp_7 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-0-comp_7 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.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 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-0-comp_9 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-0-comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 70px;
}
.blockcomp-0-comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 0px;
}
.blockcomp-0-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_10 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_10 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_10 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_11 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-0-comp_11 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.3rem;
    justify-content: center;
}
.blockcomp-0-comp_11 .wa-v-icon-wrapper i {
    font-size: 1.3rem;
}
.blockcomp-0-comp_12 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_12 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_12 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_13 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-0-comp_14 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_14 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_14 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_15 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_17 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_17 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 125px) );
}
.blockcomp-0-comp_18 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-0-comp_18 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-0-comp_18 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_19 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_19 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 123px) );
}
.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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_3 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_5 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-0-comp_5 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.3rem;
    justify-content: center;
}
.blockcomp-0-comp_5 .wa-v-icon-wrapper i {
    font-size: 1.3rem;
}
.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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_7 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-0-comp_7 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.3rem;
    justify-content: center;
}
.blockcomp-0-comp_7 .wa-v-icon-wrapper i {
    font-size: 1.3rem;
}
.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 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_9 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-0-comp_9 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.3rem;
    justify-content: center;
}
.blockcomp-0-comp_9 .wa-v-icon-wrapper i {
    font-size: 1.3rem;
}
@media (min-width: 992px) {
    .blockcomp-0-comp_0 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 70px;
    }
    .blockcomp-0-comp_0 > .innerBox {
        margin-bottom: 1rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 15px;
    }
    .blockcomp-0-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_10 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_10 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_10 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_11 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-0-comp_11 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.3rem;
        justify-content: center;
    }
    .blockcomp-0-comp_11 .wa-v-icon-wrapper i {
        font-size: 1.3rem;
    }
    .blockcomp-0-comp_12 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_12 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_12 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_13 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-0-comp_14 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_14 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_14 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_15 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_17 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_17 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 125px) );
    }
    .blockcomp-0-comp_18 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-0-comp_18 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-0-comp_18 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_19 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_19 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 123px) );
    }
    .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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_3 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_5 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-0-comp_5 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.3rem;
        justify-content: center;
    }
    .blockcomp-0-comp_5 .wa-v-icon-wrapper i {
        font-size: 1.3rem;
    }
    .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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_7 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-0-comp_7 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.3rem;
        justify-content: center;
    }
    .blockcomp-0-comp_7 .wa-v-icon-wrapper i {
        font-size: 1.3rem;
    }
    .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 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_9 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-0-comp_9 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.3rem;
        justify-content: center;
    }
    .blockcomp-0-comp_9 .wa-v-icon-wrapper i {
        font-size: 1.3rem;
    }
}


.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_back_sep {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item {
    color: rgba(0,0,0,1);
    font-family: 'Poppins';
    font-weight: 400;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item a {
    color: rgba(0,0,0,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item:hover {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item:hover a {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item:hover svg {
    fill: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item:hover:not(.waf_menu_item_search) {
    background-color: rgba(31,31,31,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_generic_header {
    background-color: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item {
    color: rgba(17,17,17,1);
    font-family: 'Poppins';
    font-weight: 400;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item:hover {
    background-color: rgba(199,0,0,1);
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item:hover a {
    color: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item:hover svg {
    fill: rgba(255,255,255,1);
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_layout {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.blockcomp-1-comp_0 {
    background: linear-gradient(90deg,#f41647 4%, #bd002f 60%);
    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 {
    background-color: rgba(255,255,255,1);
    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: center;
}
.blockcomp-1-comp_3 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.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: center;
}
.blockcomp-1-comp_5 {
    display: flex;
    width: 100%;
}
.blockcomp-1-comp_5 .wa-image-wrap {
    aspect-ratio: 384/50;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 384px) );
}
.blockcomp-1-comp_5 .wa-image-wrap > div {
    aspect-ratio: 384/50;;
    position: relative;
    width: 100%;
}
.blockcomp-1-comp_5 .wa-image-wrap img {
    aspect-ratio: 384/50;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-1-comp_6 {
    flex-direction: column;
}
.blockcomp-1-comp_6 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_6 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-1-comp_7 {
    width: 100%;
}
.blockcomp-1-comp_7 .waf_menu {
    --bubble-bg-color: rgba(255,255,255,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-brand-icon: ../wa_res/icons/nova_logo_branco.png !important;
    --panel-header-text-color: rgba(255,255,255,1);
    --panel-orientation: left;
    --panel-text-color: rgba(17,17,17,1);
}
.blockcomp-1-comp_7 .waf_menu-mini-btn {
    background-color: rgba(31,31,31,0);
    border-color: rgba(31,31,31,1);
    border-style: solid;
    border-width: 1px;
}
.blockcomp-1-comp_7 .waf_menu-mini-btn-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}
.blockcomp-1-comp_7 .waf_menu-mini-btn:hover {
    background-color: rgba(31,31,31,0);
    border-color: rgba(31,31,31,1);
}
.blockcomp-1-comp_7 .waf_menu-mini-btn:hover svg path {
    fill: rgba(31,31,31,1);
}
.blockcomp-1-comp_7 nav {
    color: rgba(0,0,0,1);
    font-family: 'Poppins';
    font-weight: 400;
}
.blockcomp-1-comp_7 nav > ul > li {
    align-items: center;
    display: flex;
    justify-content: start;
}
.blockcomp-1-comp_7 nav > ul > li > .waf-nav-link {
    align-items: center;
    color: rgba(0,0,0,1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-1-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    display: flex;
}
.blockcomp-1-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn > svg {
    fill: rgba(0,0,0,1);
}
.blockcomp-1-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_label {
    display: flex;
    flex-grow: 5;
}
.blockcomp-1-comp_7 nav > ul > li > .waf_menu_search {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-1-comp_7 nav > ul > li:hover > .waf-nav-link {
    color: rgba(255,255,255,1);
}
.blockcomp-1-comp_7 nav > ul > li:hover > .waf-nav-link > .waf_menu_icn >svg {
    fill: rgba(255,255,255,1);
}
.blockcomp-1-comp_7 nav > ul > li:hover:not(.waf_menu_item_search) {
    background-color: rgba(0,0,0,1);
}
.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: center;
}
.blockcomp-1-comp_9 {
    width: 100%;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0 > .waf_menu_panel_icon_wrap {
    height: 48px;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item {
    font-size: 16px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item a {
    font-size: 16px;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_generic_header {
    font-size: 1.3rem;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item {
    font-size: 16px;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item a {
    font-size: 16px;
}
.COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_size {
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 16px;
}
.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: -10px !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: 2rem 2rem 0rem 0rem;
}
.blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
    gap: 0rem;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 1rem;
}
.blockcomp-1-comp_3 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.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 {
    gap: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_5 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-1-comp_5 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 170px , 384px) );
}
.blockcomp-1-comp_6 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_6 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_6 > .wa_inner_col > .wa_inner_col2 {
    gap: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_7 {
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-1-comp_7 .waf_menu {
    --bubble-content-column: 1;
    --bubble-content-font-size: 6.4px;
    --bubble-content-width: 350px;
    --bubble-flow-horz: 1;
    --panel-content-font-size: 6.4px;
    --panel-content-width: 380px;
}
.blockcomp-1-comp_7 .waf_menu > ul {
    flex-direction: row;
    width: unset;
}
.blockcomp-1-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-1-comp_7 .waf_menu-mini-btn {
    border-radius: 5.5px;
    height: 55px;
    width: 55px;
}
.blockcomp-1-comp_7 .waf_menu-mini-btn-wrapper {
    display: flex !important;
    justify-content: end;
}
.blockcomp-1-comp_7 nav {
    border: none;
    border-radius: 0px;
    display: none !important;
    font-size: 18px;
    justify-content: center;
    min-height: 2rem;
}
.blockcomp-1-comp_7 nav > ul > li > .waf-nav-link {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    height: 18px;
    width: 18px;
}
.blockcomp-1-comp_7 nav > ul > li > .waf_menu_search {
    padding-left: 16px;
    padding-right: 16px;
}
.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 {
    gap: 0rem;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
}
.blockcomp-1-comp_9 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
@media (min-width: 992px) {
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0 > .waf_menu_panel_icon_wrap {
        height: 48px;
    }
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item {
        font-size: 16px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_bubble_item a {
        font-size: 16px;
    }
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 16px;
    }
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 16px;
    }
    .COMP_MENU_MATCHER_090f9bc4872041c7860e39ccc4bd2cc0.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 16px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 16px;
    }
    .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: -10px !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: 2rem 2rem 0rem 0rem;
    }
    .blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
        gap: 0rem;
        margin-bottom: 1rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 1rem;
    }
    .blockcomp-1-comp_3 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .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 {
        gap: 0rem;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_5 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-1-comp_5 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 170px , 384px) );
    }
    .blockcomp-1-comp_6 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_6 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_6 > .wa_inner_col > .wa_inner_col2 {
        gap: 0rem;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_7 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-1-comp_7 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 6.4px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 6.4px;
        --panel-content-width: 380px;
    }
    .blockcomp-1-comp_7 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-1-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-1-comp_7 .waf_menu-mini-btn {
        border-radius: 5.5px;
        height: 55px;
        width: 55px;
    }
    .blockcomp-1-comp_7 .waf_menu-mini-btn-wrapper {
        display: none !important;
        justify-content: end;
    }
    .blockcomp-1-comp_7 nav {
        border: none;
        border-radius: 0px;
        display: flex !important;
        font-size: 18px;
        justify-content: center;
        min-height: 2rem;
    }
    .blockcomp-1-comp_7 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_7 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 18px;
        width: 18px;
    }
    .blockcomp-1-comp_7 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
    .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 {
        gap: 0rem;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 100px;
        margin-top: 0px;
    }
    .blockcomp-1-comp_9 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
}



/* ====== Fita dupla com rolagem infinita (CONSOLIDADO) ====== */
.fita {
  /* Cores */
  --red-start: #FD5050;   /* vermelho mais claro à ESQ */
  --red-mid:   #d31717;   /* (opcional) ponto médio */
  --red-end:   #8c0a0a;   /* vermelho mais forte à DIR */
  --gray-start:#f0f0f0;
  --gray-end:  #dcdcdc;
  --logo-gap: 110px;   /* <<< espaço entre as logos */
  --gray-logo-opacity: .05;   /* ajuste entre .35 e .85 conforme desejar */

  /* Dimensões/velocidade */
  --height: 140px;        /* altura de cada fita */
  --logo-h: 60px;         /* <<< altura real das LOGOS */
  --gap: 0px;             /* espaço entre as fitas */
  --speed: 20;            /* px/seg (JS usa para calcular duração) */

  /* Layout (modo CONTIDO: respeita margens do container) */
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0;
  --bleed: 6vw;           /* pequena sobra para não aparecer “mordida” nas pontas */
}

/* Cada fita (camada) */
.fita .ribbon {
  position: relative;
  height: var(--height);
  width: calc(100% + var(--bleed) * 2);
  margin-left: calc(var(--bleed) * -1);
  overflow: hidden;       /* evita que as logos escapem verticalmente */
  transform-origin: center;
  border-radius: 0;       /* evita corte nas extremidades inclinadas */
  -webkit-mask-image: none;
  mask-image: none;
}

/* Pausa no hover (individual por fita) */
.fita .ribbon-red:hover  .track,
.fita .ribbon-gray:hover .track { animation-play-state: paused; }

/* Cores de fundo */
.fita .ribbon-red {
  background: linear-gradient(90deg,
    var(--red-start) 0%,
    var(--red-mid)   50%,
    var(--red-end)   100%
  );
  z-index: 2;
}
.fita .ribbon-gray {
  background: linear-gradient(90deg, var(--gray-start), var(--gray-end));
  margin-top: var(--gap);
  z-index: 1;
  /*filter: grayscale(60%);*/
}

.fita .ribbon-gray .item img{
  opacity: var(--gray-logo-opacity);     /* controla “transparência” das logos */
  filter: grayscale(100%) contrast(0.95) brightness(0.9);
  /* se quiser mais “presença”, aumente a opacidade (.75/.8) ou o contrast(1.1) */

}

/* Inclinações independentes */
.fita .ribbon-red  { --skew-local: -3deg; } /* ajuste à vontade */
.fita .ribbon-gray { --skew-local:  3deg;  } /* ajuste à vontade */
.fita .ribbon      { transform: skewY(var(--skew-local)); 

}

/* Trilha que se move */
.fita .track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  gap: var(--logo-gap);     /* antes era 56px fixo */
  /*gap: 56px;                   /* espaço entre logos */
  transform: translateY(-50%); /* centra verticalmente */
  will-change: transform;
  animation: scroll-left var(--duration, 30s) linear infinite; /* duração vem do JS */
}

/* Direções (sentidos opostos) */
.fita .ribbon-red  .track { animation-name: scroll-right; }
.fita .ribbon-gray .track { animation-name: scroll-left;  }

/* Cada logo (tamanho fixo, centralizada) */
.fita .item {
  flex: 0 0 auto;
  height: var(--logo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewY(calc(-1 * var(--skew-local))); /* “desinclina” o conteúdo */
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.05));
 
}

/* Imagem da logo */
.fita .item img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Animações esquerda↔direita com conteúdo duplicado (feito no JS) */
@keyframes scroll-left {
  from { transform: translate(-0%,  -50%); }
  to   { transform: translate(-50%, -50%); } /* move metade pois a trilha está duplicada */
}
@keyframes scroll-right {
  from { transform: translate(-50%, -50%); }
  to   { transform: translate(0%,   -50%); }
}

/* Responsivo */
@media (max-width: 1024px) {
  .fita { --height: 110px; --logo-h: 40px; }
}
@media (max-width: 640px) {
  .fita { --height: 90px; --logo-h: 34px; --gap: 10px; }
  .fita .track { gap: 40px; }
}


.blockcomp-2-comp_0 {
    background-color: rgba(31,31,31,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-2-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-2-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_10 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-2-comp_10 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-2-comp_11 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_12 {
    flex-direction: column;
}
.blockcomp-2-comp_12 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_12 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_13 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_14 {
    flex-direction: column;
}
.blockcomp-2-comp_14 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_14 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_15 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-2-comp_15 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_15 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_15 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_15 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_16 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_17 {
    flex-direction: column;
}
.blockcomp-2-comp_17 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_17 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_18 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-2-comp_18 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_18 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_18 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_18 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_19 {
    flex-direction: column;
}
.blockcomp-2-comp_19 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_19 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_2 {
    flex-direction: column;
}
.blockcomp-2-comp_2 > .wa_inner_col {
    background-color: rgba(255,255,255,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_20 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_21 {
    flex-direction: column;
}
.blockcomp-2-comp_21 > .wa_inner_col {
    background-color: rgba(246,246,246,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_21 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-2-comp_22 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-2-comp_22 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-2-comp_23 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_24 {
    flex-direction: column;
}
.blockcomp-2-comp_24 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_24 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_25 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_26 {
    flex-direction: column;
}
.blockcomp-2-comp_26 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_26 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_27 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-2-comp_27 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_27 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_27 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_27 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_28 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_29 {
    flex-direction: column;
}
.blockcomp-2-comp_29 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_29 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_3 {
    width: 100%;
}
.blockcomp-2-comp_30 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-2-comp_30 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_30 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_30 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_30 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_31 {
    flex-direction: column;
}
.blockcomp-2-comp_31 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_31 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_32 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_33 {
    flex-direction: column;
}
.blockcomp-2-comp_33 > .wa_inner_col {
    background-color: rgba(246,246,246,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_33 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-2-comp_34 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_35 {
    flex-direction: column;
}
.blockcomp-2-comp_35 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_35 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_36 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-2-comp_36 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-2-comp_37 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_38 {
    flex-direction: column;
}
.blockcomp-2-comp_38 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_38 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_39 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_4 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_40 {
    flex-direction: column;
}
.blockcomp-2-comp_40 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_40 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_41 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-2-comp_41 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_41 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_41 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_41 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_42 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_43 {
    flex-direction: column;
}
.blockcomp-2-comp_43 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_43 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_44 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-2-comp_44 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_44 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_44 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-2-comp_44 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: bolder;
    text-decoration: underline;
}
.blockcomp-2-comp_5 {
    flex-direction: column;
}
.blockcomp-2-comp_5 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_5 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-2-comp_6 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_7 {
    flex-direction: column;
}
.blockcomp-2-comp_7 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_7 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-2-comp_8 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-2-comp_9 {
    flex-direction: column;
}
.blockcomp-2-comp_9 > .wa_inner_col {
    background-color: rgba(246,246,246,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-2-comp_9 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-2-comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 800px;
}
.blockcomp-2-comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: -25px !important;
}
.blockcomp-2-comp_10 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-2-comp_10 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.5rem;
    justify-content: center;
}
.blockcomp-2-comp_10 .wa-v-icon-wrapper i {
    font-size: 1.5rem;
}
.blockcomp-2-comp_11 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_12 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_12 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_12 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_13 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_14 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_14 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_14 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_15 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.blockcomp-2-comp_15 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_15 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_16 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_17 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_17 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_17 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_18 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.blockcomp-2-comp_18 .wa-txt-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_18 .wa-txt-par.wa-last-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_19 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_19 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_19 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 2rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_2 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_2 > .wa_inner_col {
    border: none;
    border-radius: 2rem 2rem 2rem 2rem;
}
.blockcomp-2-comp_2 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 8rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 8rem;
}
.blockcomp-2-comp_20 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_21 {
    min-height: 220px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_21 > .wa_inner_col {
    border: none;
    border-radius: 1rem 1rem 1rem 1rem;
}
.blockcomp-2-comp_21 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
.blockcomp-2-comp_22 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-2-comp_22 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.5rem;
    justify-content: center;
}
.blockcomp-2-comp_22 .wa-v-icon-wrapper i {
    font-size: 1.5rem;
}
.blockcomp-2-comp_23 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_24 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_24 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_24 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_25 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_26 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_26 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_26 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_27 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.blockcomp-2-comp_27 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_27 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_28 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_29 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_29 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_29 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_3 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.blockcomp-2-comp_30 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.blockcomp-2-comp_30 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_30 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_31 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_31 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_31 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 2rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_32 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_33 {
    min-height: 220px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_33 > .wa_inner_col {
    border: none;
    border-radius: 1rem 1rem 1rem 1rem;
}
.blockcomp-2-comp_33 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
.blockcomp-2-comp_34 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_35 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_35 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_35 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_36 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-2-comp_36 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.5rem;
    justify-content: center;
}
.blockcomp-2-comp_36 .wa-v-icon-wrapper i {
    font-size: 1.5rem;
}
.blockcomp-2-comp_37 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_38 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_38 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_38 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_39 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_4 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 200px !important;
}
.blockcomp-2-comp_40 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_40 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_40 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_41 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.blockcomp-2-comp_41 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_41 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_42 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_43 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_43 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_43 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_44 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.blockcomp-2-comp_44 .wa-txt-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_44 .wa-txt-par.wa-last-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-2-comp_5 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_5 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_5 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_6 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_7 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_7 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-2-comp_7 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 2rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-2-comp_8 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-2-comp_9 {
    min-height: 220px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-2-comp_9 > .wa_inner_col {
    border: none;
    border-radius: 1rem 1rem 1rem 1rem;
}
.blockcomp-2-comp_9 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .blockcomp-2-comp_0 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 800px;
    }
    .blockcomp-2-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: -25px !important;
    }
    .blockcomp-2-comp_10 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-2-comp_10 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.5rem;
        justify-content: center;
    }
    .blockcomp-2-comp_10 .wa-v-icon-wrapper i {
        font-size: 1.5rem;
    }
    .blockcomp-2-comp_11 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_12 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_12 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_12 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_13 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_14 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_14 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_14 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_15 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .blockcomp-2-comp_15 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_15 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_16 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_17 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_17 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_17 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_18 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .blockcomp-2-comp_18 .wa-txt-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_18 .wa-txt-par.wa-last-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_19 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_19 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_19 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 2rem 2rem 2rem 2rem;
    }
    .blockcomp-2-comp_2 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 8rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 8rem;
    }
    .blockcomp-2-comp_20 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_21 {
        min-height: 220px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_21 > .wa_inner_col {
        border: none;
        border-radius: 1rem 1rem 1rem 1rem;
    }
    .blockcomp-2-comp_21 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
    }
    .blockcomp-2-comp_22 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-2-comp_22 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.5rem;
        justify-content: center;
    }
    .blockcomp-2-comp_22 .wa-v-icon-wrapper i {
        font-size: 1.5rem;
    }
    .blockcomp-2-comp_23 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_24 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_24 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_24 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_25 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_26 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_26 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_26 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_27 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .blockcomp-2-comp_27 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_27 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_28 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_29 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_29 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_29 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_3 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .blockcomp-2-comp_30 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .blockcomp-2-comp_30 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_30 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_31 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_31 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_31 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_32 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_33 {
        min-height: 220px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_33 > .wa_inner_col {
        border: none;
        border-radius: 1rem 1rem 1rem 1rem;
    }
    .blockcomp-2-comp_33 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
    }
    .blockcomp-2-comp_34 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_35 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_35 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_35 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_36 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-2-comp_36 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.5rem;
        justify-content: center;
    }
    .blockcomp-2-comp_36 .wa-v-icon-wrapper i {
        font-size: 1.5rem;
    }
    .blockcomp-2-comp_37 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_38 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_38 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_38 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_39 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_4 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 200px !important;
    }
    .blockcomp-2-comp_40 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_40 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_40 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_41 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .blockcomp-2-comp_41 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_41 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_42 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_43 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_43 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_43 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_44 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }
    .blockcomp-2-comp_44 .wa-txt-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_44 .wa-txt-par.wa-last-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-2-comp_5 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_5 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_5 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_6 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_7 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_7 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-2-comp_7 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-2-comp_8 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-2-comp_9 {
        min-height: 220px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-2-comp_9 > .wa_inner_col {
        border: none;
        border-radius: 1rem 1rem 1rem 1rem;
    }
    .blockcomp-2-comp_9 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
    }
}


.blockcomp-3-comp_0 {
    background-color: rgba(31,31,31,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-3-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-3-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_10 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-3-comp_10 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_10 .wa-txt-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-3-comp_10 .wa-txt-par a:hover {
    color: rgba(199,0,0,1);
    text-decoration: none;
}
.blockcomp-3-comp_10 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_10 .wa-txt-par.wa-last-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-3-comp_10 .wa-txt-par.wa-last-par a:hover {
    color: rgba(199,0,0,1);
    text-decoration: none;
}
.blockcomp-3-comp_11 {
    flex-direction: column;
}
.blockcomp-3-comp_11 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_11 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_12 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_13 {
    flex-direction: column;
}
.blockcomp-3-comp_13 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_13 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_14 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-3-comp_14 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_14 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_14 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_14 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_15 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_16 {
    flex-direction: column;
}
.blockcomp-3-comp_16 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_16 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_17 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-3-comp_17 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_17 .wa-txt-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-3-comp_17 .wa-txt-par a:hover {
    color: rgba(199,0,0,1);
    text-decoration: none;
}
.blockcomp-3-comp_17 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_17 .wa-txt-par.wa-last-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-3-comp_17 .wa-txt-par.wa-last-par a:hover {
    color: rgba(199,0,0,1);
    text-decoration: none;
}
.blockcomp-3-comp_18 {
    flex-direction: column;
}
.blockcomp-3-comp_18 > .wa_inner_col {
    border-style: solid;
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_18 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_19 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_2 {
    flex-direction: column;
}
.blockcomp-3-comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_20 {
    flex-direction: column;
}
.blockcomp-3-comp_20 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_20 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_21 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-3-comp_21 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_21 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_21 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_21 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_22 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_23 {
    flex-direction: column;
}
.blockcomp-3-comp_23 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_23 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_24 {
    background-color: rgba(255,255,255,0);
    overflow: hidden;
    transform: translateZ(0);
}
.blockcomp-3-comp_25 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_26 {
    flex-direction: column;
}
.blockcomp-3-comp_26 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_26 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_27 {
    width: 100%;
}
.blockcomp-3-comp_27 input {
    background-color: rgba(41,41,41,1);
    color: rgba(92,92,92,1);
    font-family: 'Poppins';
    font-weight: 400;
    outline: none;
    transition: border 0.2s,box-shadow 0.2s;
    width: 100%;
}
.blockcomp-3-comp_27 input:focus {
    box-shadow: 0 0 5px rgba(204,6,54,1) !important;
}
.blockcomp-3-comp_28 {
    display: flex;
    width: 100%;
}
.blockcomp-3-comp_28 .wa-btn {
    background-color: rgba(204,6,54,1);
    border-color: rgba(192,192,192,0);
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
}
.blockcomp-3-comp_28 .wa-btn.wa-btn.wa-btn-icon-left .wa-btn-icon-vector {
    margin-left: .5em;
    margin-right: .25em;
}
.blockcomp-3-comp_28 .wa-btn.wa-btn:active {
    background-color: rgba(204,6,54,1);
    border-color: rgba(192,192,192,0);
    color: rgba(255,255,255,1);
}
.blockcomp-3-comp_28 .wa-btn.wa-btn:hover {
    background-color: rgba(244,22,71,1);
    border-color: rgba(192,192,192,0);
    color: rgba(255,255,255,1);
}
.blockcomp-3-comp_28 a {
    display: flex;
    text-decoration: none;
}
.blockcomp-3-comp_28 div {
    justify-content: center;
}
.blockcomp-3-comp_29 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_3 {
    display: flex;
    width: 100%;
}
.blockcomp-3-comp_3 .wa-image-wrap {
    aspect-ratio: 768/100;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 768px) );
}
.blockcomp-3-comp_3 .wa-image-wrap > div {
    aspect-ratio: 768/100;;
    position: relative;
    width: 100%;
}
.blockcomp-3-comp_3 .wa-image-wrap img {
    aspect-ratio: 768/100;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-3-comp_30 {
    flex-direction: column;
}
.blockcomp-3-comp_30 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_30 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_31 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_32 {
    flex-direction: column;
}
.blockcomp-3-comp_32 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_32 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_33 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-3-comp_33 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-3-comp_34 {
    flex-direction: column;
}
.blockcomp-3-comp_34 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_34 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_35 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-3-comp_35 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-3-comp_36 {
    flex-direction: column;
}
.blockcomp-3-comp_36 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_36 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_37 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-3-comp_37 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-3-comp_38 {
    flex-direction: column;
}
.blockcomp-3-comp_38 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_38 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_39 {
    line-height: 100%;
    width: 100%;
}
.blockcomp-3-comp_39 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.blockcomp-3-comp_4 {
    flex-direction: column;
}
.blockcomp-3-comp_4 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_4 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_40 {
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-3-comp_40 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-3-comp_40-wrap {
    background-color: rgba(23,23,23,1);
    flex-direction: column;
    width: 100%;
}
.blockcomp-3-comp_41 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_42 {
    flex-direction: column;
}
.blockcomp-3-comp_42 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_42 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_43 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-3-comp_43 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_43 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_43 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_43 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_44 {
    flex-direction: column;
}
.blockcomp-3-comp_44 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_44 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_45 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_46 {
    flex-direction: column;
}
.blockcomp-3-comp_46 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_46 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_47 {
    display: flex;
    width: 100%;
}
.blockcomp-3-comp_47 .wa-image-wrap {
    aspect-ratio: 125/123;;
    box-sizing: content-box;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 125px) );
}
.blockcomp-3-comp_47 .wa-image-wrap > div {
    aspect-ratio: 125/123;;
    position: relative;
    width: 100%;
}
.blockcomp-3-comp_47 .wa-image-wrap img {
    aspect-ratio: 125/123;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-3-comp_48 {
    flex-direction: column;
}
.blockcomp-3-comp_48 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_48 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: center;
}
.blockcomp-3-comp_49 {
    display: flex;
    width: 100%;
}
.blockcomp-3-comp_49 .wa-image-wrap {
    aspect-ratio: 123/122;;
    box-sizing: content-box;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 123px) );
}
.blockcomp-3-comp_49 .wa-image-wrap > div {
    aspect-ratio: 123/122;;
    position: relative;
    width: 100%;
}
.blockcomp-3-comp_49 .wa-image-wrap img {
    aspect-ratio: 123/122;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-3-comp_5 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_6 {
    flex-direction: column;
}
.blockcomp-3-comp_6 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_6 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-3-comp_7 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_7 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_7 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-3-comp_7 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-3-comp_8 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-3-comp_9 {
    flex-direction: column;
}
.blockcomp-3-comp_9 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-3-comp_9 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-3-comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.blockcomp-3-comp_0 > .innerBox {
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
.blockcomp-3-comp_1 {
    display: flex;
    margin-bottom: 50px !important;
    margin-top: 50px !important;
}
.blockcomp-3-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;
}
.blockcomp-3-comp_10 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-3-comp_10 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-3-comp_11 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_11 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_11 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_12 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_13 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_13 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_13 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_14 {
    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-3-comp_14 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_14 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_15 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_16 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_16 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_16 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_17 {
    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-3-comp_17 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-3-comp_17 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.8;
    text-align: left;
}
.blockcomp-3-comp_18 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_18 > .wa_inner_col {
    border-bottom-color: #3d3d3d;
    border-bottom-width: 0px;
    border-left-color: #3d3d3d;
    border-left-width: 0px;
    border-radius: 0px;
    border-right-color: #3d3d3d;
    border-right-width: 0px;
    border-top-color: #3d3d3d;
    border-top-width: 0px;
}
.blockcomp-3-comp_18 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_19 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_2 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_2 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_2 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 4rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 1rem;
}
.blockcomp-3-comp_20 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_20 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_20 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_21 {
    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-3-comp_21 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_21 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_22 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_23 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_23 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_23 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_24 {
    border: 1px solid rgba(0,0,0,0.12549);
    border-radius: 6px 6px 6px 6px;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 1rem;
    margin-top: 1rem;
    min-height: 0rem;
}
.blockcomp-3-comp_25 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_26 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_26 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_26 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
}
.blockcomp-3-comp_27 {
    margin-bottom: 6px;
    margin-top: 6px;
}
.blockcomp-3-comp_27 input {
    border: none;
    border-radius: 5px 5px 5px 5px;
    font-size: 14px;
    height: 50px;
    margin-bottom: 0rem;
    margin-top: 0rem;
    padding-left: 8px;
    padding-right: 8px;
}
.blockcomp-3-comp_27 input:focus {
    border: 1px solid #cc0636;
}
.blockcomp-3-comp_28 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 8px;
}
.blockcomp-3-comp_28 .wa-btn {
    font-size: 1em;
}
.blockcomp-3-comp_28 .wa-btn.wa-btn-rounded {
    border-radius: 0.375em;
}
.blockcomp-3-comp_28 a {
    width: 100%;
}
.blockcomp-3-comp_28 div {
    width: 100%;
}
.blockcomp-3-comp_29 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 100px !important;
}
.blockcomp-3-comp_3 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-3-comp_3 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 768px) );
}
.blockcomp-3-comp_30 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_30 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_30 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_31 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_32 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_32 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_32 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_33 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-3-comp_33 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.6rem;
    justify-content: center;
}
.blockcomp-3-comp_33 .wa-v-icon-wrapper i {
    font-size: 1.6rem;
}
.blockcomp-3-comp_34 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_34 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_34 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_35 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-3-comp_35 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.6rem;
    justify-content: center;
}
.blockcomp-3-comp_35 .wa-v-icon-wrapper i {
    font-size: 1.6rem;
}
.blockcomp-3-comp_36 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_36 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_36 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_37 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-3-comp_37 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.6rem;
    justify-content: center;
}
.blockcomp-3-comp_37 .wa-v-icon-wrapper i {
    font-size: 1.6rem;
}
.blockcomp-3-comp_38 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_38 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_38 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_39 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
}
.blockcomp-3-comp_39 .wa-v-icon-wrapper {
    align-items: center;
    height: 1.6rem;
    justify-content: center;
}
.blockcomp-3-comp_39 .wa-v-icon-wrapper i {
    font-size: 1.6rem;
}
.blockcomp-3-comp_4 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_4 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_4 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_40 > .innerBox {
    margin-bottom: 2rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 2rem;
}
.blockcomp-3-comp_40-wrap {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.blockcomp-3-comp_41 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_42 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_42 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_42 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_43 {
    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-3-comp_43 .wa-txt-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_43 .wa-txt-par.wa-last-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_44 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_44 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_44 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_45 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_46 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_46 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_46 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_47 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-3-comp_47 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 25px , 125px) );
}
.blockcomp-3-comp_48 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_48 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_48 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-comp_49 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-3-comp_49 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 25px , 123px) );
}
.blockcomp-3-comp_5 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_6 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_6 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_6 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-3-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-3-comp_7 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_7 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-3-comp_8 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-3-comp_9 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-3-comp_9 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-3-comp_9 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
@media (min-width: 992px) {
    .blockcomp-3-comp_0 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-3-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_1 {
        display: flex;
        margin-bottom: 50px !important;
        margin-top: 50px !important;
    }
    .blockcomp-3-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;
    }
    .blockcomp-3-comp_10 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.8;
        text-align: left;
    }
    .blockcomp-3-comp_10 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.8;
        text-align: left;
    }
    .blockcomp-3-comp_11 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_11 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_11 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_12 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_13 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_13 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_13 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_14 {
        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-3-comp_14 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_14 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_15 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_16 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_16 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_16 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_17 {
        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-3-comp_17 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.8;
        text-align: left;
    }
    .blockcomp-3-comp_17 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.8;
        text-align: left;
    }
    .blockcomp-3-comp_18 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_18 > .wa_inner_col {
        border-bottom-color: #3d3d3d;
        border-bottom-width: 0px;
        border-left-color: #3d3d3d;
        border-left-width: 0px;
        border-radius: 0px;
        border-right-color: #3d3d3d;
        border-right-width: 0px;
        border-top-color: #3d3d3d;
        border-top-width: 0px;
    }
    .blockcomp-3-comp_18 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 5rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_19 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_2 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 1rem;
    }
    .blockcomp-3-comp_20 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_20 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_20 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_21 {
        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-3-comp_21 .wa-txt-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_21 .wa-txt-par.wa-last-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_22 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_23 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_23 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_23 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_24 {
        border: 1px solid rgba(0,0,0,0.12549);
        border-radius: 6px 6px 6px 6px;
        margin-bottom: 1rem;
        margin-left: 0rem;
        margin-right: 1rem;
        margin-top: 1rem;
        min-height: 0rem;
    }
    .blockcomp-3-comp_25 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_26 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_26 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_26 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
    }
    .blockcomp-3-comp_27 {
        margin-bottom: 6px;
        margin-top: 6px;
    }
    .blockcomp-3-comp_27 input {
        border: none;
        border-radius: 5px 5px 5px 5px;
        font-size: 14px;
        height: 50px;
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding-left: 8px;
        padding-right: 8px;
    }
    .blockcomp-3-comp_27 input:focus {
        border: 1px solid #cc0636;
    }
    .blockcomp-3-comp_28 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 8px;
    }
    .blockcomp-3-comp_28 .wa-btn {
        font-size: 1em;
    }
    .blockcomp-3-comp_28 .wa-btn.wa-btn-rounded {
        border-radius: 0.375em;
    }
    .blockcomp-3-comp_28 a {
        width: 100%;
    }
    .blockcomp-3-comp_28 div {
        width: 100%;
    }
    .blockcomp-3-comp_29 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 100px !important;
    }
    .blockcomp-3-comp_3 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-3-comp_3 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 768px) );
    }
    .blockcomp-3-comp_30 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_30 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_30 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_31 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_32 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_32 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_32 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_33 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-3-comp_33 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.6rem;
        justify-content: center;
    }
    .blockcomp-3-comp_33 .wa-v-icon-wrapper i {
        font-size: 1.6rem;
    }
    .blockcomp-3-comp_34 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_34 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_34 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_35 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-3-comp_35 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.6rem;
        justify-content: center;
    }
    .blockcomp-3-comp_35 .wa-v-icon-wrapper i {
        font-size: 1.6rem;
    }
    .blockcomp-3-comp_36 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_36 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_36 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_37 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-3-comp_37 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.6rem;
        justify-content: center;
    }
    .blockcomp-3-comp_37 .wa-v-icon-wrapper i {
        font-size: 1.6rem;
    }
    .blockcomp-3-comp_38 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_38 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_38 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_39 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
    }
    .blockcomp-3-comp_39 .wa-v-icon-wrapper {
        align-items: center;
        height: 1.6rem;
        justify-content: center;
    }
    .blockcomp-3-comp_39 .wa-v-icon-wrapper i {
        font-size: 1.6rem;
    }
    .blockcomp-3-comp_4 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_4 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_4 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_40 > .innerBox {
        margin-bottom: 2rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 2rem;
    }
    .blockcomp-3-comp_40-wrap {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .blockcomp-3-comp_41 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_42 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_42 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_42 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_43 {
        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-3-comp_43 .wa-txt-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_43 .wa-txt-par.wa-last-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_44 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_44 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_44 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_45 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_46 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_46 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_46 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_47 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-3-comp_47 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 25px , 125px) );
    }
    .blockcomp-3-comp_48 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_48 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_48 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-comp_49 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-3-comp_49 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 25px , 123px) );
    }
    .blockcomp-3-comp_5 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_6 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_6 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_6 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-3-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-3-comp_7 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_7 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-3-comp_8 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-3-comp_9 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-3-comp_9 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-3-comp_9 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
}
