


* {box-sizing: border-box;margin: 0;padding: 0;}.navigation__checkbox {display: none;}.navigation__button {position: fixed;top: 1.5rem;right: 1.5rem;height: 5rem;width: 5rem;text-align: center;background-color: #fff;border-radius: 50%;z-index: 300;box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);cursor: pointer;}@media screen  and (min-width: 768px) {.navigation__button {top: 4rem;right: 4rem;height: 7rem;width: 7rem;}}.navigation__background {position: fixed;top: 2rem;right: 2rem;height: 3rem;width: 3rem;border-radius: 50%;background: #798081;background-size: cover;background-position: center;z-index: 100;transition: all 800ms cubic-bezier(0.86, 0, 0.07, 1);}@media screen and (min-width: 768px) {.navigation__background {top: 4.5rem;right: 4.5rem;height: 6rem;width: 6rem;}}.navigation__nav {position: fixed;top: 0;left: 0;height: 100vh;opacity: 0;width: 0;visibility: hidden;z-index: 200;transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.navigation__list {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align: center;width: 100%;list-style: none;}.navigation__item {margin:1rem;}.navigation__link:link,.navigation__link:visited {display: inline-block;padding: 1rem 2rem;text-transform: uppercase;color: #f4f4f4;font-size: 20px;text-decoration: none;transition: all .2s;}@media(min-width: 768px) {.navigation__link:link,.navigation__link:visited {font-size: 20px;}}.navigation__link span {margin-right: 1.5rem;display: inline-block;}.navigation__link:hover {color: #C1D0D0;transform: scale(1.1);}.navigation__checkbox:checked~.navigation__background {transform: scale(80)}.navigation__checkbox:checked~.navigation__nav {width: 100%;visibility: visible;opacity: 1;}.navigation__icon {position: relative;margin-top: 2.5rem;}@media screen and (min-width: 768px) {.navigation__icon {margin-top: 3.5rem;}}.navigation__icon,.navigation__icon::before,.navigation__icon::after {display: inline-block;width: 2.2rem;height: 2px;background-color: #4A676A;}@media (min-width: 768px) {.navigation__icon,.navigation__icon::before,.navigation__icon::after {width: 3rem;}}.navigation__icon::before,.navigation__icon::after {content: '';position: absolute;left: 0;transition: all 200ms;}.navigation__icon::before {top: -.8rem;}.navigation__icon::after {top: .8rem;}.navigation__button:hover .navigation__icon::before {top: -1rem;}.navigation__button:hover .navigation__icon::after {top: 1rem;}.navigation__checkbox:checked+.navigation__button .navigation__icon {background-color: transparent;}.navigation__checkbox:checked+.navigation__button .navigation__icon::before {top: 0;transform: rotate(135deg);}.navigation__checkbox:checked+.navigation__button .navigation__icon::after {top: 0;transform:rotate(-135deg);}


.comp_8{
                                    text-transform: uppercase;
                                    background-image: linear-gradient(
                                    -225deg,
                                    #000000 0%,
                                    #778899 29%,
                                    #A9A9A9 67%,
                                    #696969 100%
                                    );
                                    background-size: auto auto;
                                    background-clip: border-box;
                                    background-size: 200% auto;
                                    color: #fff;
                                    background-clip: text;
                                    text-fill-color: transparent;
                                    -webkit-background-clip: text;
                                    -webkit-text-fill-color: transparent;
                                    animation: textclip 4s linear infinite;
                                    display: inline-block;
                                    }
                                    @keyframes textclip {
                                    to {
                                    background-position: 200% center;
                                    }
                                    }


.box{
                                                                    color: #fff;
                                                                    font-family: 'Space Grotesk', sans-serif;
                                                                    text-align: center;
                                                                    position: relative;
                                                                }
                                                                .box:before{
                                                                    content: "";
                                                                    background: linear-gradient(#FF512F,#F09819);
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    opacity: 0;
                                                                    position: absolute;
                                                                    top: 0;
                                                                    left: 0;
                                                                    transition: all 0.5s;
                                                                }
                                                                .box:hover:before{ 
                                                                    opacity: 0.7;
                                                                    top: 10px;
                                                                    left: 10px;
                                                                }
                                                                .box img{
                                                                    width: 100%;
                                                                    height: auto;
                                                                }
                                                                .box-content{
                                                                    padding: 0;
                                                                    text-align: left;
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    opacity: 0;
                                                                    position: absolute;
                                                                    top: 0;
                                                                    left: 0;
                                                                    z-index: 1;
                                                                    transition: all 0.5s ease 0s;
                                                                }
                                                                .box:hover .box-content{
                                                                    padding: 20px;
                                                                    opacity: 1;
                                                                }
                                                                .box .title{
                                                                    font-size: 24px;
                                                                    font-weight: 700;
                                                                    text-transform: capitalize;
                                                                    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                                                                    margin: 0 0 1px;
                                                                }
                                                                .box .post{
                                                                    font-size: 16px;
                                                                    font-weight: 400;
                                                                    letter-spacing: 1px;
                                                                    text-transform: capitalize;
                                                                    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                                                                    display: block;
                                                                }
                                                                .box .icon{
                                                                    padding: 0;
                                                                    margin: 0;
                                                                    list-style: none;
                                                                    position: absolute;
                                                                    right: 0;
                                                                    bottom: 0;
                                                                    z-index: 1;
                                                                    transition: all 0.7s ease 0s;
                                                                }
                                                                .box:hover .icon{
                                                                    right: 10px;
                                                                    bottom: 10px;
                                                                }
                                                                .box .icon li{
                                                                    margin: 0 4px;
                                                                    display: inline-block;
                                                                }
                                                                .box .icon li a{
                                                                    color: #fff;
                                                                    font-size: 13px;
                                                                    text-align: center;
                                                                    line-height: 28px;
                                                                    width: 30px;
                                                                    height: 30px;
                                                                    border: 2px solid #fff;
                                                                    display: block;
                                                                    transition: all 0.35s ease 0s;
                                                                }
                                                                .box .icon li a:hover{
                                                                    color: #fff;
                                                                    border-radius: 50%;
                                                                }



.comp_47{
                                    text-transform: uppercase;
                                    background-image: linear-gradient(
                                    -225deg,
                                    #000000 0%,
                                    #778899 29%,
                                    #A9A9A9 67%,
                                    #696969 100%
                                    );
                                    background-size: auto auto;
                                    background-clip: border-box;
                                    background-size: 200% auto;
                                    color: #fff;
                                    background-clip: text;
                                    text-fill-color: transparent;
                                    -webkit-background-clip: text;
                                    -webkit-text-fill-color: transparent;
                                    animation: textclip 4s linear infinite;
                                    display: inline-block;
                                    }
                                    @keyframes textclip {
                                    to {
                                    background-position: 200% center;
                                    }
                                    }


.comp_85 {padding: 50px;
                                    animation: element 4s infinite;}
                                    @keyframes element {
                                    0% { background-color: #1F1F1C; }
                                    50% { background-color: #2D2D25; }
                                    100% { background-color: #393927; }
                                    }


.comp_87 {padding: 50px;
                                    animation: element 4s infinite;}
                                    @keyframes element {
                                    0% { background-color: #1F1F1C; }
                                    50% { background-color: #2D2D25; }
                                    100% { background-color: #393927; }
                                    }


.comp_89 {padding: 50px;
                                    animation: element 4s infinite;}
                                    @keyframes element {
                                    0% { background-color: #1F1F1C; }
                                    50% { background-color: #2D2D25; }
                                    100% { background-color: #393927; }
                                    }


.comp_96 {padding: 50px;
                                    animation: element 4s infinite;}
                                    @keyframes element {
                                    0% { background-color: #1F1F1C; }
                                    50% { background-color: #2D2D25; }
                                    100% { background-color: #393927; }
                                    }


.comp_98 {padding: 50px;
                                    animation: element 4s infinite;}
                                    @keyframes element {
                                    0% { background-color: #1F1F1C; }
                                    50% { background-color: #2D2D25; }
                                    100% { background-color: #393927; }
                                    }


.comp_100 {padding: 50px;
                                    animation: element 4s infinite;}
                                    @keyframes element {
                                    0% { background-color: #1F1F1C; }
                                    50% { background-color: #2D2D25; }
                                    100% { background-color: #393927; }
                                    }


.comp_108 body {
                                                                  font-family: 'Raleway', serif;
                                                                  font-size: 20px;
                                                                  text-align: center;
                                                                }
                                                                
                                                                .content-slider {
                                                                  width: auto;
                                                                  height: 250px;
                                                                }
                                                                
                                                                .slider {
                                                                  height: 300px;
                                                                  width: auto;
                                                                  margin: 0px auto 0;
                                                                  overflow: visible;
                                                                  position: relative;
                                                                }
                                                                
                                                                .mask {
                                                                  overflow: hidden;
                                                                  height: 320px;
                                                                }
                                                                
                                                                .slider ul {
                                                                  margin: 0;
                                                                  padding: 0;
                                                                  position: relative;
                                                                }
                                                                
                                                                .slider li {
                                                                  width: auto;
                                                                  height: 300px;
                                                                  position: absolute;
                                                                  top: -320px;
                                                                  list-style: none;
                                                                }
                                                                
                                                                .slider .quote {
                                                                  font-size: 20px;
                                                                  text-align: center;
                                                                  font-style: italic;
                                                                  text-align: center;
                                                                }
                                                                
                                                                .slider .source {
                                                                  font-size: 20px;
                                                                  text-align: right;
                                                                }
                                                                
                                                                .slider li.anim1 {
                                                                  animation: cycle 15s linear infinite;
                                                                }
                                                                
                                                                .slider li.anim2 {
                                                                  animation: cycle2 15s linear infinite;
                                                                }
                                                                
                                                                .slider li.anim3 {
                                                                  animation: cycle3 15s linear infinite;
                                                                }
                                                                
                                                                .slider li.anim4 {
                                                                  animation: cycle4 15s linear infinite;
                                                                }
                                                                
                                                                .slider li.anim5 {
                                                                  animation: cycle5 15s linear infinite;
                                                                }
                                                                
                                                                .slider:hover li {
                                                                  animation-play-state: paused;
                                                                }
                                                                
                                                                @keyframes cycle {
                                                                  0% {
                                                                    top: 0px;
                                                                  }
                                                                  4% {
                                                                    top: 0px;
                                                                  }
                                                                  16% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                    z-index: 0;
                                                                  }
                                                                  20% {
                                                                    top: 305px;
                                                                    opacity: 0;
                                                                    z-index: 0;
                                                                  }
                                                                  21% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                  50% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                  92% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: 0;
                                                                  }
                                                                  96% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  100% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                }
                                                                
                                                                @keyframes cycle2 {
                                                                  0% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  16% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  20% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  24% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  36% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                    z-index: 0;
                                                                  }
                                                                  40% {
                                                                    top: 305px;
                                                                    opacity: 0;
                                                                    z-index: 0;
                                                                  }
                                                                  41% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                  100% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                }
                                                                
                                                                @keyframes cycle3 {
                                                                  0% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  36% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  40% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  44% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  56% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                    z-index: 0;
                                                                  }
                                                                  60% {
                                                                    top: 325px;
                                                                    opacity: 0;
                                                                    z-index: 0;
                                                                  }
                                                                  61% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                  100% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                }
                                                                
                                                                @keyframes cycle4 {
                                                                  0% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  56% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  60% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  64% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  76% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                    z-index: 0;
                                                                  }
                                                                  80% {
                                                                    top: 305px;
                                                                    opacity: 0;
                                                                    z-index: 0;
                                                                  }
                                                                  81% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                  100% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                    z-index: -1;
                                                                  }
                                                                }
                                                                
                                                                @keyframes cycle5 {
                                                                  0% {
                                                                    top: -305px;
                                                                    opacity: 0;
                                                                  }
                                                                  76% {
                                                                    top: -325px;
                                                                    opacity: 0;
                                                                  }
                                                                  80% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  84% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                  }
                                                                  96% {
                                                                    top: 0px;
                                                                    opacity: 1;
                                                                    z-index: 0;
                                                                  }
                                                                  100% {
                                                                    top: 305px;
                                                                    opacity: 0;
                                                                    z-index: 0;
                                                                  }
                                                                }


.slideshow2{
                                                      margin: 0 auto;
                                                      padding-top: 40px;
                                                      height: 300px;
                                                      perspective: 1400px;
                                                    }
                                                    .content2{
                                                      margin: auto;
                                                      width: 150px;
                                                      perspective: 1500px;
                                                      position:relative;
                                                      padding-top: 70px;
                                                      transform-style: preserve-3d;
                                                    }
                                                    .slider-content2{
                                                      width: 100%;
                                                      position:absolute;
                                                      float:right;
                                                      animation: rotate 15s infinite linear;
                                                      transform-style: preserve-3d;
                                                    }
                                                    .slider-content2:hover{
                                                      cursor: pointer;
                                                      animation-play-state: paused;
                                                    }
                                                    
                                                    .slider-content2 figure{
                                                      width:180px;
                                                      height:100px;
                                                      border:2px solid #555;
                                                      overflow:hidden;
                                                      position:absolute;
                                                    }
                                                    .slider-content2 figure:nth-child(1){
                                                      transform:rotateY(0deg) translateZ(300px);
                                                    }
                                                    
                                                    .slider-content2 figure:nth-child(2){
                                                      transform:rotateY(40deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(3){
                                                      transform:rotateY(80deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(4){
                                                      transform:rotateY(120deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(5){
                                                      transform:rotateY(160deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(6){
                                                      transform:rotateY(200deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(7){
                                                      transform:rotateY(240deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(8){
                                                      transform:rotateY(280deg) translateZ(300px);
                                                    }
                                                    .slider-content2 figure:nth-child(9){
                                                      transform:rotateY(320deg) translateZ(300px);
                                                    }
                                                    
                                                    .shadow{
                                                      position: absolute;
                                                      box-shadow: 0px 0px 0px #000;
                                                     
                                                    }
                                                    .slider-content2 img{
                                                      image-rendering: auto;
                                                      transition: all 300ms;
                                                      width: 100%;
                                                      height: 100%;
                                                    }
                                                    .slider-content2 img:hover{
                                                      transform: scale(1.2);
                                                      transition: all 300ms;
                                                     
                                                    }
                                                    
                                                    @keyframes rotate {
                                                      from{
                                                        transform: rotateY(0deg);
                                                      }
                                                      to{
                                                          transform: rotateY(360deg);
                                                      }
                                                    }


.comp_117 {animation: hu__hu__ infinite 2s ease-in-out}
                                    @keyframes hu__hu__ {50% { transform: translateY(30px)}}

.comp_0 {
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_0 .innerBox {
    position: relative;
}
.comp_0 .innerBox .wa-wrap_video-bg {
    position: relative;
}
.comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_10 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_100 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_100 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_100 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_100 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_100 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_101 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_101 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_102 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_103 {
    flex-direction: column;
}
.comp_103 > .wa_inner_col {
    background-color: rgba(255,255,255,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_103 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_104 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_104 .wa-txt-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_104 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_104 .wa-txt-par.wa-last-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_104 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_105 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_105 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_105 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_105 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_105 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_106 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_107 {
    flex-direction: column;
}
.comp_107 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_107 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_108 {
    width: 100%;
}
.comp_109 {
    flex-direction: column;
}
.comp_109 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_109 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_11 {
    flex-direction: column;
}
.comp_11 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_11 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_110 {
    display: flex;
    width: 100%;
}
.comp_110 .wa-image-wrap {
    aspect-ratio: 1148/684;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 1148px) );
}
.comp_110 .wa-image-wrap > div {
    aspect-ratio: 1148/684;;
    position: relative;
    width: 100%;
}
.comp_110 .wa-image-wrap img {
    aspect-ratio: 1148/684;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.comp_111 {
    background-color: rgba(0,0,0,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_111 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_112 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_113 {
    flex-direction: column;
}
.comp_113 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_113 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_114 {
    width: 100%;
}
.comp_115 {
    flex-direction: column;
}
.comp_115 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_115 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_116 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_116 .wa-txt-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_116 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_116 .wa-txt-par.wa-last-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_116 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_117 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_117 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_117 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_117 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_117 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_12 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_12 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_12 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_12 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_12 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_13 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_13 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_13 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_13 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_13 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_14 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_14 hr {
    border-color: rgba(255,255,255,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 1;
    width: 100%;
}
.comp_15 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_15 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_15 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_15 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_15 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_16 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_16 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_16 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_16 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_16 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_17 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_17 hr {
    border-color: rgba(255,255,255,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 1;
    width: 100%;
}
.comp_18 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_18 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_18 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_18 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_18 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_19 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_19 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_19 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_19 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_19 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_2 {
    flex-direction: column;
}
.comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_20 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_20 hr {
    border-color: rgba(255,255,255,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 1;
    width: 100%;
}
.comp_21 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_21 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_21 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_21 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_21 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_22 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_22 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_22 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_22 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_22 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_23 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_23 hr {
    border-color: rgba(255,255,255,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 1;
    width: 100%;
}
.comp_24 {
    flex-direction: column;
}
.comp_24 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_24 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_25 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_25 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_25 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_25 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_25 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_26 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_26 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_26 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_26 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_26 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_27 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_27 hr {
    border-color: rgba(255,255,255,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 1;
    width: 100%;
}
.comp_28 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_28 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_28 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_28 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_28 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_29 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_29 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_29 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_29 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_29 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_3 {
    width: 100%;
}
.comp_30 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_30 hr {
    border-color: rgba(255,255,255,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 1;
    width: 100%;
}
.comp_31 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_31 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_32 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_33 {
    flex-direction: column;
}
.comp_33 > .wa_inner_col {
    background-position: center top;
    background-repeat: repeat;
    background-size: cover;
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_33 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_34 {
    width: 100%;
}
.comp_35 {
    flex-direction: column;
}
.comp_35 > .wa_inner_col {
    background-color: rgba(0,0,0,1);
    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(152,121,26,1);
    font-family: 'Revalia';
    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(152,121,26,1);
    font-family: 'Revalia';
    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 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_37 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_37 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_37 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_37 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_38 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_39 {
    flex-direction: column;
}
.comp_39 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_39 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_4 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_40 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_40 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_40 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_40 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_40 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_41 {
    line-height: 100%;
    width: 100%;
}
.comp_41 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.comp_42 {
    background-position: right bottom;
    background-repeat: repeat;
    background-size: cover;
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_42 .innerBox {
    position: relative;
}
.comp_42 .innerBox .wa-wrap_video-bg {
    position: relative;
}
.comp_42 .wa-inner-kenburns > .kb-animation {
    animation: wa_comp_42_kfrm 10000ms linear;
    transform: scale(1.4);
}
.comp_42 .wa-inner-kenburns > div {
    background-position: right bottom;
    background-size: cover;
    transform-origin: 5% 5%;
}
.comp_42 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_42 > .innerBox > .row {
    z-index: 0;
}
.comp_43 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_44 {
    flex-direction: column;
}
.comp_44 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_44 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_46 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_46 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_46 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_46 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_46 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_47 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_47 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_47 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_47 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_47 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_48 {
    background-color: rgba(0,0,0,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_48 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_49 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_5 {
    flex-direction: column;
}
.comp_5 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_5 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.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 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_51 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_51 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_51 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_51 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_52 {
    flex-direction: column;
}
.comp_52 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_52 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_53 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_53 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_53 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_53 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_53 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_54 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_55 {
    flex-direction: column;
}
.comp_55 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_55 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_56 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_57 {
    flex-direction: column;
}
.comp_57 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_57 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_58 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_58 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_58 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_58 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_58 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_59 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_59 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_59 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_59 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_59 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_6 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_6 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_6 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_6 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_60 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_60 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_60 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_60 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_60 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_61 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_61 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_61 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_61 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_61 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_62 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_62 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_62 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_62 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_62 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_63 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_63 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_63 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_63 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_63 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_64 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_64 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_64 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_64 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_64 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_65 {
    flex-direction: column;
}
.comp_65 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_65 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_66 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_66 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_66 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_66 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_66 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_67 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_67 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_67 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_67 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_67 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_68 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_68 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_68 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_68 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_68 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_69 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_69 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_7 {
    align-items: center;
    display: flex;
    width: 100%;
}
.comp_7 hr {
    border-color: rgba(206,206,207,1) !important;
    border-style: solid;
    border-top-width: 1px;
    margin: 1px;
    opacity: 0;
    width: 100%;
}
.comp_70 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_71 {
    flex-direction: column;
}
.comp_71 > .wa_inner_col {
    background-color: rgba(0,0,0,1);
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_71 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_72 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_72 .wa-txt-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_72 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_72 .wa-txt-par.wa-last-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_72 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_73 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_73 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_73 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_73 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_73 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_74 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_75 {
    flex-direction: column;
}
.comp_75 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_75 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_76 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_76 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_76 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_76 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_76 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_77 {
    line-height: 100%;
    width: 100%;
}
.comp_77 .wa-v-icon-wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}
.comp_78 {
    background-color: rgba(0,0,0,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_78 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_79 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_8 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_8 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_8 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_8 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_8 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_80 {
    flex-direction: column;
}
.comp_80 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_80 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_81 {
    display: flex;
    width: 100%;
}
.comp_81 .wa-image-wrap {
    aspect-ratio: 3000/2711;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 3000px) );
}
.comp_81 .wa-image-wrap > div {
    aspect-ratio: 3000/2711;;
    position: relative;
    width: 100%;
}
.comp_81 .wa-image-wrap img {
    aspect-ratio: 3000/2711;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.comp_82 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_82 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_82 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_82 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_82 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_83 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_84 {
    flex-direction: column;
}
.comp_84 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_84 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_85 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_85 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_85 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_85 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_85 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_86 {
    flex-direction: column;
}
.comp_86 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_86 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_87 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_87 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_87 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_87 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_87 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_88 {
    flex-direction: column;
}
.comp_88 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_88 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_89 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_89 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_89 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_89 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_89 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_9 {
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_9 .innerBox {
    position: relative;
}
.comp_9 .innerBox .wa-wrap_video-bg {
    position: relative;
}
.comp_9 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_90 {
    background-color: rgba(0,0,0,1);
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_90 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.comp_91 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_92 {
    flex-direction: column;
}
.comp_92 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_92 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_93 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_93 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_93 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_93 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_93 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_94 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.comp_95 {
    flex-direction: column;
}
.comp_95 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_95 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_96 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_96 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_96 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_96 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_96 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_97 {
    flex-direction: column;
}
.comp_97 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_97 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.comp_98 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.comp_98 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_98 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_98 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.comp_98 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.comp_99 {
    flex-direction: column;
}
.comp_99 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.comp_99 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
body {
    background-color: rgba(255,255,255,1);
}
.comp_0 {
    background-attachment: local;
    background-image: url('../../icons/bague_M.jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
    background-position: right center;
    border: none;
    border-radius: 0px;
    display: none;
    min-height: 550px;
}
.comp_0 .innerBox .wa-wrap_video-bg {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
    min-height: 550px;
}
.comp_0.wa-parallax {
    background-attachment: local;
    background-image: url('../../icons/bague_M.jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
    background-position: right center;
}
.comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_10 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_100 {
    border: 2px solid #5c5c5c;
    border-radius: 10rem 10rem 10rem 10rem;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 0px;
    padding-top: 16px;
}
.comp_100 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_100 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_101 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_101 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_102 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_103 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_103 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_103 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_104 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 6px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 35px;
}
.comp_104 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_104 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_105 {
    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_105 .wa-txt-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_105 .wa-txt-par.wa-last-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_106 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_107 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_107 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_107 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_108 {
    margin-bottom: 0px;
    margin-top: 20px;
    min-height: 0px;
}
.comp_109 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_109 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_109 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_11 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_11 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_11 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 2rem;
}
.comp_110 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_110 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 1148px) );
}
.comp_111 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 350px;
}
.comp_111 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_112 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_113 {
    min-height: 50px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_113 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_113 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_114 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.comp_115 {
    min-height: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.comp_115 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_115 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 1rem;
}
.comp_116 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.comp_116 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_116 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_117 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_117 .wa-txt-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_117 .wa-txt-par.wa-last-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_12 {
    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_12 .wa-txt-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_12 .wa-txt-par.wa-last-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_13 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_13 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_13 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_14 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_15 {
    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_15 .wa-txt-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_15 .wa-txt-par.wa-last-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_16 {
    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_16 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_16 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_17 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_18 {
    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_18 .wa-txt-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_18 .wa-txt-par.wa-last-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_19 {
    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_19 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_19 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_2 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_2 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_2 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_20 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.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;
}
.comp_21 .wa-txt-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_21 .wa-txt-par.wa-last-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_22 {
    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_22 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_22 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_23 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_24 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_24 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_24 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 2rem;
}
.comp_25 {
    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_25 .wa-txt-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_25 .wa-txt-par.wa-last-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_26 {
    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_26 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_26 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_27 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_28 {
    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_28 .wa-txt-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_28 .wa-txt-par.wa-last-par {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_29 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_29 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_29 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_3 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 20px;
}
.comp_30 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 32px;
}
.comp_31 {
    border: none;
    border-radius: 0px;
    display: none;
    min-height: 0px;
}
.comp_31 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_32 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_33 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_33 > .wa_inner_col {
    background-image: url('');
    border: none;
    border-radius: 0px;
}
.comp_33 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_34 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 5px;
}
.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: 30px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_36 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_36 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_37 {
    border: none;
    border-radius: 0px;
    margin-bottom: 5px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_37 .wa-txt-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_37 .wa-txt-par.wa-last-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_38 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_39 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_39 > .wa_inner_col {
    border: 1px solid #000000;
    border-radius: 0px;
}
.comp_39 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_4 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 60px !important;
}
.comp_40 {
    border: none;
    border-radius: 0px;
    margin-bottom: 10px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_40 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_40 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_41 {
    margin-bottom: 0px;
    margin-top: 20px;
    min-height: 0px;
}
.comp_41 .wa-v-icon-wrapper {
    align-items: center;
    height: 6rem;
    justify-content: center;
}
.comp_41 .wa-v-icon-wrapper i {
    font-size: 6rem;
}
.comp_42 {
    background-image: url('../../icons/bague_L_(2).jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
    border: none;
    display: flex;
    min-height: 500px;
}
.comp_42 .innerBox .wa-wrap_video-bg {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
    min-height: 500px;
}
.comp_43 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_44 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_44 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_44 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_46 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.comp_46 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_46 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_47 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.comp_47 .wa-txt-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_47 .wa-txt-par.wa-last-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_48 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_48 > .innerBox {
    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 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_5 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_5 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.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 {
    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_51 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_51 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_52 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_52 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_52 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_53 {
    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_53 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_53 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_54 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_55 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_55 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_55 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_56 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_57 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_57 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_57 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_58 {
    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_58 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_58 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_59 {
    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_59 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_59 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_6 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 16px;
    padding-top: 0px;
}
.comp_6 .wa-txt-par {
    font-size: 30px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_6 .wa-txt-par.wa-last-par {
    font-size: 30px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_60 {
    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_60 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_60 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_61 {
    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_61 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_61 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_62 {
    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_62 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_62 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_63 {
    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_63 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_63 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_64 {
    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_64 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_64 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_65 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_65 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_65 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_66 {
    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_66 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_66 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_67 {
    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_67 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_67 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_68 {
    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_68 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_68 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_69 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_69 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_7 {
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 100px;
}
.comp_70 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_71 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_71 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_71 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_72 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 30px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_72 .wa-txt-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_72 .wa-txt-par.wa-last-par {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_73 {
    border: none;
    border-radius: 0px;
    margin-bottom: 5px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_73 .wa-txt-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_73 .wa-txt-par.wa-last-par {
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.comp_74 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_75 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_75 > .wa_inner_col {
    border: 1px solid #000000;
    border-radius: 0px;
}
.comp_75 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_76 {
    border: none;
    border-radius: 0px;
    margin-bottom: 10px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_76 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_76 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_77 {
    margin-bottom: 9px;
    margin-top: 16px;
    min-height: 0px;
}
.comp_77 .wa-v-icon-wrapper {
    align-items: center;
    height: 2rem;
    justify-content: center;
}
.comp_77 .wa-v-icon-wrapper i {
    font-size: 2rem;
}
.comp_78 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.comp_78 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_79 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_8 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 0px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_8 .wa-txt-par {
    font-size: 56px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_8 .wa-txt-par.wa-last-par {
    font-size: 56px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: right;
}
.comp_80 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_80 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_80 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_81 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.comp_81 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 3000px) );
}
.comp_82 {
    border: none;
    border-radius: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_82 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_82 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_83 {
    display: flex;
    margin-bottom: 5px !important;
    margin-top: 0px !important;
}
.comp_84 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_84 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_84 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_85 {
    border: 2px solid #5c5c5c;
    border-radius: 8rem 8rem 8rem 8rem;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 0px;
    padding-top: 16px;
}
.comp_85 .wa-txt-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_85 .wa-txt-par.wa-last-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_86 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_86 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_86 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_87 {
    border: 2px solid #5c5c5c;
    border-radius: 10rem 10rem 10rem 10rem;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 0px;
    padding-top: 16px;
}
.comp_87 .wa-txt-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_87 .wa-txt-par.wa-last-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_88 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_88 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_88 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_89 {
    border: 2px solid #5c5c5c;
    border-radius: 10rem 10rem 10rem 10rem;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 0px;
    padding-top: 16px;
}
.comp_89 .wa-txt-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_89 .wa-txt-par.wa-last-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_9 {
    background-image: url('../../icons/texture-1647380_1280_copie.jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
    border: none;
    border-radius: 0px;
    display: none;
    min-height: 0px;
}
.comp_9 .innerBox .wa-wrap_video-bg {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
    min-height: 0px;
}
.comp_90 {
    border: none;
    border-radius: 0px;
    display: none;
    min-height: 0px;
}
.comp_90 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_91 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.comp_92 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_92 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_92 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_93 {
    border: none;
    border-radius: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.comp_93 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_93 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.comp_94 {
    display: flex;
    margin-bottom: 5px !important;
    margin-top: 0px !important;
}
.comp_95 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_95 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_95 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_96 {
    border: 2px solid #5c5c5c;
    border-radius: 8rem 8rem 8rem 8rem;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 0px;
    padding-top: 16px;
}
.comp_96 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_96 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_97 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_97 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_97 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.comp_98 {
    border: 2px solid #5c5c5c;
    border-radius: 10rem 10rem 10rem 10rem;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 0px;
    padding-top: 16px;
}
.comp_98 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_98 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 0.8;
    text-align: center;
}
.comp_99 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.comp_99 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.comp_99 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
body {
    background-image: url('');
}
@media (min-width: 992px) {
    .comp_0 {
        background-attachment: local;
        background-image: url('../../icons/bague_M.jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
        background-position: right center;
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 550px;
    }
    .comp_0 .innerBox .wa-wrap_video-bg {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
        min-height: 550px;
    }
    .comp_0.wa-parallax {
        background-attachment: local;
        background-image: url('../../icons/bague_M.jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
        background-position: right center;
    }
    .comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_10 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_100 {
        border: 2px solid #5c5c5c;
        border-radius: 10rem 10rem 10rem 10rem;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 0px;
        padding-top: 16px;
    }
    .comp_100 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_100 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_101 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_101 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_102 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_103 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_103 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_103 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_104 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 6px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 35px;
    }
    .comp_104 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_104 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_105 {
        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_105 .wa-txt-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_105 .wa-txt-par.wa-last-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_106 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_107 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_107 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_107 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_108 {
        margin-bottom: 0px;
        margin-top: 20px;
        min-height: 0px;
    }
    .comp_109 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_109 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_109 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_11 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_11 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_11 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 2rem;
    }
    .comp_110 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_110 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 1148px) );
    }
    .comp_111 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 350px;
    }
    .comp_111 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_112 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_113 {
        min-height: 50px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_113 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_113 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_114 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .comp_115 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_115 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_115 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 1rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 1rem;
    }
    .comp_116 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 20px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .comp_116 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_116 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_117 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_117 .wa-txt-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_117 .wa-txt-par.wa-last-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_12 {
        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_12 .wa-txt-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_12 .wa-txt-par.wa-last-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_13 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_13 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_13 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_14 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_15 {
        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_15 .wa-txt-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_15 .wa-txt-par.wa-last-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_16 {
        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_16 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_16 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_17 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_18 {
        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_18 .wa-txt-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_18 .wa-txt-par.wa-last-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_19 {
        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_19 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_19 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_2 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_20 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .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;
    }
    .comp_21 .wa-txt-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_21 .wa-txt-par.wa-last-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_22 {
        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_22 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_22 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_23 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_24 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_24 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_24 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 2rem;
    }
    .comp_25 {
        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_25 .wa-txt-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_25 .wa-txt-par.wa-last-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_26 {
        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_26 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_26 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_27 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_28 {
        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_28 .wa-txt-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_28 .wa-txt-par.wa-last-par {
        font-size: 18px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_29 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_29 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_29 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_3 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 20px;
    }
    .comp_30 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 32px;
    }
    .comp_31 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_31 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_32 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_33 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_33 > .wa_inner_col {
        background-image: url('');
        border: none;
        border-radius: 0px;
    }
    .comp_33 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_34 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 5px;
    }
    .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: 30px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_36 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_36 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_37 {
        border: none;
        border-radius: 0px;
        margin-bottom: 5px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_37 .wa-txt-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_37 .wa-txt-par.wa-last-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_38 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_39 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_39 > .wa_inner_col {
        border: 1px solid #000000;
        border-radius: 0px;
    }
    .comp_39 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_4 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 60px !important;
    }
    .comp_40 {
        border: none;
        border-radius: 0px;
        margin-bottom: 10px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_40 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_40 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_41 {
        margin-bottom: 0px;
        margin-top: 20px;
        min-height: 0px;
    }
    .comp_41 .wa-v-icon-wrapper {
        align-items: center;
        height: 6rem;
        justify-content: center;
    }
    .comp_41 .wa-v-icon-wrapper i {
        font-size: 6rem;
    }
    .comp_42 {
        background-image: url('../../icons/bague_L_(2).jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
        border: none;
        display: none;
        min-height: 500px;
    }
    .comp_42 .innerBox .wa-wrap_video-bg {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
        min-height: 500px;
    }
    .comp_43 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_44 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_44 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_44 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_46 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .comp_46 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_46 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_47 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .comp_47 .wa-txt-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_47 .wa-txt-par.wa-last-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_48 {
        border: none;
        border-radius: 0px;
        display: none;
        min-height: 0px;
    }
    .comp_48 > .innerBox {
        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 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_5 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_5 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .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 {
        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_51 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_51 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_52 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_52 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_52 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_53 {
        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_53 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_53 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_54 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_55 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_55 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_55 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_56 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_57 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_57 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_57 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_58 {
        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_58 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_58 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_59 {
        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_59 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_59 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_6 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .comp_6 .wa-txt-par {
        font-size: 30px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_6 .wa-txt-par.wa-last-par {
        font-size: 30px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_60 {
        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_60 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_60 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_61 {
        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_61 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_61 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_62 {
        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_62 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_62 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_63 {
        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_63 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_63 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_64 {
        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_64 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_64 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_65 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_65 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_65 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_66 {
        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_66 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_66 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_67 {
        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_67 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_67 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_68 {
        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_68 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_68 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_69 {
        border: none;
        border-radius: 0px;
        display: none;
        min-height: 0px;
    }
    .comp_69 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_7 {
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 100px;
    }
    .comp_70 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_71 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_71 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_71 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_72 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 30px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_72 .wa-txt-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_72 .wa-txt-par.wa-last-par {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_73 {
        border: none;
        border-radius: 0px;
        margin-bottom: 5px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_73 .wa-txt-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_73 .wa-txt-par.wa-last-par {
        font-size: 25px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .comp_74 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_75 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_75 > .wa_inner_col {
        border: 1px solid #000000;
        border-radius: 0px;
    }
    .comp_75 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_76 {
        border: none;
        border-radius: 0px;
        margin-bottom: 10px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_76 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_76 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_77 {
        margin-bottom: 9px;
        margin-top: 16px;
        min-height: 0px;
    }
    .comp_77 .wa-v-icon-wrapper {
        align-items: center;
        height: 2rem;
        justify-content: center;
    }
    .comp_77 .wa-v-icon-wrapper i {
        font-size: 2rem;
    }
    .comp_78 {
        border: none;
        border-radius: 0px;
        display: none;
        min-height: 0px;
    }
    .comp_78 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_79 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_8 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 0px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_8 .wa-txt-par {
        font-size: 56px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_8 .wa-txt-par.wa-last-par {
        font-size: 56px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: right;
    }
    .comp_80 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_80 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_80 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_81 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .comp_81 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 3000px) );
    }
    .comp_82 {
        border: none;
        border-radius: 0px;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_82 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_82 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_83 {
        display: flex;
        margin-bottom: 5px !important;
        margin-top: 0px !important;
    }
    .comp_84 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_84 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_84 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_85 {
        border: 2px solid #5c5c5c;
        border-radius: 8rem 8rem 8rem 8rem;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 0px;
        padding-top: 16px;
    }
    .comp_85 .wa-txt-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_85 .wa-txt-par.wa-last-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_86 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_86 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_86 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_87 {
        border: 2px solid #5c5c5c;
        border-radius: 10rem 10rem 10rem 10rem;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 0px;
        padding-top: 16px;
    }
    .comp_87 .wa-txt-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_87 .wa-txt-par.wa-last-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_88 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_88 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_88 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_89 {
        border: 2px solid #5c5c5c;
        border-radius: 10rem 10rem 10rem 10rem;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 0px;
        padding-top: 16px;
    }
    .comp_89 .wa-txt-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_89 .wa-txt-par.wa-last-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_9 {
        background-image: url('../../icons/texture-1647380_1280_copie.jpg?t=2dd9cb31_f0a9_4e8d_a288_bfc74f5500f9');
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_9 .innerBox .wa-wrap_video-bg {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
        min-height: 0px;
    }
    .comp_90 {
        border: none;
        border-radius: 0px;
        display: flex;
        min-height: 0px;
    }
    .comp_90 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_91 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .comp_92 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_92 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_92 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_93 {
        border: none;
        border-radius: 0px;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .comp_93 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_93 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .comp_94 {
        display: flex;
        margin-bottom: 5px !important;
        margin-top: 0px !important;
    }
    .comp_95 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_95 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_95 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_96 {
        border: 2px solid #5c5c5c;
        border-radius: 8rem 8rem 8rem 8rem;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 0px;
        padding-top: 16px;
    }
    .comp_96 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_96 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_97 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_97 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_97 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .comp_98 {
        border: 2px solid #5c5c5c;
        border-radius: 10rem 10rem 10rem 10rem;
        margin-bottom: 10px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 0px;
        padding-top: 16px;
    }
    .comp_98 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_98 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 0.8;
        text-align: center;
    }
    .comp_99 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .comp_99 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .comp_99 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    body {
        background-image: url('');
    }
}
@keyframes wa_comp_42_kfrm {from {transform:scale(1.0);} to {transform:scale(1.4);}}


.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_back_sep {
    border-bottom: 1px solid #000000;
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item {
    color: rgba(0,0,0,1);
    font-family: 'Revalia';
    font-weight: 400;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item a {
    color: rgba(0,0,0,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item:hover {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item:hover a {
    color: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item:hover svg {
    fill: rgba(0,0,255,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item:hover:not(.waf_menu_item_search) {
    background-color: rgba(187,187,187,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_generic_header {
    background-color: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item {
    color: rgba(17,17,17,1);
    font-family: 'Revalia';
    font-weight: 400;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item:hover {
    background-color: rgba(232,232,232,1);
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item:hover a {
    color: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item:hover svg {
    fill: rgba(17,17,17,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_layout {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.blockcomp-0-comp_0 {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-0-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-0-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-0-comp_2 {
    flex-direction: column;
}
.blockcomp-0-comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-0-comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-0-comp_3 {
    width: 100%;
}
.blockcomp-0-comp_3 .waf_menu {
    --bubble-bg-color: rgba(238,232,237,1);
    --bubble-text-color: rgba(0,0,0,1);
    --panel-bg-color: rgba(255,255,255,1);
    --panel-header-text-color: rgba(255,255,255,1);
    --panel-orientation: left;
    --panel-text-color: rgba(17,17,17,1);
}
.blockcomp-0-comp_3 .waf_menu-mini-btn {
    background-color: rgba(254,244,49,0);
    border-color: rgba(119,119,119,1);
    border-style: solid;
    border-width: 1px;
}
.blockcomp-0-comp_3 .waf_menu-mini-btn-wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}
.blockcomp-0-comp_3 .waf_menu-mini-btn:hover {
    background-color: rgba(254,244,49,0);
    border-color: rgba(119,119,119,1);
}
.blockcomp-0-comp_3 .waf_menu-mini-btn:hover svg path {
    fill: rgba(51,51,51,1);
}
.blockcomp-0-comp_3 nav {
    background-color: rgba(249,249,249,1);
    color: rgba(119,119,119,1);
    font-family: 'Revalia';
    font-weight: 400;
}
.blockcomp-0-comp_3 nav > ul > li {
    align-items: center;
    display: flex;
    justify-content: start;
}
.blockcomp-0-comp_3 nav > ul > li > .waf-nav-link {
    align-items: center;
    color: rgba(119,119,119,1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_3 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    display: flex;
}
.blockcomp-0-comp_3 nav > ul > li > .waf-nav-link > .waf_menu_icn > svg {
    fill: rgba(119,119,119,1);
}
.blockcomp-0-comp_3 nav > ul > li > .waf-nav-link > .waf_menu_label {
    display: flex;
    flex-grow: 5;
}
.blockcomp-0-comp_3 nav > ul > li > .waf_menu_search {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.blockcomp-0-comp_3 nav > ul > li:hover > .waf-nav-link {
    color: rgba(68,68,68,1);
}
.blockcomp-0-comp_3 nav > ul > li:hover > .waf-nav-link > .waf_menu_icn >svg {
    fill: rgba(68,68,68,1);
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f > .waf_menu_panel_icon_wrap {
    height: 48px;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item {
    font-size: 13px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_generic_header {
    font-size: 1.3rem;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item {
    font-size: 13px;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item a {
    font-size: 13px;
}
.COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_size {
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
}
.blockcomp-0-comp_0 {
    border: none;
    border-radius: 0px;
    display: flex;
    min-height: 0px;
}
.blockcomp-0-comp_0 > .innerBox {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-0-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-0-comp_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 {
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-0-comp_3 .waf_menu {
    --bubble-content-column: 1;
    --bubble-content-font-size: 5.2px;
    --bubble-content-width: 350px;
    --bubble-flow-horz: 1;
    --panel-content-font-size: 5.2px;
    --panel-content-width: 380px;
}
.blockcomp-0-comp_3 .waf_menu > ul {
    flex-direction: row;
    width: unset;
}
.blockcomp-0-comp_3 .waf_menu > ul > .waf_menu_sep {
    border-bottom: none;
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0);
    border-top: none;
}
.blockcomp-0-comp_3 .waf_menu-mini-btn {
    border-radius: 4.5px;
    height: 45px;
    width: 45px;
}
.blockcomp-0-comp_3 .waf_menu-mini-btn-wrapper {
    display: flex !important;
    justify-content: end;
}
.blockcomp-0-comp_3 nav {
    border: none;
    border-radius: 0px;
    display: none !important;
    font-size: 13px;
    justify-content: end;
    min-height: 2rem;
}
.blockcomp-0-comp_3 nav > ul > li > .waf-nav-link {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-0-comp_3 nav > ul > li > .waf-nav-link > .waf_menu_icn {
    height: 13px;
    width: 13px;
}
.blockcomp-0-comp_3 nav > ul > li > .waf_menu_search {
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 992px) {
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f > .waf_menu_panel_icon_wrap {
        height: 48px;
    }
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item {
        font-size: 13px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_bubble_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_generic_header {
        font-size: 1.3rem;
    }
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_item a {
        font-size: 13px;
    }
    .COMP_MENU_MATCHER_ef423f98_cbe3_4635_8ed8_7863027f308f.waf_menu_panel_item.waf_menu_generic_size {
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
    }
    .blockcomp-0-comp_0 {
        border: none;
        border-radius: 0px;
        display: none;
        min-height: 0px;
    }
    .blockcomp-0-comp_0 > .innerBox {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-0-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-0-comp_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 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-0-comp_3 .waf_menu {
        --bubble-content-column: 1;
        --bubble-content-font-size: 5.2px;
        --bubble-content-width: 350px;
        --bubble-flow-horz: 1;
        --panel-content-font-size: 5.2px;
        --panel-content-width: 380px;
    }
    .blockcomp-0-comp_3 .waf_menu > ul {
        flex-direction: row;
        width: unset;
    }
    .blockcomp-0-comp_3 .waf_menu > ul > .waf_menu_sep {
        border-bottom: none;
        border-left: none;
        border-right: 1px solid rgba(0,0,0,0);
        border-top: none;
    }
    .blockcomp-0-comp_3 .waf_menu-mini-btn {
        border-radius: 4.5px;
        height: 45px;
        width: 45px;
    }
    .blockcomp-0-comp_3 .waf_menu-mini-btn-wrapper {
        display: none !important;
        justify-content: end;
    }
    .blockcomp-0-comp_3 nav {
        border: none;
        border-radius: 0px;
        display: flex !important;
        font-size: 13px;
        justify-content: end;
        min-height: 2rem;
    }
    .blockcomp-0-comp_3 nav > ul > li > .waf-nav-link {
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-0-comp_3 nav > ul > li > .waf-nav-link > .waf_menu_icn {
        height: 13px;
        width: 13px;
    }
    .blockcomp-0-comp_3 nav > ul > li > .waf_menu_search {
        padding-left: 16px;
        padding-right: 16px;
    }
}



                                    .blockcomp-1-comp_3 {
                                       filter: drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 1px black);
                                        animation: bg-shift .5s linear infinite alternate, fade-in-out 4s ease-in-out forwards infinite;
                                    }
                                    @keyframes bg-shift{
                                        from{ background-position: 0 -30px; }
                                        to{ background-position: 0 30px;  }
                                    }
                                    @keyframes fade-in-out{
                                        0%{ filter:drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)blur(200px); }
                                        25%{ filter:drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)blur(0); }
                                        75%{ filter:drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)blur(0); }
                                        100%{ filter:drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)drop-shadow(0 0 1px black)blur(200px); }
                                    }
                                    @media only screen and (max-width: 990px){
                                        .text-effect{ font-size: 80px; }
                                    }
                                    @media only screen and (max-width: 767px){
                                        .text-effect{ font-size: 60px; }
                                    }
                                    @media only screen and (max-width: 576px){
                                        .text-effect{ font-size: 45px; }
                                    }

.blockcomp-1-comp_0 {
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
}
.blockcomp-1-comp_0 .innerBox {
    position: relative;
}
.blockcomp-1-comp_0 .innerBox .wa-wrap_video-bg {
    position: relative;
}
.blockcomp-1-comp_0 .wa-inner-kenburns > .kb-animation {
    animation: wa_blockcomp-1-comp_0_kfrm 10500ms linear;
    transform: scale(1.2);
}
.blockcomp-1-comp_0 .wa-inner-kenburns > div {
    background-position: center center;
    background-size: cover;
    transform-origin: 50% 50%;
}
.blockcomp-1-comp_0 > .innerBox {
    display: inherit;
    flex-direction: inherit;
}
.blockcomp-1-comp_0 > .innerBox > .row {
    z-index: 0;
}
.blockcomp-1-comp_1 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_10 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_10 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_10 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_11 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_11 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_11 .wa-txt-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_11 .wa-txt-par a:hover {
    color: rgba(202,161,34,1);
    text-decoration: underline;
}
.blockcomp-1-comp_11 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_11 .wa-txt-par.wa-last-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_11 .wa-txt-par.wa-last-par a:hover {
    color: rgba(202,161,34,1);
    text-decoration: underline;
}
.blockcomp-1-comp_12 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_12 .wa-txt-par {
    color: rgba(33,37,41,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_12 .wa-txt-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_12 .wa-txt-par a:hover {
    color: rgba(202,161,34,1);
    text-decoration: underline;
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
    color: rgba(33,37,41,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par a:hover {
    color: rgba(202,161,34,1);
    text-decoration: underline;
}
.blockcomp-1-comp_13 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_14 {
    flex-direction: column;
}
.blockcomp-1-comp_14 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_14 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_15 {
    display: flex;
    width: 100%;
}
.blockcomp-1-comp_15 .wa-image-wrap {
    aspect-ratio: 767/761;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 767px) );
}
.blockcomp-1-comp_15 .wa-image-wrap > div {
    aspect-ratio: 767/761;;
    position: relative;
    width: 100%;
}
.blockcomp-1-comp_15 .wa-image-wrap img {
    aspect-ratio: 767/761;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-1-comp_16 {
    flex-direction: column;
}
.blockcomp-1-comp_16 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_16 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_17 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_17 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_17 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_17 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_17 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_18 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_19 {
    flex-direction: column;
}
.blockcomp-1-comp_19 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_19 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_2 {
    flex-direction: column;
}
.blockcomp-1-comp_2 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_20 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_20 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_20 .wa-txt-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_20 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_20 .wa-txt-par.wa-last-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_21 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_22 {
    flex-direction: column;
}
.blockcomp-1-comp_22 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_22 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_23 {
    background-color: rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_23 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_23 .wa-txt-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_23 .wa-txt-par a:hover {
    color: rgba(203,195,39,1);
    text-decoration: underline;
}
.blockcomp-1-comp_23 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_23 .wa-txt-par.wa-last-par a {
    color: rgba(255,255,255,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_23 .wa-txt-par.wa-last-par a:hover {
    color: rgba(203,195,39,1);
    text-decoration: underline;
}
.blockcomp-1-comp_24 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_25 {
    flex-direction: column;
}
.blockcomp-1-comp_25 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_25 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_26 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_26 .wa-txt-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_26 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_26 .wa-txt-par.wa-last-par {
    color: rgba(224,224,224,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_26 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_27 {
    flex-direction: column;
}
.blockcomp-1-comp_27 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_27 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_28 {
    display: flex;
    width: 100%;
}
.blockcomp-1-comp_28 .wa-btn {
    background-color: rgba(39,142,193,0);
    border-color: rgba(0,0,0,1);
    color: rgba(202,161,34,1);
    font-family: 'Revalia';
    font-weight: 400;
}
.blockcomp-1-comp_28 .wa-btn.wa-btn.wa-btn-icon-left .wa-btn-icon-vector {
    margin-left: .5em;
    margin-right: .25em;
}
.blockcomp-1-comp_28 .wa-btn.wa-btn:active {
    background-color: rgba(39,142,193,0);
    border-color: rgba(0,0,0,1);
    color: rgba(202,161,34,1);
}
.blockcomp-1-comp_28 .wa-btn.wa-btn:hover {
    background-color: rgba(39,142,193,0);
    border-color: rgba(255,255,255,1);
    color: rgba(149,89,20,1);
}
.blockcomp-1-comp_28 a {
    display: flex;
    text-decoration: none;
}
.blockcomp-1-comp_28 div {
    justify-content: center;
}
.blockcomp-1-comp_3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_3 .wa-txt-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_3 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
    color: rgba(152,121,26,1);
    font-family: 'Revalia';
    font-weight: 400;
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_3 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_4 {
    --bs-gutter-x: 0px;
    flex-direction: row;
}
.blockcomp-1-comp_5 {
    flex-direction: column;
}
.blockcomp-1-comp_5 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_6 {
    animation: lightSpeedIn;
    animation-duration: 1000ms;
    display: flex;
    width: 100%;
}
.blockcomp-1-comp_6 .wa-image-second-inner {
    background-image: url("../../images/big/shutterstock_719053015.jpg?t=");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(70%);
    height: 100%;
    opacity: 0;
    transition: all .5s ease;
    width: 100%;
}
.blockcomp-1-comp_6 .wa-image-second-inner div {
    background-color: rgba(0,0,0,0);
    height: 100%;
    width: 100%;
}
.blockcomp-1-comp_6 .wa-image-wrap {
    aspect-ratio: 767/761;;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: calc( min( 100% , 767px) );
}
.blockcomp-1-comp_6 .wa-image-wrap .wa-image-fx {
    animation: fadeInUp 0.8s;
}
.blockcomp-1-comp_6 .wa-image-wrap .wa-image-txt {
    opacity: 0;
    text-align: left;
}
.blockcomp-1-comp_6 .wa-image-wrap .wa-img-overlay {
    align-items: center;
    color: rgba(255,255,255,1);
    font-family: 'Revalia';
    font-weight: 400;
    justify-content: center;
}
.blockcomp-1-comp_6 .wa-image-wrap > div {
    aspect-ratio: 767/761;;
    position: relative;
    width: 100%;
}
.blockcomp-1-comp_6 .wa-image-wrap img {
    aspect-ratio: 767/761;;
    position: relative;
    vertical-align: top;
    width: 100%;
}
.blockcomp-1-comp_6 .wa-image-wrap:hover .wa-image-second-inner {
    opacity: 1;
    transform: rotate(15deg);
}
.blockcomp-1-comp_7 {
    flex-direction: column;
}
.blockcomp-1-comp_7 > .wa_inner_col {
    display: flex;
    flex-direction: inherit;
    height: 100%;
}
.blockcomp-1-comp_7 > .wa_inner_col > .wa_inner_col2 {
    display: inherit;
    flex-direction: inherit;
    height: 100%;
    justify-content: flex-start;
}
.blockcomp-1-comp_8 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_8 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_8 .wa-txt-par a {
    color: rgba(248,246,239,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_8 .wa-txt-par a:hover {
    color: rgba(254,244,49,1);
    text-decoration: underline;
}
.blockcomp-1-comp_8 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_8 .wa-txt-par.wa-last-par a {
    color: rgba(248,246,239,1);
    font-weight: normal;
    text-decoration: none;
}
.blockcomp-1-comp_8 .wa-txt-par.wa-last-par a:hover {
    color: rgba(254,244,49,1);
    text-decoration: underline;
}
.blockcomp-1-comp_9 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}
.blockcomp-1-comp_9 .wa-txt-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 1em;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_9 .wa-txt-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
    color: rgba(255,255,255,1);
    font-family: 'Arial';
    margin-bottom: 0px;
    width: 100%;
    word-break: break-word;
    &:not(:last-child) {margin-bottom: 16px !important;} 
}
.blockcomp-1-comp_9 .wa-txt-par.wa-last-par a {
    color: rgba(0,0,255,1);
    font-weight: normal;
    text-decoration: underline;
}
.blockcomp-1-comp_0 {
    background-image: url('../../icons/shutterstock_770654959.jpg?t=');
    border: none;
    display: flex;
    min-height: 250px;
}
.blockcomp-1-comp_0 .innerBox .wa-wrap_video-bg {
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
    min-height: 250px;
}
.blockcomp-1-comp_1 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_10 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_10 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_11 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_11 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_11 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_12 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_12 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_13 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_14 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_14 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_14 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_15 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 0px;
}
.blockcomp-1-comp_15 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 767px) );
}
.blockcomp-1-comp_16 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_16 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_16 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-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-1-comp_17 .wa-txt-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_17 .wa-txt-par.wa-last-par {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_18 {
    display: flex;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_19 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_19 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_19 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_2 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_2 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_20 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_20 .wa-txt-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-1-comp_20 .wa-txt-par.wa-last-par {
    font-size: 10px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-1-comp_21 {
    display: none;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_22 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_22 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_22 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_23 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_23 .wa-txt-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-1-comp_23 .wa-txt-par.wa-last-par {
    font-size: 12px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-1-comp_24 {
    display: none;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_25 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_25 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_25 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_26 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_26 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-1-comp_26 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: center;
}
.blockcomp-1-comp_27 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_27 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_27 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_28 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 7px;
}
.blockcomp-1-comp_28 .wa-btn {
    font-size: 1em;
}
.blockcomp-1-comp_28 .wa-btn.wa-btn-rounded {
    border-radius: 0.5em;
}
.blockcomp-1-comp_28 a {
    width: unset;
}
.blockcomp-1-comp_28 div {
    width: unset;
}
.blockcomp-1-comp_3 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 10px;
    min-height: 0px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}
.blockcomp-1-comp_3 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_4 {
    display: none;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.blockcomp-1-comp_5 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_5 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 0rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 0rem;
}
.blockcomp-1-comp_6 {
    justify-content: center;
    margin-bottom: 0px;
    margin-top: 30px;
}
.blockcomp-1-comp_6 .wa-image-wrap {
    border: none;
    border-radius: 0px;
    max-width: calc( min( 100% , 767px) );
}
.blockcomp-1-comp_6 .wa-image-wrap .wa-img-overlay {
    font-size: 13px;
}
.blockcomp-1-comp_7 {
    min-height: 0px;
    padding-left: 0rem;
    padding-right: 0rem;
}
.blockcomp-1-comp_7 > .wa_inner_col {
    border: none;
    border-radius: 0px;
}
.blockcomp-1-comp_7 > .wa_inner_col > .wa_inner_col2 {
    gap: 0px;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-top: 1rem;
}
.blockcomp-1-comp_8 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_8 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_8 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_9 {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-height: 0px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0px;
}
.blockcomp-1-comp_9 .wa-txt-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
.blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.2;
    text-align: left;
}
@media (min-width: 992px) {
    .blockcomp-1-comp_0 {
        background-image: url('../../icons/shutterstock_770654959.jpg?t=');
        border: none;
        display: flex;
        min-height: 250px;
    }
    .blockcomp-1-comp_0 .innerBox .wa-wrap_video-bg {
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
        min-height: 250px;
    }
    .blockcomp-1-comp_1 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_10 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_10 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_10 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_11 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_11 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_11 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_12 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_12 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_12 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_13 {
        display: none;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_14 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_14 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_14 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_15 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .blockcomp-1-comp_15 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 767px) );
    }
    .blockcomp-1-comp_16 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_16 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_16 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-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-1-comp_17 .wa-txt-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_17 .wa-txt-par.wa-last-par {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_18 {
        display: none;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_19 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_19 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_19 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_2 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_2 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_2 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_20 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_20 .wa-txt-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-1-comp_20 .wa-txt-par.wa-last-par {
        font-size: 10px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-1-comp_21 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_22 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_22 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_22 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_23 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_23 .wa-txt-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-1-comp_23 .wa-txt-par.wa-last-par {
        font-size: 12px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-1-comp_24 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_25 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_25 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_25 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_26 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_26 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-1-comp_26 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: center;
    }
    .blockcomp-1-comp_27 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_27 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_27 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_28 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 7px;
    }
    .blockcomp-1-comp_28 .wa-btn {
        font-size: 1em;
    }
    .blockcomp-1-comp_28 .wa-btn.wa-btn-rounded {
        border-radius: 0.5em;
    }
    .blockcomp-1-comp_28 a {
        width: unset;
    }
    .blockcomp-1-comp_28 div {
        width: unset;
    }
    .blockcomp-1-comp_3 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 10px;
        min-height: 0px;
        padding-bottom: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    .blockcomp-1-comp_3 .wa-txt-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_3 .wa-txt-par.wa-last-par {
        font-size: 32px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_4 {
        display: flex;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
    .blockcomp-1-comp_5 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_5 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_5 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 0rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 0rem;
    }
    .blockcomp-1-comp_6 {
        justify-content: center;
        margin-bottom: 0px;
        margin-top: 30px;
    }
    .blockcomp-1-comp_6 .wa-image-wrap {
        border: none;
        border-radius: 0px;
        max-width: calc( min( 100% , 767px) );
    }
    .blockcomp-1-comp_6 .wa-image-wrap .wa-img-overlay {
        font-size: 13px;
    }
    .blockcomp-1-comp_7 {
        min-height: 0px;
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .blockcomp-1-comp_7 > .wa_inner_col {
        border: none;
        border-radius: 0px;
    }
    .blockcomp-1-comp_7 > .wa_inner_col > .wa_inner_col2 {
        gap: 0px;
        margin-bottom: 1rem;
        margin-left: 0rem;
        margin-right: 0rem;
        margin-top: 1rem;
    }
    .blockcomp-1-comp_8 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_8 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_8 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_9 {
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        min-height: 0px;
        padding-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0px;
    }
    .blockcomp-1-comp_9 .wa-txt-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
    .blockcomp-1-comp_9 .wa-txt-par.wa-last-par {
        font-size: 16px;
        letter-spacing: 0em;
        line-height: 1.2;
        text-align: left;
    }
}
@keyframes wa_blockcomp-1-comp_0_kfrm {from {transform:scale(1.0);} to {transform:scale(1.2);}}
