main{--gr:rgb(0,168,31);--or:rgb(255,153,0);--rd:rgb(208,0,0);}    @media print {  
        /* Force background colors and images to print */  
        * {  
            -webkit-print-color-adjust: exact !important;  
            print-color-adjust: exact !important;  
            color-adjust: exact !important;  
            text-shadow: none !important;  
            -webkit-text-stroke: 0 !important;  
            font-weight: normal !important;  
            letter-spacing: normal !important;  
        }  
    }  

    p, h1, h2, h3, h4, h5, h6, span, div {  
        transform: translateZ(0);  
        -webkit-transform: translateZ(0);  
        backface-visibility: hidden;  
        -webkit-backface-visibility: hidden;  
    }  

    .fa,  
    .fas,  
    .far,  
    .fal,  
    .fab,  
    .fa-solid,  
    .fa-regular,  
    .fa-light,  
    .fa-thin,  
    .fa-duotone,  
    .fa-brands {  
        font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome" !important;  
        visibility: visible !important;  
        display: inline-block !important;  
    }  

    /* If you're using specific weight icons, include these as needed */
    .fa-solid, .fas {  
        font-weight: 900 !important;  
    }  

    .fa-regular, .far {  
        font-weight: 400 !important;  
    }
.sb {  
  transition: opacity 0.5s ease;  
}  

.supa {  
  transition: opacity 0.5s ease;  
}  


.loadText{
  font-family: Rubik;
  font-weight: 600;
  color: white;
  font-size: 1.25rem;
}


#googleSignIn {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


.broadcasting {
  background-color: '#ffbf00';
  color: black;
}

/* ───────────────── GLOBAL SAFE-AREA VARS ───────────────── */
:root {
  --safe-top:    env(safe-area-inset-top,    0px);
  --safe-right:  env(safe-area-inset-right,  0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left,   0px);
}

/* ───────────────── html / body ───────────────── */
html,
body {
  margin: 0;                         /* remove default whitespace          */
  overflow: hidden;                  /* keep your original setting         */
  overscroll-behavior: none;         /* disable pull-to-refresh bounce     */

  /* use the dynamic viewport height so the bottom gesture area
     doesn’t create a white strip */
  min-height: 100dvh;                /* modern browsers */
  /* fallback for older iOS / Android (<108) */
  min-height: calc(100vh - var(--safe-bottom));

  /* safe-area padding so content is never under OS chrome */
  padding: var(--safe-top) var(--safe-right)
           var(--safe-bottom) var(--safe-left);
  /* you already rely on padding-bottom—this merges the two */
  background: #000;                  /* match your site’s bg (needed for
                                        body::after to blend seamlessly)  */
}

/* ───────────────── full-screen wrapper ───────────────── */
/* You already use a JS-set --vh custom variable.          */
/* Keep it: it still works, but the min-height fixes the   */
/* gap even on browsers that ignore custom JS variables.   */
.fullscreen-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);  /* use JS var if present, else vh */
  /* optional: if you want it scrollable inside the container
     replace overflow:hidden with overflow:auto                  */
  overflow: hidden;
}

/* ───────────────── visual plug for very old browsers ───────────────── */
/* On *really* old engines that ignore safe-area vars we paint           */
/* a strip the same colour as the site background.                       */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  /* env() returns 0 on browsers that don’t support it, so this
     only shows where needed. */
  height: var(--safe-bottom);
  background: #000;                  /* same as body background */
  z-index: 9999;
  pointer-events: none;
}
/* ——————————————————————————————————————
   Basic button styling
   —————————————————————————————————————— */
#buy-button {
  position: relative;
  padding: 12px 24px;
  background: #28a745;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}

/* ——————————————————————————————————————
   Hold‑feedback overlay
   —————————————————————————————————————— */
#buy-button.holding::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.4);
  animation: hold-progress 3s linear forwards;
}

/* ——————————————————————————————————————
   Progress animation
   —————————————————————————————————————— */
@keyframes hold-progress {
  from { width: 0%; }
  to   { width: 100%; }
}
/* Inputs & Dropdown */
.input-field {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Button */
.button {
  background: #007bff;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.button:hover { background: #0056b3; }

/* Feedback */
.feedback {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.feedback.error   { color: #c92a2a; }
.feedback.success { color: #2f9e44; }


.swal2-popup, .swal2-modal{
    font-family: Rubik;
    background-color: #101729;
    color:white;
    border-radius: 1rem;
    opacity: .94;
}


.swal2-success-fix,.swal2-success-ring,.swal2-success-circular-line-right,
.swal2-success-circular-line-left{
    display: none;;
}

/* Give ALL SweetAlert modals your dark theme */
.swal2-popup {
  background: #101729 !important;
  color: #fff !important;
  font-family: Rubik, "Segoe UI", sans-serif;
}

/* Make all swal2-inputs bigger, rounder, bright for numbers */
.swal2-popup input[type="number"].swal2-input {
  font-family: Rubik;
  font-size: 2.5rem !important;
  font-weight: 700;
  border: none;
  box-shadow: none;
  background: transparent !important;
  color: #FFD944 !important;    /* coin-yellow by default */
  width: 20rem !important;
  min-width: 20rem;
  margin: 0 16px 0 4px;
  outline: none !important;
  text-align: left;
}

/* Label or container to indicate which field is which */
/* (You can style your label, or add a class instead) */
.swal2-popup label[for="swal-input-dollars"]::before {
  content: 'Coins: ';
  color: #FFD944;
  font-weight: 700;
  font-size: 1.2em;
  margin-right: 5px;
}
.swal2-popup label[for="swal-input-gems"]::before {
  content: 'Gems: ';
  color: #38E8FF;
  font-weight: 700;
  font-size: 1.15em;
  margin-right: 5px;
}

/* Turn gems number input blue */
.swal2-popup #swal-input-gems.swal2-input {
  color: #38E8FF !important;
}

/* Make description and rest neutral */
.swal2-popup textarea#swal-input-desc {
  font-family: Rubik;
  font-size: 1.07em;
  border-radius: 7px;
  background: #192037;
  color: #e0e0ff;
  border: 1px solid #34405c;
  padding: 8px 10px;
  margin-top: 7px;
  width: 80%;
}

/* Remove spinner arrows for Chrome, Safari, Edge (Webkit) */
#coins-input[type="number"], #gems-input[type="number"] {
  /* All the visual styles match the span exactly: */
  font-size: 2.15em !important;
  font-family: Rubik, "Segoe UI", sans-serif !important;
  font-weight: 900 !important;
  color: #FFD944 !important;
  text-align: center;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  width: 1.8em !important;
  min-width: 1.2em;
  margin: 0;
  padding: 0;
  caret-color: #fff;
}

#gems-input[type="number"] {
  color: #38E8FF !important; /* Blue for gems */
}

#coins-input::-webkit-inner-spin-button,
#coins-input::-webkit-outer-spin-button,
#gems-input::-webkit-inner-spin-button,
#gems-input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
#coins-input[type="number"],
#gems-input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}


#coins-input, #gems-input { cursor: text !important; }
.editable-num { cursor: pointer; }
       .user-btn, .select-btn {
         cursor: pointer;
	font-family:'Rubik';
	font-weight:600;
       }


       .user-btn.selected, .select-btn.selected {
         background: #007bff;
         color: #fff;
       }


.class2a {
	background:#e0f7fa1a;
	color:#2db8c9;

}

.class2a.selected {
	color:#ffffff;
	background:#2db8c9;
}

.class2a.dh-active {
	color:#ffffff;
	background:#2db8c9;
}


.class3a {
	background:#00e6391a;
	color:#00e639;
}

.class3a.selected, .class3a.dh-active {
	color:#ffffff;
	background:#00e639;
}


.class3b {
	background:#ff00901a;
	color:#ff0092;
}

.class3b.selected, .class3b.dh-active {
	color:#ffffff;
	background:#ff0092;
}


.class4b {
	background:#3a0d4ea6;
	color:#F5C8FE;
}

.class4b.selected, .class4b.dh-active {
	color:#ffffff;
	background:#390D4E;
}



main {color:rgba(0,0,0,1.00);position:relative;font-size:16px;background:rgba(255,255,255,1.00);min-height:100vh;font-family:Inter;font-weight:400;line-height:1.4;}main container{width:100%;display:block;max-width:1280px;margin-top:0px;margin-left:auto;margin-right:auto;padding-left:20px;margin-bottom:0px;padding-right:20px;}main h2{font-size:42px;margin-top:0px;font-weight:700;margin-bottom:0px;}main h1{font-size:60px;margin-top:0px;font-weight:700;margin-bottom:0px;}main h3{font-size:32px;margin-top:0px;margin-bottom:0px;}main h4{font-size:24px;margin-top:0px;font-weight:700;margin-bottom:0px;}main h5{font-size:20px;margin-top:0px;font-weight:700;margin-bottom:0px;}main h6{font-size:16px;margin-top:0px;font-weight:700;margin-bottom:0px;}main p{margin-top:0px;margin-bottom:0px;}main .stylesheet-part{padding:60px 0px 60px 0px;border-bottom:1px solid rgba(223,223,223,1.00);}@media screen and (max-width: 991px) {main .stylesheet-part{padding:40px 0px 40px 0px;}}main ul{padding-left:20px;}main ol{padding-left:20px;}main img{display:block;max-width:100%;}main textarea{resize:vertical;}main .button-primary{color:rgba(255,255,255,1.00);border:1px solid rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:12px;padding-left:20px;padding-right:20px;padding-bottom:12px;}main .button-primary:hover{color:rgba(0,0,0,1.00);background:rgba(255,255,255,1.00);}main a{cursor:pointer;transition:all 200ms 0ms linear;text-decoration:none;}main .button-secondary{color:rgba(0,0,0,1.00);border:1px solid rgba(0,0,0,1);background:rgba(255,255,255,1.00);padding-top:12px;padding-left:20px;padding-right:20px;padding-bottom:12px;}main .button-secondary:hover{color:rgba(255,255,255,1.00);background:rgba(0,0,0,1.00);}main button{cursor:pointer;border:1px none rgba(0,0,0,1);}main component{display:block;}main .rich-text-dh-styling  hr{width:100%;border:0px solid rgba(0,0,0,1);height:1px;display:block;border-top:1px solid rgb(203,203,203);margin-top:20px;padding-top:0px;margin-bottom:20px;padding-bottom:0px;}main .rich-text-dh-styling{display:flex;row-gap:24px;flex-direction:column;}main blockquote{display:block;background:#00000008;margin-left:0px;padding-top:15px;margin-right:0px;padding-left:15px;border-radius:6px;padding-right:15px;padding-bottom:15px;}main blockquote  cite{color:rgb(139,139,139);display:block;margin-top:10px;font-weight:500;padding-left:15px;}main .content-wrapper{padding-left:1rem;}main .assignment-card{border-radius:1rem;border:.5rem solid rgba(0,0,0,1);width:50rem;height:10rem;}main .assignment-wrapper{align-self:flex-start;}main .percent-worth{color:rgb(68,68,68);font-family:'Rubik';font-weight:400;font-size:2rem;text-align:center;}main .percent-container{position:absolute;width:20rem;height:8rem;}main .number-done{font-family:'Rubik';font-weight:700;font-size:2.25rem;}main .menu-button{font-size:1rem;}main .positive{color:#00f090;}main .negative{color:rgb(224,0,75);}main .hex-badge{max-width:;width:6rem;}body main .t7{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t7{row-gap:30px;grid-template-columns:1fr ;}}body main .t9{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t9{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t10{color:rgba(163,117,255,1.00);}}body main .t18{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t18{row-gap:30px;grid-template-columns:1fr ;}}body main .t20{display:flex;row-gap:40px;column-gap:40px;}body main .t22{display:flex;flex-direction:column;}body main .t23{display:flex;flex-direction:column;}body main .t24{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t27{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t29{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t29{row-gap:30px;grid-template-columns:1fr ;}}body main .t30{display:flex;row-gap:25px;flex-direction:column;}body main .t34{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t36{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t37{display:flex;column-gap:100px;}body main .t40{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t48{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t56{color:rgba(163,117,255,1.00);}}body main .t58{width:816px;height:1056px;max-width:816px;min-height:1056px;margin-bottom:25px;}body main .t59{width:816px;height:1056px;display:flex;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;justify-content:center;}body main .t69{min-height:816px;}body main .t70{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}body main .t71{width:100%;height:100%;display:flex;position:relative;align-items:flex-start;margin-bottom:25px;flex-direction:column;}body main .t72{width:100%;display:grid;row-gap:40px;column-gap:40px;margin-bottom:25px;padding-bottom:25px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}body main .t73{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}body main .t77{top:0%;left:0%;right:auto;width:100%;border:3px dotted var(--gr);bottom:auto;height:100%;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;padding-bottom:10px;}body main .t78{top:0%;left:0%;right:auto;width:100%;border:3px dotted var(--or);bottom:auto;height:100%;position:absolute;}body main .t79{top:0%;left:0%;right:auto;width:100%;border:3px dotted var(--rd);bottom:auto;height:100%;position:absolute;}body main .t80{width:100%;height:100%;}body main .t81{width:100%;height:100%;display:grid;row-gap:0px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}body main .t82{height:14rem;display:flex;overflow:hidden;position:relative;flex-wrap:nowrap;font-family:'Rubik';padding-top:25px;padding-left:25px;padding-right:25px;flex-direction:column;padding-bottom:25px;justify-content:center;}body main .t83{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t84{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t85{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t87{font-family:'Rubik';}body main .t89{width:816px;height:1056px;max-width:816px;min-height:1056px;}body main .t90{width:816px;border:1px solid rgba(0,0,0,1);height:1056px;display:flex;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;justify-content:center;}body main .t91{width:100%;height:100%;display:flex;position:relative;}body main .t92{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}body main .t93{display:flex;row-gap:14px;position:relative;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}body main .t94{font-family:'Rubik';}body main .t95{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;padding-bottom:10px;}body main .t98{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;position:absolute;}body main .t99{font-size:18px;font-family:'Rubik';}body main .t101{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;position:absolute;}body main .t102{min-height:816px;}body main .t103{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}body main .t104{width:100%;height:100%;}body main .t105{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}body main .t106{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}body main .t107{top:0%;left:0%;right:auto;width:100%;border:3px solid rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}body main .t108{top:0%;left:0%;right:auto;width:100%;border:3px solid rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t109{top:0%;left:0%;right:auto;width:100%;border:3px solid rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t110{line-height:2.5;}body main .t118{min-height:816px;font-family:'League Spartan';}body main .t119{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}body main .t120{width:100%;height:100%;}body main .t121{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}body main .t122{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}body main .t123{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t124{line-height:1.25;}body main .t125{line-height:1.25;}body main .t126{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t127{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t128{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t129{font-size:1rem;font-weight:300;}body main .t130{display:flex;flex-direction:column;}body main .t131{margin-top:1rem;}body main .t132{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t133{position:static;min-height:816px;font-family:'League Spartan';}body main .t134{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}body main .t135{width:100%;display:flex;}body main .t136{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}body main .t137{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}body main .t138{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t139{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t140{display:flex;flex-direction:column;}body main .t141{font-size:1rem;font-weight:300;}body main .t142{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t143{margin-top:1rem;}body main .t144{line-height:1.25;}body main .t145{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t146{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t147{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t148{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}body main .t149{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t150{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t151{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t152{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t153{align-self:center;font-style:italic;font-weight:500;}body main .t154{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t155{line-height:1;}body main .t156{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t157{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t158{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t159{line-height:1;}body main .t160{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t161{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t162{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t163{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t164{color:var(--or);font-size:1.2rem;line-height:1;}body main .t165{height:1.2rem;}body main .t166{line-height:1;}body main .t167{line-height:1;}body main .t168{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t169{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t170{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t171{font-size:1.2rem;line-height:1;}body main .t172{height:1.2rem;}body main .t173{line-height:1;}body main .t174{line-height:1;}body main .t175{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t176{font-size:.75rem;}body main .t177{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t178{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t179{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t180{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t181{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t182{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t183{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}body main .t184{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t185{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t186{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t187{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t188{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t189{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t190{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t191{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t192{font-size:1.2rem;line-height:1;}body main .t193{min-height:816px;font-family:'League Spartan';}body main .t194{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}body main .t195{width:100%;height:100%;}body main .t196{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}body main .t197{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}body main .t198{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t199{display:flex;flex-direction:column;}body main .t200{font-size:1rem;font-weight:300;}body main .t201{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t202{margin-top:1rem;}body main .t203{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t204{line-height:1.25;}body main .t205{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t206{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t207{line-height:1.25;}body main .t208{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t209{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t210{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t211{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t212{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t213{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t214{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}body main .t215{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t216{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t217{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t218{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t219{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t220{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t221{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t222{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t223{font-size:1.2rem;line-height:1;}body main .t224{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t225{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t240{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t241{font-size:1.25rem;}body main .t242{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t243{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t244{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t245{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t246{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t248{color:#ffbb00;font-size:2.5rem;}body main .t249{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t250{display:flex;column-gap:1rem;}body main .t251{color:var(--or);}body main .t252{color:rgb(255,0,247);}body main .t254{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t255{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t256{font-style:italic;font-weight:300;line-height:1.25;}body main .t257{font-weight:600;line-height:1.25;}body main .t258{display:flex;}body main .t259{border-top:1px solid rgb(108,108,108);}body main .t261{min-height:816px;font-family:'League Spartan';}body main .t262{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}body main .t263{width:100%;height:100%;}body main .t264{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}body main .t265{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}body main .t266{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t267{display:flex;flex-direction:column;}body main .t268{font-size:1rem;font-weight:300;}body main .t269{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t270{margin-top:1rem;}body main .t271{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t272{line-height:1.25;}body main .t273{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t274{line-height:1.25;}body main .t275{display:flex;}body main .t276{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t277{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t278{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t279{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t280{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t281{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t282{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t283{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}body main .t284{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t285{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t286{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t287{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t288{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t289{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t290{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t291{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t292{font-size:1.2rem;line-height:1;}body main .t293{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t294{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t295{max-width:100%;min-width:60%;}body main .t296{width:40%;}body main .t297{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t298{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t299{text-align:right;}body main .t300{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t301{text-align:right;}body main .t302{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t303{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t304{font-family:'League Spartan';}@media screen and (max-width: 480px) {body main .t304{font-family:'League Spartan';}}body main .t305{top:0%;left:0%;right:0%;bottom:0%;display:flex;position:relative;min-width:20rem;background:rgb(255,255,255);box-shadow:0px 0rem 15px 5px rgba(0,0,0,0.15);margin-top:1rem;min-height:30rem;align-items:center;font-family:'League Spartan';padding-top:1rem;break-inside:avoid;padding-left:1rem;border-radius:.5rem;margin-bottom:2rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 767px) {body main .t305{min-width:98%;}}@media screen and (max-width: 480px) {body main .t305{max-width:98%;font-family:'League Spartan';}}body main .t306{width:98%;padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t307{display:flex;flex-direction:column;}body main .t308{font-size:1rem;font-weight:300;}body main .t309{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t310{margin-top:1rem;}body main .t311{line-height:1.25;}body main .t312{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t313{width:100%;border:3px dotted #ff9900;height:100%;display:flex;position:relative;margin-top:auto;margin-left:auto;padding-top:10px;margin-right:auto;padding-left:10px;border-radius:.5rem;margin-bottom:auto;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t314{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t315{color:rgb(255,153,0);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t316{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t317{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t318{height:1.2rem;}body main .t319{line-height:1;}body main .t320{line-height:1;}body main .t321{color:hsl(0,0%,0%);width:100%;border:3px dotted #d00000;height:100%;display:flex;position:relative;margin-top:auto;align-items:center;margin-left:auto;padding-top:10px;margin-right:auto;padding-left:10px;border-radius:.5rem;margin-bottom:auto;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t322{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t323{color:rgb(208,0,0);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t324{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t325{font-size:1.2rem;line-height:1;}body main .t326{height:1.2rem;}body main .t327{line-height:1;}body main .t328{line-height:1;}body main .t329{width:100%;border:3px dotted #00a81f;height:100%;display:flex;position:relative;margin-top:auto;margin-left:auto;padding-top:10px;margin-right:auto;padding-left:10px;border-radius:.5rem;margin-bottom:auto;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 480px) {body main .t329{top:0%;left:0%;right:0%;width:96%;bottom:0%;height:96%;margin-left:auto;margin-right:auto;}}body main .t330{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t331{color:rgb(0,168,31);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t332{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t333{line-height:1;}body main .t334{line-height:1;}body main .t335{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t336{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t337{width:98%;}body main .t338{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t339{width:40%;}body main .t340{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t341{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t342{max-width:100%;min-width:60%;}body main .t343{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t344{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t345{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t346{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t347{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t348{text-align:right;}body main .t351{display:flex;}body main .t352{margin-top:1rem;margin-left:1rem;padding-top:1rem;margin-right:1rem;padding-left:1rem;margin-bottom:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t358{width:50rem;max-width:95%;padding-top:1rem;padding-left:6rem;padding-right:6rem;padding-bottom:2rem;}@media screen and (max-width: 767px) {body main .t358{padding-left:3rem;padding-right:3rem;}}@media screen and (max-width: 480px) {body main .t358{padding-left:0rem;padding-right:0rem;}}body main .t359{background:;}body main .t360{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t361{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t362{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t363{text-align:right;}body main .t364{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t365{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t366{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t367{text-align:right;}body main .t368{width:100%;height:100%;position:absolute;padding-top:2%;padding-left:2%;padding-right:2%;padding-bottom:2%;}@media screen and (max-width: 480px) {body main .t368{margin-top:auto;margin-left:auto;margin-right:auto;margin-bottom:auto;}}body main .t369{width:50rem;max-width:95%;padding-top:1rem;padding-left:6rem;padding-right:6rem;padding-bottom:2rem;}@media screen and (max-width: 767px) {body main .t369{padding-left:3rem;padding-right:3rem;}}@media screen and (max-width: 480px) {body main .t369{padding-left:0rem;padding-right:0rem;}}body main .t370{background:;}body main .t371{top:0%;left:0%;right:0%;bottom:0%;display:flex;position:relative;min-width:20rem;background:rgb(255,255,255);box-shadow:0px 0rem 15px 5px rgba(0,0,0,0.15);margin-top:1rem;min-height:30rem;align-items:center;font-family:'League Spartan';padding-top:1rem;break-inside:avoid;padding-left:1rem;border-radius:.5rem;margin-bottom:2rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 767px) {body main .t371{min-width:98%;}}@media screen and (max-width: 480px) {body main .t371{max-width:98%;font-family:'League Spartan';}}body main .t372{width:98%;padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t373{display:flex;flex-direction:column;}body main .t374{font-size:1rem;font-weight:300;}body main .t375{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t376{margin-top:1rem;}body main .t377{line-height:1.25;}body main .t378{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t379{width:98%;}body main .t380{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t381{width:40%;}body main .t382{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t383{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t384{max-width:100%;min-width:60%;}body main .t385{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t386{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t387{width:100%;height:100%;position:absolute;padding-top:2%;padding-left:2%;padding-right:2%;padding-bottom:2%;}@media screen and (max-width: 480px) {body main .t387{margin-top:auto;margin-left:auto;margin-right:auto;margin-bottom:auto;}}body main .t388{width:100%;border:3px dotted #ff9900;height:100%;display:flex;position:relative;margin-top:auto;margin-left:auto;padding-top:10px;margin-right:auto;padding-left:10px;border-radius:.5rem;margin-bottom:auto;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t389{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t390{color:rgb(255,153,0);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t391{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t392{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t393{height:1.2rem;}body main .t394{line-height:1;}body main .t395{line-height:1;}body main .t396{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t397{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t398{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t399{text-align:right;}body main .t400{color:hsl(0,0%,0%);width:100%;border:3px dotted #d00000;height:100%;display:flex;position:relative;margin-top:auto;align-items:center;margin-left:auto;padding-top:10px;margin-right:auto;padding-left:10px;border-radius:.5rem;margin-bottom:auto;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}body main .t401{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t402{color:rgb(208,0,0);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t403{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t404{font-size:1.2rem;line-height:1;}body main .t405{height:1.2rem;}body main .t406{line-height:1;}body main .t407{line-height:1;}body main .t408{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t409{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t410{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t411{text-align:right;}body main .t412{width:100%;border:3px dotted #00a81f;height:100%;display:flex;position:relative;margin-top:auto;margin-left:auto;padding-top:10px;margin-right:auto;padding-left:10px;border-radius:.5rem;margin-bottom:auto;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 480px) {body main .t412{top:0%;left:0%;right:0%;width:96%;bottom:0%;height:96%;margin-left:auto;margin-right:auto;}}body main .t413{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t414{color:rgb(0,168,31);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t415{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t416{line-height:1;}body main .t417{line-height:1;}body main .t418{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t419{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t420{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t421{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t422{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t423{text-align:right;}body main .t427{font-family:'Rubik';}body main .t430{width:200px;height:200px;}body main .t433{background:var(--or);}body main .t434{cursor:pointer;}body main .t439{font-family:'Rubik';}body main .t440{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t442{height:100%;}body main .t443{width:100%;height:100%;display:flex;}body main .t444{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t445{display:flex;position:relative;flex-direction:row;}body main .t446{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t447{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t448{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t449{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t451{width:20rem;display:flex;}body main .t452{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t455{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t456{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t457{width:10rem;height:100%;background:rgb(208,0,0);}body main .t459{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t460{width:8rem;height:100%;background:var(--gr);}body main .t461{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t462{width:3rem;height:100%;background:var(--or);}body main .t463{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t464{display:flex;margin-top:2rem;align-items:center;}body main .t465{text-align:center;}body main .t466{height:3rem;margin-left:2rem;}body main .t468{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t469{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t470{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t471{width:20rem;display:flex;}body main .t472{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t476{font-size:2rem;align-self:center;}body main .t478{margin-right:1rem;}body main .t479{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t480{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t481{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t482{width:20rem;display:flex;}body main .t483{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t487{font-size:2rem;align-self:center;}body main .t489{margin-right:1rem;}body main .t493{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t494{color:rgb(49,49,49);text-align:center;}body main .t497{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t498{color:rgb(49,49,49);text-align:center;}body main .t500{color:rgba(0,0,0,0);}body main .t501{margin-right:1rem;}body main .t504{display:flex;row-gap:24px;flex-direction:column;}body main .t505{display:flex;row-gap:5px;flex-direction:column;}body main .t507{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t507:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t508{display:flex;justify-content:flex-end;}body main .t509{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t510{display:flex;row-gap:5px;flex-direction:column;}body main .t512{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t512:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t514{width:8rem;height:4rem;background:var(--rd);}body main .t527{width:40rem;height:20rem;background:var(--or);}body main .t535{width:10rem;height:10rem;background:var(--gr);}body main .t536{width:10rem;height:10rem;background:var(--or);}body main .t537{width:10rem;height:10rem;background:var(--rd);}body main .t539{width:10rem;height:10rem;background:rgb(118,32,32);}body main .t540{width:5rem;height:5rem;background:var(--gr);}body main .t547{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t547{row-gap:30px;grid-template-columns:1fr ;}}body main .t549{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t549{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t550{color:rgba(163,117,255,1.00);}}body main .t558{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t558{row-gap:30px;grid-template-columns:1fr ;}}body main .t560{display:flex;row-gap:40px;column-gap:40px;}body main .t562{display:flex;flex-direction:column;}body main .t563{display:flex;flex-direction:column;}body main .t564{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t567{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t569{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t569{row-gap:30px;grid-template-columns:1fr ;}}body main .t570{display:flex;row-gap:25px;flex-direction:column;}body main .t574{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t576{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t577{display:flex;column-gap:100px;}body main .t580{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t588{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t596{color:rgba(163,117,255,1.00);}}body main .t604{display:flex;row-gap:24px;flex-direction:column;}body main .t605{display:flex;row-gap:5px;flex-direction:column;}body main .t606{display:flex;justify-content:flex-end;}body main .t607{display:flex;row-gap:5px;flex-direction:column;}body main .t609{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t609:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t610{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t613{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t613:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t614{width:8rem;height:4rem;background:var(--rd);}body main .t621{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t621{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t622{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t622{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t623{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t623{display:flex;position:relative;}}body main .t624{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t624{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t625{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t625{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t626{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t627{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t628{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t629{display:flex;flex-direction:column;}body main .t630{margin-top:1rem;}body main .t631{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t632{border-top:1px solid rgb(108,108,108);}body main .t633{line-height:1.25;}body main .t634{display:flex;}body main .t635{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t636{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t637{font-size:1rem;font-weight:300;}body main .t638{line-height:1.25;}body main .t639{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t640{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t641{font-style:italic;font-weight:300;line-height:1.25;}body main .t642{font-weight:600;line-height:1.25;}body main .t643{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t643{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t644{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t644{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t645{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t645{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t646{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t647{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t648{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t649{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t650{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t651{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t652{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t653{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t654{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t655{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t656{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t657{font-size:1.2rem;line-height:1;}body main .t658{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t658{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t659{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t659{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t660{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t660{display:flex;position:relative;}}body main .t661{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t661{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t662{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t662{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t663{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t663{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t664{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t665{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t665{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t666{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t666{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t667{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t669{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t670{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t671{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t672{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t673{height:1.2rem;}body main .t674{font-size:1.2rem;line-height:1;}body main .t675{line-height:1;}body main .t676{line-height:1;}body main .t677{display:flex;flex-direction:column;}body main .t678{margin-top:1rem;}body main .t679{font-size:1rem;font-weight:300;}body main .t680{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t681{line-height:1.25;}body main .t682{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t683{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t684{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t685{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t686{height:1.2rem;}body main .t687{color:var(--or);font-size:1.2rem;line-height:1;}body main .t688{line-height:1;}body main .t689{line-height:1;}body main .t690{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t691{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t692{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t693{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t694{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t695{line-height:1;}body main .t696{line-height:1;}body main .t697{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t698{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t699{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t700{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t701{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t702{font-size:.75rem;}body main .t703{align-self:center;font-style:italic;font-weight:500;}body main .t704{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t705{max-width:100%;min-width:60%;}body main .t706{width:40%;}body main .t707{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t708{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t709{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t710{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t711{text-align:right;}body main .t712{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t713{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t714{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t714{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t715{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t715{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t716{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t716{display:flex;position:relative;}}body main .t717{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t717{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t718{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t718{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t719{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t720{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t721{display:flex;flex-direction:column;}body main .t722{margin-top:1rem;}body main .t723{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t724{font-size:1rem;font-weight:300;}body main .t725{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t726{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t727{line-height:1.25;}body main .t728{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t729{line-height:1.25;}body main .t730{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t730{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t731{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t731{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t732{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t732{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t733{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t734{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t735{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t736{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t737{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t738{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t739{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t740{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t741{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t742{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t743{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t744{font-size:1.2rem;line-height:1;}body main .t749{width:40rem;height:20rem;background:var(--or);}body main .t752{background:var(--or);}body main .t753{cursor:pointer;}body main .t756{width:10rem;height:10rem;background:rgb(118,32,32);}body main .t764{color:var(--or);}body main .t765{color:rgb(255,0,247);}body main .t771{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t772{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t773{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t774{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t775{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t776{font-size:1.25rem;}body main .t777{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t778{display:flex;column-gap:1rem;}body main .t780{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t781{color:#ffbb00;font-size:2.5rem;}body main .t783{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t783{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t784{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t784{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t785{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t785{display:flex;position:relative;}}body main .t786{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t786{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t787{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t787{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t788{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t789{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t790{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t791{display:flex;flex-direction:column;}body main .t792{margin-top:1rem;}body main .t793{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t794{font-size:1rem;font-weight:300;}body main .t795{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t796{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t797{line-height:1.25;}body main .t799{line-height:1.25;}body main .t800{display:flex;}body main .t801{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t802{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t802{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t803{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t803{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t804{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t804{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t805{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t806{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t807{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t808{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t809{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t810{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t811{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t812{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t813{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t814{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t815{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t816{font-size:1.2rem;line-height:1;}body main .t817{text-align:right;}body main .t820{font-family:'Rubik';}body main .t823{width:200px;height:200px;}body main .t824{font-family:'Rubik';}body main .t825{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t827{height:100%;}body main .t828{width:100%;height:100%;display:flex;}body main .t829{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t830{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t832{display:flex;position:relative;flex-direction:row;}body main .t833{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t834{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t835{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t836{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t837{color:rgba(0,0,0,0);}body main .t838{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t839{width:20rem;display:flex;}body main .t840{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t845{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t848{margin-right:1rem;}body main .t849{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t850{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t851{width:20rem;display:flex;}body main .t852{font-size:2rem;align-self:center;}body main .t854{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t859{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t860{color:rgb(49,49,49);text-align:center;}body main .t862{margin-right:1rem;}body main .t863{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t864{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t865{width:20rem;display:flex;}body main .t866{font-size:2rem;align-self:center;}body main .t868{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t873{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t874{color:rgb(49,49,49);text-align:center;}body main .t876{margin-right:1rem;}body main .t877{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t878{display:flex;margin-top:2rem;align-items:center;}body main .t879{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t880{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t881{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t882{width:10rem;height:100%;background:rgb(208,0,0);}body main .t883{width:8rem;height:100%;background:var(--gr);}body main .t884{width:3rem;height:100%;background:var(--or);}body main .t886{text-align:center;}body main .t887{height:3rem;margin-left:2rem;}body main .t898{width:10rem;height:10rem;background:var(--gr);}body main .t899{width:10rem;height:10rem;background:var(--or);}body main .t900{width:10rem;height:10rem;background:var(--rd);}body main .t910{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t910{row-gap:30px;grid-template-columns:1fr ;}}body main .t912{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t912{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t913{color:rgba(163,117,255,1.00);}}body main .t921{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t921{row-gap:30px;grid-template-columns:1fr ;}}body main .t923{display:flex;row-gap:40px;column-gap:40px;}body main .t925{display:flex;flex-direction:column;}body main .t926{display:flex;flex-direction:column;}body main .t927{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t930{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t932{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t932{row-gap:30px;grid-template-columns:1fr ;}}body main .t933{display:flex;row-gap:25px;flex-direction:column;}body main .t937{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t939{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t940{display:flex;column-gap:100px;}body main .t943{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t951{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t959{color:rgba(163,117,255,1.00);}}body main .t967{display:flex;row-gap:24px;flex-direction:column;}body main .t968{display:flex;row-gap:5px;flex-direction:column;}body main .t969{display:flex;justify-content:flex-end;}body main .t970{display:flex;row-gap:5px;flex-direction:column;}body main .t972{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t972:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t973{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t976{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t976:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t977{width:8rem;height:4rem;background:var(--rd);}body main .t984{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t984{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t985{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t985{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t986{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t986{display:flex;position:relative;}}body main .t987{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t987{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t988{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t988{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t989{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t990{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t991{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t992{display:flex;flex-direction:column;}body main .t993{margin-top:1rem;}body main .t994{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t995{border-top:1px solid rgb(108,108,108);}body main .t996{line-height:1.25;}body main .t997{display:flex;}body main .t998{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t999{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1000{font-size:1rem;font-weight:300;}body main .t1001{line-height:1.25;}body main .t1002{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1003{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1004{font-style:italic;font-weight:300;line-height:1.25;}body main .t1005{font-weight:600;line-height:1.25;}body main .t1006{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1006{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1007{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1007{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1008{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1008{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1009{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1010{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1011{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1012{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1013{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1014{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1015{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1016{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1017{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1018{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1019{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1020{font-size:1.2rem;line-height:1;}body main .t1021{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1021{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1022{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1022{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1023{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t1023{display:flex;position:relative;}}body main .t1024{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t1024{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1025{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1025{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1026{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1026{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1027{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t1028{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1028{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1029{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1029{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1030{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t1032{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t1033{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1034{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1035{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1036{height:1.2rem;}body main .t1037{font-size:1.2rem;line-height:1;}body main .t1038{line-height:1;}body main .t1039{line-height:1;}body main .t1040{display:flex;flex-direction:column;}body main .t1041{margin-top:1rem;}body main .t1042{font-size:1rem;font-weight:300;}body main .t1043{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1044{line-height:1.25;}body main .t1045{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1046{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1047{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1048{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1049{height:1.2rem;}body main .t1050{color:var(--or);font-size:1.2rem;line-height:1;}body main .t1051{line-height:1;}body main .t1052{line-height:1;}body main .t1053{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1054{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1055{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1056{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t1057{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t1058{line-height:1;}body main .t1059{line-height:1;}body main .t1060{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t1061{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t1062{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t1063{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t1064{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t1065{font-size:.75rem;}body main .t1066{align-self:center;font-style:italic;font-weight:500;}body main .t1067{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t1068{max-width:100%;min-width:60%;}body main .t1069{width:40%;}body main .t1070{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t1071{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t1072{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t1073{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t1074{text-align:right;}body main .t1075{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1076{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t1077{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1077{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1078{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1078{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1079{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1079{display:flex;position:relative;}}body main .t1080{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1080{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1081{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1081{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1082{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1083{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1084{display:flex;flex-direction:column;}body main .t1085{margin-top:1rem;}body main .t1086{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1087{font-size:1rem;font-weight:300;}body main .t1088{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1089{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1090{line-height:1.25;}body main .t1091{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1092{line-height:1.25;}body main .t1093{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1093{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1094{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1094{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1095{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1095{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1096{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1097{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1098{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1099{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1100{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1101{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1102{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1103{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1104{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1105{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1106{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1107{font-size:1.2rem;line-height:1;}body main .t1113{width:40rem;height:20rem;background:var(--or);}body main .t1116{background:var(--or);}body main .t1117{cursor:pointer;}body main .t1122{width:10rem;height:10rem;background:rgb(118,32,32);}body main .t1130{color:var(--or);}body main .t1131{color:rgb(255,0,247);}body main .t1137{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t1138{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t1139{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t1140{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t1141{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t1142{font-size:1.25rem;}body main .t1143{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t1144{display:flex;column-gap:1rem;}body main .t1146{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t1147{color:#ffbb00;font-size:2.5rem;}body main .t1149{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1149{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1150{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1150{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1151{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1151{display:flex;position:relative;}}body main .t1152{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1152{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1153{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1153{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1154{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1155{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1156{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t1157{display:flex;flex-direction:column;}body main .t1158{margin-top:1rem;}body main .t1159{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1160{font-size:1rem;font-weight:300;}body main .t1161{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t1162{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1163{line-height:1.25;}body main .t1165{line-height:1.25;}body main .t1166{display:flex;}body main .t1167{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1168{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1168{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1169{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1169{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1170{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1170{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1171{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1172{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1173{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1174{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1175{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1176{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1177{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1178{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1179{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1180{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1181{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1182{font-size:1.2rem;line-height:1;}body main .t1183{text-align:right;}body main .t1186{font-family:'Rubik';}body main .t1189{width:200px;height:200px;}body main .t1190{font-family:'Rubik';}body main .t1191{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t1193{height:100%;}body main .t1194{width:100%;height:100%;display:flex;}body main .t1195{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t1196{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t1198{display:flex;position:relative;flex-direction:row;}body main .t1199{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t1200{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t1201{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1202{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1203{color:rgba(0,0,0,0);}body main .t1204{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t1205{width:20rem;display:flex;}body main .t1206{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1211{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1214{margin-right:1rem;}body main .t1215{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1216{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1217{width:20rem;display:flex;}body main .t1218{font-size:2rem;align-self:center;}body main .t1220{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1225{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1226{color:rgb(49,49,49);text-align:center;}body main .t1228{margin-right:1rem;}body main .t1229{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1230{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1231{width:20rem;display:flex;}body main .t1232{font-size:2rem;align-self:center;}body main .t1234{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1239{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1240{color:rgb(49,49,49);text-align:center;}body main .t1242{margin-right:1rem;}body main .t1243{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t1244{display:flex;margin-top:2rem;align-items:center;}body main .t1245{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t1246{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t1247{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t1248{width:10rem;height:100%;background:rgb(208,0,0);}body main .t1249{width:8rem;height:100%;background:var(--gr);}body main .t1250{width:3rem;height:100%;background:var(--or);}body main .t1252{text-align:center;}body main .t1253{height:3rem;margin-left:2rem;}body main .t1264{width:10rem;height:10rem;background:var(--gr);}body main .t1265{width:10rem;height:10rem;background:var(--or);}body main .t1266{width:10rem;height:10rem;background:var(--rd);}body main .t1276{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t1276{row-gap:30px;grid-template-columns:1fr ;}}body main .t1278{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t1278{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t1279{color:rgba(163,117,255,1.00);}}body main .t1287{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t1287{row-gap:30px;grid-template-columns:1fr ;}}body main .t1289{display:flex;row-gap:40px;column-gap:40px;}body main .t1291{display:flex;flex-direction:column;}body main .t1292{display:flex;flex-direction:column;}body main .t1293{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1296{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1298{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t1298{row-gap:30px;grid-template-columns:1fr ;}}body main .t1299{display:flex;row-gap:25px;flex-direction:column;}body main .t1303{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1305{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1306{display:flex;column-gap:100px;}body main .t1309{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1317{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t1325{color:rgba(163,117,255,1.00);}}body main .t1333{display:flex;row-gap:24px;flex-direction:column;}body main .t1334{display:flex;row-gap:5px;flex-direction:column;}body main .t1335{display:flex;justify-content:flex-end;}body main .t1336{display:flex;row-gap:5px;flex-direction:column;}body main .t1338{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t1338:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t1339{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t1342{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t1342:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t1343{width:8rem;height:4rem;background:var(--rd);}body main .t1350{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1350{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1351{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1351{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1352{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1352{display:flex;position:relative;}}body main .t1353{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1353{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1354{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1354{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1355{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1356{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1357{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1358{display:flex;flex-direction:column;}body main .t1359{margin-top:1rem;}body main .t1360{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t1361{border-top:1px solid rgb(108,108,108);}body main .t1362{line-height:1.25;}body main .t1363{display:flex;}body main .t1364{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1365{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1366{font-size:1rem;font-weight:300;}body main .t1367{line-height:1.25;}body main .t1368{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1369{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1370{font-style:italic;font-weight:300;line-height:1.25;}body main .t1371{font-weight:600;line-height:1.25;}body main .t1372{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1372{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1373{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1373{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1374{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1374{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1375{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1376{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1377{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1378{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1379{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1380{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1381{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1382{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1383{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1384{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1385{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1386{font-size:1.2rem;line-height:1;}body main .t1387{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1387{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1388{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1388{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1389{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t1389{display:flex;position:relative;}}body main .t1390{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t1390{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1391{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1391{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1392{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1392{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1393{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t1394{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1394{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1395{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1395{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1396{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t1398{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t1399{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1400{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1401{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1402{height:1.2rem;}body main .t1403{font-size:1.2rem;line-height:1;}body main .t1404{line-height:1;}body main .t1405{line-height:1;}body main .t1406{display:flex;flex-direction:column;}body main .t1407{margin-top:1rem;}body main .t1408{font-size:1rem;font-weight:300;}body main .t1409{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1410{line-height:1.25;}body main .t1411{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1412{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1413{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1414{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1415{height:1.2rem;}body main .t1416{color:var(--or);font-size:1.2rem;line-height:1;}body main .t1417{line-height:1;}body main .t1418{line-height:1;}body main .t1419{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1420{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1421{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1422{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t1423{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t1424{line-height:1;}body main .t1425{line-height:1;}body main .t1426{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t1427{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t1428{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t1429{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t1430{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t1431{font-size:.75rem;}body main .t1432{align-self:center;font-style:italic;font-weight:500;}body main .t1433{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t1434{max-width:100%;min-width:60%;}body main .t1435{width:40%;}body main .t1436{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t1437{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t1438{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t1439{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t1440{text-align:right;}body main .t1441{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1442{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t1443{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1443{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1444{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1444{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1445{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1445{display:flex;position:relative;}}body main .t1446{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1446{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1447{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1447{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1448{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1449{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1450{display:flex;flex-direction:column;}body main .t1451{margin-top:1rem;}body main .t1452{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1453{font-size:1rem;font-weight:300;}body main .t1454{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1455{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1456{line-height:1.25;}body main .t1457{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1458{line-height:1.25;}body main .t1459{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1459{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1460{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1460{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1461{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1461{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1462{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1463{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1464{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1465{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1466{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1467{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1468{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1469{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1470{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1471{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1472{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1473{font-size:1.2rem;line-height:1;}body main .t1479{width:40rem;height:20rem;background:var(--or);}body main .t1482{background:var(--or);}body main .t1483{cursor:pointer;}body main .t1488{width:10rem;height:10rem;background:rgb(118,32,32);}body main .t1496{color:var(--or);}body main .t1497{color:rgb(255,0,247);}body main .t1503{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t1504{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t1505{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t1506{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t1507{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t1508{font-size:1.25rem;}body main .t1509{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t1510{display:flex;column-gap:1rem;}body main .t1512{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t1513{color:#ffbb00;font-size:2.5rem;}body main .t1515{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1515{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1516{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1516{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1517{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1517{display:flex;position:relative;}}body main .t1518{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1518{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1519{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1519{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1520{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1521{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1522{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t1523{display:flex;flex-direction:column;}body main .t1524{margin-top:1rem;}body main .t1525{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1526{font-size:1rem;font-weight:300;}body main .t1527{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t1528{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1529{line-height:1.25;}body main .t1531{line-height:1.25;}body main .t1532{display:flex;}body main .t1533{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1534{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1534{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1535{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1535{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1536{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1536{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1537{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1538{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1539{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1540{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1541{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1542{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1543{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1544{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1545{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1546{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1547{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1548{font-size:1.2rem;line-height:1;}body main .t1549{text-align:right;}body main .t1552{font-family:'Rubik';}body main .t1555{width:200px;height:200px;}body main .t1556{font-family:'Rubik';}body main .t1557{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t1559{height:100%;}body main .t1560{width:100%;height:100%;display:flex;}body main .t1561{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t1562{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t1564{display:flex;position:relative;flex-direction:row;}body main .t1565{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t1566{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t1567{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1568{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1569{color:rgba(0,0,0,0);}body main .t1570{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t1571{width:20rem;display:flex;}body main .t1572{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1577{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1580{margin-right:1rem;}body main .t1581{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1582{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1583{width:20rem;display:flex;}body main .t1584{font-size:2rem;align-self:center;}body main .t1586{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1591{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1592{color:rgb(49,49,49);text-align:center;}body main .t1594{margin-right:1rem;}body main .t1595{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1596{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1597{width:20rem;display:flex;}body main .t1598{font-size:2rem;align-self:center;}body main .t1600{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1605{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1606{color:rgb(49,49,49);text-align:center;}body main .t1608{margin-right:1rem;}body main .t1609{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t1610{display:flex;margin-top:2rem;align-items:center;}body main .t1611{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t1612{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t1613{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t1614{width:10rem;height:100%;background:rgb(208,0,0);}body main .t1615{width:8rem;height:100%;background:var(--gr);}body main .t1616{width:3rem;height:100%;background:var(--or);}body main .t1618{text-align:center;}body main .t1619{height:3rem;margin-left:2rem;}body main .t1630{width:10rem;height:10rem;background:var(--gr);}body main .t1631{width:10rem;height:10rem;background:var(--or);}body main .t1632{width:10rem;height:10rem;background:var(--rd);}body main .t1642{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t1642{row-gap:30px;grid-template-columns:1fr ;}}body main .t1644{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t1644{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t1645{color:rgba(163,117,255,1.00);}}body main .t1653{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t1653{row-gap:30px;grid-template-columns:1fr ;}}body main .t1655{display:flex;row-gap:40px;column-gap:40px;}body main .t1657{display:flex;flex-direction:column;}body main .t1658{display:flex;flex-direction:column;}body main .t1659{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1662{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1664{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t1664{row-gap:30px;grid-template-columns:1fr ;}}body main .t1665{display:flex;row-gap:25px;flex-direction:column;}body main .t1669{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1671{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1672{display:flex;column-gap:100px;}body main .t1675{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t1683{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t1691{color:rgba(163,117,255,1.00);}}body main .t1699{display:flex;row-gap:24px;flex-direction:column;}body main .t1700{display:flex;row-gap:5px;flex-direction:column;}body main .t1701{display:flex;justify-content:flex-end;}body main .t1702{display:flex;row-gap:5px;flex-direction:column;}body main .t1704{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t1704:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t1705{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t1708{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t1708:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t1709{width:8rem;height:4rem;background:var(--rd);}body main .t1716{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1716{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1717{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1717{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1718{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1718{display:flex;position:relative;}}body main .t1719{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1719{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1720{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1720{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1721{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1722{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1723{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1724{display:flex;flex-direction:column;}body main .t1725{margin-top:1rem;}body main .t1726{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t1727{border-top:1px solid rgb(108,108,108);}body main .t1728{line-height:1.25;}body main .t1729{display:flex;}body main .t1730{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1731{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1732{font-size:1rem;font-weight:300;}body main .t1733{line-height:1.25;}body main .t1734{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1735{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1736{font-style:italic;font-weight:300;line-height:1.25;}body main .t1737{font-weight:600;line-height:1.25;}body main .t1738{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1738{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1739{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1739{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1740{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1740{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1741{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1742{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1743{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1744{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1745{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1746{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1747{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1748{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1749{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1750{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1751{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1752{font-size:1.2rem;line-height:1;}body main .t1753{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1753{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1754{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1754{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1755{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t1755{display:flex;position:relative;}}body main .t1756{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t1756{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1757{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1757{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1758{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1758{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1759{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t1760{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1760{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1761{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1761{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1762{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t1764{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t1765{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1766{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1767{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1768{height:1.2rem;}body main .t1769{font-size:1.2rem;line-height:1;}body main .t1770{line-height:1;}body main .t1771{line-height:1;}body main .t1772{display:flex;flex-direction:column;}body main .t1773{margin-top:1rem;}body main .t1774{font-size:1rem;font-weight:300;}body main .t1775{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1776{line-height:1.25;}body main .t1777{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1778{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1779{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1780{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1781{height:1.2rem;}body main .t1782{color:var(--or);font-size:1.2rem;line-height:1;}body main .t1783{line-height:1;}body main .t1784{line-height:1;}body main .t1785{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1786{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1787{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1788{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t1789{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t1790{line-height:1;}body main .t1791{line-height:1;}body main .t1792{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t1793{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t1794{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t1795{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t1796{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t1797{font-size:.75rem;}body main .t1798{align-self:center;font-style:italic;font-weight:500;}body main .t1799{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t1800{max-width:100%;min-width:60%;}body main .t1801{width:40%;}body main .t1802{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t1803{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t1804{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t1805{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t1806{text-align:right;}body main .t1807{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1808{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t1809{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1809{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1810{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1810{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1811{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1811{display:flex;position:relative;}}body main .t1812{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1812{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1813{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1813{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1814{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1815{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1816{display:flex;flex-direction:column;}body main .t1817{margin-top:1rem;}body main .t1818{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1819{font-size:1rem;font-weight:300;}body main .t1820{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t1821{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1822{line-height:1.25;}body main .t1823{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1824{line-height:1.25;}body main .t1825{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1825{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1826{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1826{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1827{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1827{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1828{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1829{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1830{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1831{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1832{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1833{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1834{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1835{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1836{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1837{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1838{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1839{font-size:1.2rem;line-height:1;}body main .t1842{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:var(--gr);align-items:center;font-family:'Rubik';border-radius:2.5rem;justify-content:center;}body main .t1846{cursor:pointer;}body main .t1848{width:10rem;height:10rem;background:rgb(118,32,32);}body main .t1856{color:var(--or);}body main .t1857{color:rgb(255,0,247);}body main .t1863{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t1864{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t1865{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t1866{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t1867{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t1868{font-size:1.25rem;}body main .t1869{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t1870{display:flex;column-gap:1rem;}body main .t1872{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t1873{color:#ffbb00;font-size:2.5rem;}body main .t1875{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t1875{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t1876{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t1876{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t1877{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t1877{display:flex;position:relative;}}body main .t1878{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t1878{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t1879{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1879{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1880{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1881{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t1882{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t1883{display:flex;flex-direction:column;}body main .t1884{margin-top:1rem;}body main .t1885{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t1886{font-size:1rem;font-weight:300;}body main .t1887{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t1888{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1889{line-height:1.25;}body main .t1891{line-height:1.25;}body main .t1892{display:flex;}body main .t1893{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t1894{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1894{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1895{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1895{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1896{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t1896{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t1897{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1898{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1899{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1900{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t1901{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1902{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1903{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1904{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t1905{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t1906{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t1907{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t1908{font-size:1.2rem;line-height:1;}body main .t1909{text-align:right;}body main .t1912{font-family:'Rubik';}body main .t1915{width:200px;height:200px;}body main .t1916{font-family:'Rubik';}body main .t1917{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t1919{height:100%;}body main .t1920{width:100%;height:100%;display:flex;}body main .t1921{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t1922{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t1924{display:flex;position:relative;flex-direction:row;}body main .t1925{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t1926{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t1927{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1928{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1929{color:rgba(0,0,0,0);}body main .t1930{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t1931{width:20rem;display:flex;}body main .t1932{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1937{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1940{margin-right:1rem;}body main .t1941{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1942{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1943{width:20rem;display:flex;}body main .t1944{font-size:2rem;align-self:center;}body main .t1946{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1951{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1952{color:rgb(49,49,49);text-align:center;}body main .t1954{margin-right:1rem;}body main .t1955{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t1956{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t1957{width:20rem;display:flex;}body main .t1958{font-size:2rem;align-self:center;}body main .t1960{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t1965{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t1966{color:rgb(49,49,49);text-align:center;}body main .t1968{margin-right:1rem;}body main .t1969{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t1970{display:flex;margin-top:2rem;align-items:center;}body main .t1971{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t1972{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t1973{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t1974{width:10rem;height:100%;background:rgb(208,0,0);}body main .t1975{width:8rem;height:100%;background:var(--gr);}body main .t1976{width:3rem;height:100%;background:var(--or);}body main .t1978{text-align:center;}body main .t1979{height:3rem;margin-left:2rem;}body main .t1989{width:10rem;height:10rem;background:var(--gr);}body main .t1990{width:10rem;height:10rem;background:var(--or);}body main .t1991{width:10rem;height:10rem;background:var(--rd);}body main .t1992{display:flex;position:relative;margin-top:2rem;padding-top:15px;break-inside:avoid;padding-left:15px;margin-bottom:2rem;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t1992{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t1993{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t1994{display:flex;flex-direction:column;}body main .t1995{font-size:1rem;font-weight:300;}body main .t1996{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t1997{margin-top:1rem;}body main .t1998{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t1999{line-height:1.25;}body main .t2001{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2002{line-height:1.25;}body main .t2003{display:flex;}body main .t2004{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2005{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2006{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2006{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2007{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2008{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2009{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2010{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2011{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2011{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2012{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2013{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2014{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2015{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2016{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2016{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2017{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2018{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2019{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2020{font-size:1.2rem;line-height:1;}body main .t2021{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t2022{text-align:right;}body main .t2034{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t2034{row-gap:30px;grid-template-columns:1fr ;}}body main .t2036{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t2036{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t2037{color:rgba(163,117,255,1.00);}}body main .t2045{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t2045{row-gap:30px;grid-template-columns:1fr ;}}body main .t2047{display:flex;row-gap:40px;column-gap:40px;}body main .t2049{display:flex;flex-direction:column;}body main .t2050{display:flex;flex-direction:column;}body main .t2051{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2054{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2056{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t2056{row-gap:30px;grid-template-columns:1fr ;}}body main .t2057{display:flex;row-gap:25px;flex-direction:column;}body main .t2061{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2063{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2064{display:flex;column-gap:100px;}body main .t2067{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2075{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t2083{color:rgba(163,117,255,1.00);}}body main .t2091{display:flex;row-gap:24px;flex-direction:column;}body main .t2092{display:flex;row-gap:5px;flex-direction:column;}body main .t2093{display:flex;justify-content:flex-end;}body main .t2094{display:flex;row-gap:5px;flex-direction:column;}body main .t2096{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t2096:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t2097{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t2100{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t2100:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t2101{width:8rem;height:4rem;background:var(--rd);}body main .t2108{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2108{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2109{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2109{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2110{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t2110{display:flex;position:relative;}}body main .t2111{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t2111{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2112{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2112{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2113{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2114{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2115{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2116{display:flex;flex-direction:column;}body main .t2117{margin-top:1rem;}body main .t2118{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t2119{border-top:1px solid rgb(108,108,108);}body main .t2120{line-height:1.25;}body main .t2121{display:flex;}body main .t2122{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2123{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t2124{font-size:1rem;font-weight:300;}body main .t2125{line-height:1.25;}body main .t2126{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2127{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2128{font-style:italic;font-weight:300;line-height:1.25;}body main .t2129{font-weight:600;line-height:1.25;}body main .t2130{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2130{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2131{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2131{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2132{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2132{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2133{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2134{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2135{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2136{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2137{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2138{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2139{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2140{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2141{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2142{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2143{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2144{font-size:1.2rem;line-height:1;}body main .t2145{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2145{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2146{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2146{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2147{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t2147{display:flex;position:relative;}}body main .t2148{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t2148{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2149{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2149{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2150{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2150{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2151{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t2152{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2152{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2153{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2153{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2154{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t2156{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t2157{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2158{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2159{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2160{height:1.2rem;}body main .t2161{font-size:1.2rem;line-height:1;}body main .t2162{line-height:1;}body main .t2163{line-height:1;}body main .t2164{display:flex;flex-direction:column;}body main .t2165{margin-top:1rem;}body main .t2166{font-size:1rem;font-weight:300;}body main .t2167{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t2168{line-height:1.25;}body main .t2169{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2170{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2171{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2172{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2173{height:1.2rem;}body main .t2174{color:var(--or);font-size:1.2rem;line-height:1;}body main .t2175{line-height:1;}body main .t2176{line-height:1;}body main .t2177{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2178{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2179{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2180{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t2181{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t2182{line-height:1;}body main .t2183{line-height:1;}body main .t2184{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t2185{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t2186{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t2187{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t2188{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t2189{font-size:.75rem;}body main .t2190{align-self:center;font-style:italic;font-weight:500;}body main .t2191{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t2192{max-width:100%;min-width:60%;}body main .t2193{width:40%;}body main .t2194{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t2195{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t2196{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t2197{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t2198{text-align:right;}body main .t2199{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2200{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t2201{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2201{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2202{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2202{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2203{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t2203{display:flex;position:relative;}}body main .t2204{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t2204{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2205{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2205{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2206{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2207{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2208{display:flex;flex-direction:column;}body main .t2209{margin-top:1rem;}body main .t2210{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2211{font-size:1rem;font-weight:300;}body main .t2212{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t2213{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2214{line-height:1.25;}body main .t2215{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2216{line-height:1.25;}body main .t2217{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2217{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2218{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2218{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2219{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2219{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2220{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2221{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2222{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2223{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2224{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2225{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2226{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2227{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2228{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2229{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2230{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2231{font-size:1.2rem;line-height:1;}body main .t2236{color:rgb(255,255,255);width:10rem;height:2rem;display:flex;background:var(--gr);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t2237{cursor:pointer;}body main .t2246{color:var(--or);}body main .t2247{color:rgb(255,0,247);}body main .t2253{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t2254{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t2255{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t2256{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t2257{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t2258{font-size:1.25rem;}body main .t2259{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t2260{display:flex;column-gap:1rem;}body main .t2262{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t2263{color:#ffbb00;font-size:2.5rem;}body main .t2265{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2265{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2266{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2266{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2267{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t2267{display:flex;position:relative;}}body main .t2268{display:flex;position:relative;margin-top:2rem;padding-top:15px;break-inside:avoid;padding-left:15px;margin-bottom:2rem;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2268{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2269{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t2269{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2270{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2270{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2271{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2272{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2273{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t2274{display:flex;flex-direction:column;}body main .t2275{margin-top:1rem;}body main .t2276{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2277{font-size:1rem;font-weight:300;}body main .t2278{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t2279{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2280{line-height:1.25;}body main .t2282{line-height:1.25;}body main .t2283{display:flex;}body main .t2284{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2285{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2285{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2286{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2286{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2287{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2287{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2288{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2289{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2290{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2291{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2292{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2293{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2294{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2295{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2296{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2297{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2298{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2299{font-size:1.2rem;line-height:1;}body main .t2300{text-align:right;}body main .t2301{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2302{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2303{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t2304{display:flex;flex-direction:column;}body main .t2305{margin-top:1rem;}body main .t2306{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2307{font-size:1rem;font-weight:300;}body main .t2308{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t2309{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2310{line-height:1.25;}body main .t2312{line-height:1.25;}body main .t2313{display:flex;}body main .t2314{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2315{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2315{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2316{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2316{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2317{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2317{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2318{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2319{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2320{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2321{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2322{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2323{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2324{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2325{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2326{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2327{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2328{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2329{font-size:1.2rem;line-height:1;}body main .t2330{text-align:right;}body main .t2333{font-family:'Rubik';}body main .t2336{width:200px;height:200px;}body main .t2337{font-family:'Rubik';}body main .t2338{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t2340{height:100%;}body main .t2341{width:100%;height:100%;display:flex;}body main .t2342{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2343{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2345{display:flex;position:relative;flex-direction:row;}body main .t2346{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2347{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2348{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2349{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2350{color:rgba(0,0,0,0);}body main .t2351{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t2352{width:20rem;display:flex;}body main .t2353{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2358{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2361{margin-right:1rem;}body main .t2362{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2363{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2364{width:20rem;display:flex;}body main .t2365{font-size:2rem;align-self:center;}body main .t2367{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2372{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2373{color:rgb(49,49,49);text-align:center;}body main .t2375{margin-right:1rem;}body main .t2376{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2377{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2378{width:20rem;display:flex;}body main .t2379{font-size:2rem;align-self:center;}body main .t2381{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2386{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2387{color:rgb(49,49,49);text-align:center;}body main .t2389{margin-right:1rem;}body main .t2390{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t2391{display:flex;margin-top:2rem;align-items:center;}body main .t2392{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t2393{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t2394{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t2395{width:10rem;height:100%;background:rgb(208,0,0);}body main .t2396{width:8rem;height:100%;background:var(--gr);}body main .t2397{width:3rem;height:100%;background:var(--or);}body main .t2399{text-align:center;}body main .t2400{height:3rem;margin-left:2rem;}body main .t2409{font-family:'Rubik';}body main .t2410{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t2412{height:100%;}body main .t2413{width:100%;height:100%;display:flex;}body main .t2414{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2416{display:flex;position:relative;flex-direction:row;}body main .t2417{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2418{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2419{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t2420{width:20rem;display:flex;}body main .t2421{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2426{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2429{color:rgba(0,0,0,0);}body main .t2430{margin-right:1rem;}body main .t2431{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2432{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,153,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2433{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2434{width:20rem;display:flex;}body main .t2435{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2440{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2441{color:rgb(49,49,49);text-align:center;}body main .t2443{font-size:2rem;align-self:center;}body main .t2445{margin-right:1rem;}body main .t2446{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2447{top:0%;left:0%;right:0%;border:.5rem solid rgb(0,168,31);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2448{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2449{width:20rem;display:flex;}body main .t2450{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2455{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2456{color:rgb(49,49,49);text-align:center;}body main .t2458{font-size:2rem;align-self:center;}body main .t2460{margin-right:1rem;}body main .t2461{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2462{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t2463{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t2464{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t2465{width:10rem;height:100%;background:rgb(208,0,0);}body main .t2467{width:8rem;height:100%;background:rgb(0,168,31);}body main .t2468{width:3rem;height:100%;background:rgb(255,153,0);}body main .t2469{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t2470{display:flex;margin-top:2rem;align-items:center;}body main .t2471{text-align:center;}body main .t2472{height:3rem;margin-left:2rem;}body main .t2473{height:3rem;margin-left:2rem;}body main .t2482{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t2482{row-gap:30px;grid-template-columns:1fr ;}}body main .t2484{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t2484{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t2485{color:rgba(163,117,255,1.00);}}body main .t2493{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t2493{row-gap:30px;grid-template-columns:1fr ;}}body main .t2495{display:flex;row-gap:40px;column-gap:40px;}body main .t2497{display:flex;flex-direction:column;}body main .t2498{display:flex;flex-direction:column;}body main .t2499{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2502{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2504{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t2504{row-gap:30px;grid-template-columns:1fr ;}}body main .t2505{display:flex;row-gap:25px;flex-direction:column;}body main .t2509{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2511{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2512{display:flex;column-gap:100px;}body main .t2515{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t2523{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t2531{color:rgba(163,117,255,1.00);}}body main .t2539{display:flex;row-gap:24px;flex-direction:column;}body main .t2540{display:flex;row-gap:5px;flex-direction:column;}body main .t2541{display:flex;justify-content:flex-end;}body main .t2542{display:flex;row-gap:5px;flex-direction:column;}body main .t2544{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t2544:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t2545{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t2548{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t2548:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t2549{width:8rem;height:4rem;background:var(--rd);}body main .t2556{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2556{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2557{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2557{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2558{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t2558{display:flex;position:relative;}}body main .t2559{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t2559{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2560{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2560{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2561{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2562{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2563{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2564{display:flex;flex-direction:column;}body main .t2565{margin-top:1rem;}body main .t2566{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t2567{border-top:1px solid rgb(108,108,108);}body main .t2568{line-height:1.25;}body main .t2569{display:flex;}body main .t2570{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2571{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t2572{font-size:1rem;font-weight:300;}body main .t2573{line-height:1.25;}body main .t2574{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2575{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2576{font-style:italic;font-weight:300;line-height:1.25;}body main .t2577{font-weight:600;line-height:1.25;}body main .t2578{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2578{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2579{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2579{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2580{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2580{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2581{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2582{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2583{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2584{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2585{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2586{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2587{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2588{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2589{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2590{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2591{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2592{font-size:1.2rem;line-height:1;}body main .t2593{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2593{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2594{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2594{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2595{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t2595{display:flex;position:relative;}}body main .t2596{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t2596{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2597{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2597{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2598{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2598{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2599{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t2600{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2600{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2601{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2601{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2602{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t2604{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t2605{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2606{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2607{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2608{height:1.2rem;}body main .t2609{font-size:1.2rem;line-height:1;}body main .t2610{line-height:1;}body main .t2611{line-height:1;}body main .t2612{display:flex;flex-direction:column;}body main .t2613{margin-top:1rem;}body main .t2614{font-size:1rem;font-weight:300;}body main .t2615{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t2616{line-height:1.25;}body main .t2617{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2618{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2619{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2620{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2621{height:1.2rem;}body main .t2622{color:var(--or);font-size:1.2rem;line-height:1;}body main .t2623{line-height:1;}body main .t2624{line-height:1;}body main .t2625{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2626{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2627{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2628{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t2629{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t2630{line-height:1;}body main .t2631{line-height:1;}body main .t2632{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t2633{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t2634{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t2635{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t2636{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t2637{font-size:.75rem;}body main .t2638{align-self:center;font-style:italic;font-weight:500;}body main .t2639{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t2640{max-width:100%;min-width:60%;}body main .t2641{width:40%;}body main .t2642{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t2643{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t2644{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t2645{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t2646{text-align:right;}body main .t2647{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2648{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t2649{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2649{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2650{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2650{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2651{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t2651{display:flex;position:relative;}}body main .t2652{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t2652{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2653{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2653{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2654{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2655{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2656{display:flex;flex-direction:column;}body main .t2657{margin-top:1rem;}body main .t2658{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2659{font-size:1rem;font-weight:300;}body main .t2660{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t2661{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2662{line-height:1.25;}body main .t2663{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2664{line-height:1.25;}body main .t2665{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2665{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2666{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2666{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2667{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2667{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2668{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2669{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2670{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2671{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2672{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2673{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2674{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2675{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2676{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2677{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2678{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2679{font-size:1.2rem;line-height:1;}body main .t2681{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t2684{color:rgb(255,255,255);width:14rem;height:2.5rem;display:flex;background:var(--gr);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t2685{cursor:pointer;}body main .t2693{color:var(--or);}body main .t2694{color:rgb(255,0,247);}body main .t2700{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t2701{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t2702{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t2703{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t2704{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t2705{font-size:1.25rem;}body main .t2706{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t2707{display:flex;column-gap:1rem;}body main .t2709{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t2710{color:#ffbb00;font-size:2.5rem;}body main .t2712{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t2712{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t2713{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t2713{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t2714{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t2714{display:flex;position:relative;}}body main .t2715{display:flex;position:relative;margin-top:2rem;padding-top:15px;break-inside:avoid;padding-left:15px;margin-bottom:2rem;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2715{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2716{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t2716{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t2717{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2717{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t2718{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2719{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2720{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t2721{display:flex;flex-direction:column;}body main .t2722{margin-top:1rem;}body main .t2723{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2724{font-size:1rem;font-weight:300;}body main .t2725{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t2726{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2727{line-height:1.25;}body main .t2729{line-height:1.25;}body main .t2730{display:flex;}body main .t2731{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2732{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2732{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2733{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2733{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2734{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2734{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2735{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2736{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2737{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2738{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2739{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2740{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2741{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2742{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2743{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2744{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2745{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2746{font-size:1.2rem;line-height:1;}body main .t2747{text-align:right;}body main .t2748{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t2749{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t2750{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t2751{display:flex;flex-direction:column;}body main .t2752{margin-top:1rem;}body main .t2753{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t2754{font-size:1rem;font-weight:300;}body main .t2755{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t2756{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t2757{line-height:1.25;}body main .t2759{line-height:1.25;}body main .t2760{display:flex;}body main .t2761{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t2762{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2762{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2763{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t2763{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2764{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t2764{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t2765{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2766{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2767{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2768{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t2769{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2770{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2771{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2772{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t2773{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t2774{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t2775{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t2776{font-size:1.2rem;line-height:1;}body main .t2777{text-align:right;}body main .t2780{font-family:'Rubik';}body main .t2783{width:200px;height:200px;}body main .t2784{font-family:'Rubik';}body main .t2785{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t2787{height:100%;}body main .t2788{width:100%;height:100%;display:flex;}body main .t2789{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2790{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2792{display:flex;position:relative;flex-direction:row;}body main .t2793{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2794{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2795{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2796{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2797{color:rgba(0,0,0,0);}body main .t2798{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t2799{width:20rem;display:flex;}body main .t2800{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2805{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2808{margin-right:1rem;}body main .t2809{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2810{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2811{width:20rem;display:flex;}body main .t2812{font-size:2rem;align-self:center;}body main .t2814{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2819{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2820{color:rgb(49,49,49);text-align:center;}body main .t2822{margin-right:1rem;}body main .t2823{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2824{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2825{width:20rem;display:flex;}body main .t2826{font-size:2rem;align-self:center;}body main .t2828{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2833{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2834{color:rgb(49,49,49);text-align:center;}body main .t2836{margin-right:1rem;}body main .t2837{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t2838{display:flex;margin-top:2rem;align-items:center;}body main .t2839{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t2840{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t2841{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t2842{width:10rem;height:100%;background:rgb(208,0,0);}body main .t2843{width:8rem;height:100%;background:var(--gr);}body main .t2844{width:3rem;height:100%;background:var(--or);}body main .t2846{text-align:center;}body main .t2847{height:3rem;margin-left:2rem;}body main .t2856{font-family:'Rubik';}body main .t2857{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t2859{height:100%;}body main .t2860{width:100%;height:100%;display:flex;}body main .t2861{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2862{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t2864{display:flex;position:relative;flex-direction:row;}body main .t2865{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2866{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t2867{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2868{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2869{color:rgba(0,0,0,0);}body main .t2870{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t2871{width:20rem;display:flex;}body main .t2872{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2877{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2880{margin-right:1rem;}body main .t2881{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,153,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2882{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2883{width:20rem;display:flex;}body main .t2884{font-size:2rem;align-self:center;}body main .t2886{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2891{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2892{color:rgb(49,49,49);text-align:center;}body main .t2894{margin-right:1rem;}body main .t2895{top:0%;left:0%;right:0%;border:.5rem solid rgb(0,168,31);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t2896{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t2897{width:20rem;display:flex;}body main .t2898{font-size:2rem;align-self:center;}body main .t2900{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t2905{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t2906{color:rgb(49,49,49);text-align:center;}body main .t2908{margin-right:1rem;}body main .t2909{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t2910{display:flex;margin-top:2rem;align-items:center;}body main .t2912{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t2913{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t2914{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t2915{width:10rem;height:100%;background:rgb(208,0,0);}body main .t2916{width:8rem;height:100%;background:rgb(0,168,31);}body main .t2917{width:3rem;height:100%;background:rgb(255,153,0);}body main .t2919{text-align:center;}body main .t2920{height:3rem;margin-left:2rem;}body main .t2921{height:3rem;margin-left:2rem;}body main .t2922{width:10rem;height:10rem;}body main .t2926{display:grid;grid-template-columns:1fr 1fr;}body main .t2927{width:18rem;border:1px solid rgba(0,0,0,1);height:25rem;display:flex;position:relative;align-items:center;flex-direction:column;justify-content:center;}body main .t2928{top:0%;left:0%;right:0%;width:90%;bottom:0%;height:90%;display:flex;row-gap:1rem;position:absolute;align-self:center;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t2933{width:100%;height:8rem;}body main .t2934{max-height:100%;}body main .t2935{display:grid;grid-template-columns:1fr 1fr;}body main .t2936{width:18rem;border:1px solid rgba(0,0,0,1);height:25rem;display:flex;position:relative;align-items:center;flex-direction:column;justify-content:center;}body main .t2937{top:0%;left:0%;right:0%;width:90%;bottom:0%;height:90%;display:flex;row-gap:1rem;position:absolute;align-self:center;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t2942{width:100%;height:8rem;}body main .t2943{max-height:100%;}body main .t2944{display:grid;position:relative;}body main .t2945{display:grid;row-gap:2rem;column-gap:2rem;grid-template-columns:1fr 1fr 1fr;}body main .t2947{width:480px;display:flex;row-gap:3rem;align-items:center;flex-direction:column;}body main .t2949{width:100%;display:flex;justify-content:center;}@media screen and (max-width: 480px) {body main .t2952{display:flex;column-gap:2rem;padding-top:2rem;padding-bottom:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2953{width:8rem;height:8rem;overflow:hidden;background:var(--or);border-radius:50%;}}@media screen and (max-width: 480px) {body main .t2955{align-self:center;}}@media screen and (max-width: 480px) {body main .t2956{font-family:'Bebas Neue';line-height:1.2;}}@media screen and (max-width: 480px) {body main .t2959{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:row;padding-bottom:1rem;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t2960{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t2961{width:100%;display:flex;align-items:center;justify-content:space-between;}}@media screen and (max-width: 480px) {body main .t2962{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t2963{width:2rem;height:2rem;}}@media screen and (max-width: 480px) {body main .t2965{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t2966{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t2967{width:2rem;height:2rem;}}@media screen and (max-width: 480px) {body main .t2969{display:flex;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2970{width:100%;display:flex;position:relative;column-gap:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2971{width:80%;height:18rem;background:var(--or);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t2972{display:flex;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t2973{display:flex;column-gap:2rem;}}@media screen and (max-width: 480px) {body main .t2974{width:14rem;height:10rem;background:rgb(255,153,0);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t2975{font-family:'League Spartan';}}@media screen and (max-width: 480px) {body main .t2976{display:flex;row-gap:1rem;align-items:center;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t2977{width:90%;display:flex;column-gap:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2978{width:100%;height:6rem;background:rgb(229,229,229);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t2979{color:rgb(255,255,255);width:100%;height:3rem;display:flex;align-self:center;background:rgb(47,47,47);column-gap:2rem;text-align:center;align-items:center;font-family:'Rubik';padding-top:0px;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2980{display:flex;font-size:1.75rem;align-items:center;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2981{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t2982{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2983{max-width:80%;max-height:80%;}}@media screen and (max-width: 480px) {body main .t2984{font-family:'Rubik';}}@media screen and (max-width: 480px) {body main .t2985{width:70%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t2986{font-family:'Rubik';font-weight:400;}}@media screen and (max-width: 480px) {body main .t2987{font-size:1.75rem;font-weight:400;}}@media screen and (max-width: 480px) {body main .t2988{font-size:1.75rem;font-weight:400;}}@media screen and (max-width: 480px) {body main .t2989{color:rgb(3,3,3);height:100%;display:flex;background:rgb(255,170,0);align-items:center;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 480px) {body main .t2990{font-size:1.5rem;font-family:'Rubik';font-weight:300;}}@media screen and (max-width: 480px) {body main .t2991{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2992{width:100%;height:6rem;background:rgb(50,50,50);border-radius:1rem 1rem 0px 0px;}}@media screen and (max-width: 480px) {body main .t2993{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t2994{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}@media screen and (max-width: 480px) {body main .t2995{max-width:80%;max-height:80%;}}@media screen and (max-width: 480px) {body main .t2996{width:50%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t2997{font-family:'Rubik';}}@media screen and (max-width: 480px) {body main .t2998{font-family:'Rubik';font-weight:400;}}@media screen and (max-width: 480px) {body main .t2999{width:10rem;height:3rem;display:flex;column-gap:.25rem;align-items:center;}}@media screen and (max-width: 480px) {body main .t3000{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3001{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3002{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3003{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3004{width:1.5rem;}}body main .t3008{height:100vh;outline:1px solid rgba(0,0,0,1);overflow-y:visible;font-family:'Rubik';}body main .t3009{color:rgb(255,255,255);height:8rem;display:flex;background:#262626;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3009{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3009{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:row;padding-bottom:1rem;justify-content:flex-end;}}body main .t3010{display:grid;font-size:3rem;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 480px) {body main .t3010{width:100%;display:flex;align-items:center;justify-content:space-between;}}body main .t3011{display:flex;column-gap:1rem;}@media screen and (max-width: 480px) {body main .t3011{display:flex;column-gap:.25rem;}}body main .t3012{font-weight:700;}@media screen and (max-width: 480px) {body main .t3012{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t3013{width:2rem;height:2rem;}}body main .t3014{width:4rem;}body main .t3015{display:flex;}@media screen and (max-width: 480px) {body main .t3015{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t3016{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t3017{width:4rem;}@media screen and (max-width: 480px) {body main .t3017{width:2rem;height:2rem;}}body main .t3019{display:flex;row-gap:2rem;overflow:scroll;max-height:80vh;align-items:center;padding-top:6rem;flex-direction:column;padding-bottom:10rem;}@media screen and (max-width: 480px) {body main .t3019{display:flex;row-gap:1rem;align-items:center;flex-direction:column;}}body main .t3020{width:100%;display:flex;position:relative;align-items:center;flex-direction:column;}@media screen and (max-width: 480px) {body main .t3020{width:90%;display:flex;column-gap:2rem;justify-content:center;}}body main .t3021{width:50%;background:rgb(242,242,242);border-radius:2rem;}@media screen and (max-width: 991px) {body main .t3021{width:95%;}}@media screen and (max-width: 480px) {body main .t3021{width:100%;height:6rem;background:rgb(229,229,229);border-radius:1rem;}}body main .t3022{height:12rem;display:grid;column-gap:1rem;align-items:center;padding-left:2rem;justify-items:start;padding-right:1px;grid-template-columns:20% 1fr;}@media screen and (max-width: 480px) {body main .t3022{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}body main .t3023{width:8rem;height:8rem;display:flex;max-width:8rem;background:rgb(27,27,27);max-height:8rem;min-height:8rem;align-items:center;border-radius:50%;justify-content:center;}@media screen and (max-width: 480px) {body main .t3023{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}body main .t3024{max-width:75%;object-fit:contain;aspect-ratio:1/1;border-radius:50%;}@media screen and (max-width: 480px) {body main .t3024{max-width:80%;max-height:80%;}}body main .t3025{display:flex;flex-direction:column;justify-content:center;}@media screen and (max-width: 480px) {body main .t3025{width:70%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}body main .t3026{font-size:1.5rem;font-weight:400;}@media screen and (max-width: 480px) {body main .t3026{font-family:'Rubik';font-weight:400;}}body main .t3027{font-size:2em;}@media screen and (max-width: 480px) {body main .t3027{font-family:'Rubik';}}body main .t3029{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t3030{display:flex;font-size:3rem;align-items:center;justify-content:center;}body main .t3033{top:auto;left:0%;right:0%;width:100%;bottom:0%;height:14vh;display:flex;z-index:200;position:fixed;background:#262626;column-gap:8rem;align-items:flex-end;margin-left:auto;padding-top:2rem;margin-right:auto;padding-bottom:1rem;justify-content:center;}@media screen and (max-width: 480px) {body main .t3033{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}body main .t3035{top:0px;left:0px;right:0px;bottom:0px;height:100vh;outline:1px solid rgba(0,0,0,1);overflow:hidden;background:#262626;overflow-y:visible;font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t3035{height:100vh;overflow:hidden;}}body main .t3036{color:rgb(255,255,255);width:50%;display:flex;font-size:3rem;background:rgb(39,39,39);margin-top:2rem;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr;}@media screen and (max-width: 767px) {body main .t3036{row-gap:2rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t3036{width:90%;display:flex;align-items:center;flex-direction:row;justify-content:space-between;}}body main .t3037{width:50%;display:flex;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3037{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3037{width:100%;}}@media screen and (max-width: 480px) {body main .t3037{display:flex;column-gap:.25rem;}}@media screen and (max-width: 767px) {body main .t3038{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3038{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t3039{width:3rem;}@media screen and (max-width: 480px) {body main .t3039{width:2rem;height:2rem;}}@media screen and (max-width: 991px) {body main .t3040{object-fit:fill;}}body main .t3041{width:50%;display:flex;align-self:center;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3041{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3041{width:100%;}}@media screen and (max-width: 480px) {body main .t3041{display:flex;column-gap:.25rem;}}body main .t3042{font-weight:700;}@media screen and (max-width: 767px) {body main .t3042{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3042{font-size:1.75rem;font-family:'Rubik';font-weight:700;}}body main .t3043{width:3rem;}@media screen and (max-width: 480px) {body main .t3043{width:2rem;height:2rem;}}body main .t3044{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#262626;align-items:center;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3044{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3044{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t3045{font-size:10rem;text-align:center;font-family:'Bebas Neue';line-height:1;}@media screen and (max-width: 480px) {body main .t3045{font-size:6rem;}}body main .t3046{width:80%;height:.5rem;background:rgb(255,161,0);margin-top:1rem;margin-bottom:2rem;}body main .t3047{background:#0c121f;}body main .t3048{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t3049{font-size:4rem;font-family:'Rubik';}body main .t3050{color:rgb(255,255,255);display:flex;align-items:center;margin-bottom:4rem;}body main .t3052{font-size:6rem;}body main .t3054{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t3055{display:flex;align-items:center;}body main .t3056{font-size:6rem;font-family:'Bebas Neue';}body main .t3057{font-size:6rem;}body main .t3058{display:flex;flex-wrap:wrap;column-gap:2rem;grid-template-columns:1fr 1fr;}body main .t3059{width:15rem;height:22rem;position:relative;background:rgb(255,153,0);font-family:'Rubik';border-radius:1rem;}body main .t3060{margin-top:1rem;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;}body main .t3061{font-size:4rem;}body main .t3063{font-size:2.5rem;}body main .t3064{top:auto;left:auto;right:1rem;bottom:1rem;position:absolute;text-align:right;}body main .t3066{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3067{height:100dvh;display:flex;row-gap:2rem;align-self:center;align-items:center;flex-direction:column;justify-content:center;}body main .t3069{height:100vh;display:flex;flex-direction:column;justify-content:space-between;}body main .t3070{display:flex;align-self:center;flex-direction:column;justify-content:center;}body main .t3072{color:rgb(255,255,255);width:10rem;height:2rem;display:flex;background:rgb(0,168,31);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t3073{cursor:pointer;}body main .t3074{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t3076{background:var(--rd);box-sizing:border-box;min-height:100%;}body main .t3077{width:100%;height:100dvh;display:flex;position:relative;background:var(--or);flex-direction:column;padding-bottom:env(safe-area-inset-bottom);justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t3078{font-size:1.5rem;margin-left:.5rem;}}@media screen and (max-width: 480px) {body main .t3078{font-size:1.25rem;font-family:'Rubik';margin-left:.5rem;}}body main .t3079{color:rgb(204,204,204);font-size:5rem;text-align:center;font-family:'Rubik';font-weight:300;line-height:1;}@media screen and (max-width: 991px) {body main .t3079{font-size:5rem;}}@media screen and (max-width: 767px) {body main .t3079{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3079{font-size:6rem;}}body main .t3080{display:flex;align-items:center;flex-direction:column;justify-content:center;}body main .t3083{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3084{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#0c121f;align-items:flex-start;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3084{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3084{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t3085{width:80%;height:.5rem;background:rgb(255,161,0);margin-top:1rem;margin-bottom:2rem;}body main .t3086{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;}body main .t3087{color:rgba(255,255,255,0.75);font-size:5rem;text-align:center;font-family:'Rubik';font-weight:300;line-height:1;}@media screen and (max-width: 991px) {body main .t3087{font-size:5rem;}}@media screen and (max-width: 767px) {body main .t3087{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3087{font-size:6rem;}}body main .t3088{font-size:6rem;text-align:center;font-family:'Rubik';font-weight:400;line-height:1;}@media screen and (max-width: 480px) {body main .t3088{font-size:6rem;}}body main .t3089{height:7rem;display:flex;position:sticky;background:#101729;align-items:center;padding-left:3rem;padding-right:3rem;}@media screen and (max-width: 767px) {body main .t3089{padding-left:1rem;padding-right:1rem;justify-content:center;}}body main .t3090{color:rgb(255,255,255);width:100%;display:flex;font-size:3rem;background:#101629;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr;}@media screen and (max-width: 767px) {body main .t3090{row-gap:2rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t3090{width:90%;display:flex;align-items:center;flex-direction:row;justify-content:space-between;}}body main .t3091{display:flex;align-self:center;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3091{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3091{justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t3091{display:flex;column-gap:.25rem;}}body main .t3092{font-weight:700;}@media screen and (max-width: 767px) {body main .t3092{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3092{font-size:1.75rem;font-family:'Rubik';font-weight:700;}}body main .t3093{width:3rem;}@media screen and (max-width: 480px) {body main .t3093{width:2rem;height:2rem;}}body main .t3095{display:flex;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3095{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3095{justify-content:flex-start;}}@media screen and (max-width: 480px) {body main .t3095{display:flex;column-gap:.25rem;}}@media screen and (max-width: 767px) {body main .t3096{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3096{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t3097{width:3rem;}@media screen and (max-width: 480px) {body main .t3097{width:2rem;height:2rem;}}@media screen and (max-width: 991px) {body main .t3098{object-fit:fill;}}@media screen and (max-width: 767px) {body main .t3099{font-size:1.5rem;margin-left:.5rem;}}@media screen and (max-width: 480px) {body main .t3099{font-size:1.25rem;font-family:'Rubik';margin-left:.5rem;}}body main .t3100{width:80%;display:flex;flex-direction:column;}body main .t3102{display:grid;row-gap:2rem;flex-wrap:wrap;column-gap:2rem;margin-top:1rem;margin-left:1rem;margin-right:1rem;justify-items:center;margin-bottom:1rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr 1fr;}@media screen and (max-width: 480px) {body main .t3102{justify-items:center;grid-template-columns:1fr;}}body main .t3103{width:18rem;height:22rem;display:grid;position:relative;background:#101729;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t3104{display:flex;row-gap:1rem;margin-top:1rem;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;justify-content:center;}body main .t3105{width:6rem;}body main .t3106{color:rgb(255,255,255);font-size:2rem;}body main .t3107{color:rgb(255,183,0);text-align:right;}body main .t3108{color:rgb(255,255,255);}body main .t3109{color:#0c121f;width:6rem;height:2rem;display:flex;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t3110{display:flex;row-gap:1rem;margin-top:1rem;flex-direction:column;}body main .t3111{height:3rem;display:flex;flex-wrap:wrap;background:#101729;column-gap:1rem;align-items:center;font-family:'Rubik';border-radius:1rem;}body main .t3112{width:1.5rem;}body main .t3114{font-size:1rem;}body main .t3115{font-size:.5rem;}body main .t3116{display:flex;row-gap:1rem;flex-direction:column;}body main .t3117{height:3rem;display:flex;flex-wrap:wrap;background:#101729;column-gap:1rem;align-items:center;font-family:'Rubik';border-radius:1rem;}body main .t3118{width:1.5rem;}body main .t3120{font-size:1rem;}body main .t3121{font-size:.5rem;}body main .t3124{width:18rem;height:22rem;display:flex;position:relative;background:#101729;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t3125{display:flex;row-gap:1rem;margin-top:1rem;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;justify-content:center;}body main .t3126{width:6rem;}body main .t3128{color:rgb(255,255,255);font-size:2rem;}body main .t3129{color:rgb(255,255,255);}body main .t3130{top:auto;left:auto;color:#0c121f;right:1rem;width:6rem;bottom:1.5rem;height:2rem;display:flex;position:absolute;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t3132{top:1rem;left:auto;color:rgb(255,183,0);right:1rem;bottom:auto;position:absolute;text-align:right;}body main .t3133{width:18rem;height:22rem;display:flex;position:relative;background:#101729;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t3134{display:flex;row-gap:1rem;margin-top:1rem;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;justify-content:center;}body main .t3135{width:6rem;}body main .t3137{color:rgb(255,255,255);font-size:2rem;}body main .t3138{color:rgb(255,255,255);}body main .t3139{top:auto;left:auto;color:#0c121f;right:1rem;width:6rem;bottom:1.5rem;height:2rem;display:flex;position:absolute;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t3141{top:1rem;left:auto;color:rgb(255,183,0);right:1rem;bottom:auto;position:absolute;text-align:right;}body main .t3142{display:flex;align-items:flex-end;margin-right:.5rem;margin-bottom:1rem;justify-content:flex-end;}body main .t3151{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t3151{row-gap:30px;grid-template-columns:1fr ;}}body main .t3153{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t3153{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t3154{color:rgba(163,117,255,1.00);}}body main .t3162{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t3162{row-gap:30px;grid-template-columns:1fr ;}}body main .t3164{display:flex;row-gap:40px;column-gap:40px;}body main .t3166{display:flex;flex-direction:column;}body main .t3167{display:flex;flex-direction:column;}body main .t3168{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3171{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3173{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t3173{row-gap:30px;grid-template-columns:1fr ;}}body main .t3174{display:flex;row-gap:25px;flex-direction:column;}body main .t3178{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3180{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3181{display:flex;column-gap:100px;}body main .t3184{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3192{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t3200{color:rgba(163,117,255,1.00);}}body main .t3208{display:flex;row-gap:24px;flex-direction:column;}body main .t3209{display:flex;row-gap:5px;flex-direction:column;}body main .t3210{display:flex;justify-content:flex-end;}body main .t3211{display:flex;row-gap:5px;flex-direction:column;}body main .t3213{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t3213:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t3214{color:rgba(255,255,255,1.00);border:1px none rgba(0,0,0,1);background:rgba(0,0,0,1.00);padding-top:15px;padding-left:19px;padding-right:19px;padding-bottom:15px;}body main .t3217{color:rgba(0,0,0,1.00);border:1px solid rgba(221,221,221,1.00);height:44px;background:rgba(255,255,255,1.00);padding-left:10px;padding-right:10px;}body main .t3217:focus{border:1px solid rgba(0,0,0,1.00);outline:none;}body main .t3218{width:8rem;height:4rem;background:var(--rd);}body main .t3225{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t3225{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t3226{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t3226{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t3227{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t3227{display:flex;position:relative;}}body main .t3228{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3228{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t3229{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3229{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t3230{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t3231{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t3232{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t3233{display:flex;flex-direction:column;}body main .t3234{margin-top:1rem;}body main .t3235{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t3236{border-top:1px solid rgb(108,108,108);}body main .t3237{line-height:1.25;}body main .t3238{display:flex;}body main .t3239{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t3240{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t3241{font-size:1rem;font-weight:300;}body main .t3242{line-height:1.25;}body main .t3243{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t3244{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t3245{font-style:italic;font-weight:300;line-height:1.25;}body main .t3246{font-weight:600;line-height:1.25;}body main .t3247{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3247{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3248{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3248{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3249{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3249{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3250{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3251{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3252{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3253{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t3254{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3255{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3256{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3257{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t3258{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3259{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3260{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3261{font-size:1.2rem;line-height:1;}body main .t3262{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t3262{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t3263{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t3263{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t3264{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t3264{display:flex;position:relative;}}body main .t3265{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t3265{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t3266{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3266{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t3267{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3267{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3268{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t3269{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3269{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3270{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3270{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3271{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t3273{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t3274{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3275{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3276{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3277{height:1.2rem;}body main .t3278{font-size:1.2rem;line-height:1;}body main .t3279{line-height:1;}body main .t3280{line-height:1;}body main .t3281{display:flex;flex-direction:column;}body main .t3282{margin-top:1rem;}body main .t3283{font-size:1rem;font-weight:300;}body main .t3284{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t3285{line-height:1.25;}body main .t3286{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t3287{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3288{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3289{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3290{height:1.2rem;}body main .t3291{color:var(--or);font-size:1.2rem;line-height:1;}body main .t3292{line-height:1;}body main .t3293{line-height:1;}body main .t3294{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3295{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3296{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3297{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t3298{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t3299{line-height:1;}body main .t3300{line-height:1;}body main .t3301{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t3302{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t3303{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t3304{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t3305{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t3306{font-size:.75rem;}body main .t3307{align-self:center;font-style:italic;font-weight:500;}body main .t3308{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t3309{max-width:100%;min-width:60%;}body main .t3310{width:40%;}body main .t3311{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t3312{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t3313{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t3314{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t3315{text-align:right;}body main .t3316{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3317{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t3318{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t3318{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t3319{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t3319{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t3320{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t3320{display:flex;position:relative;}}body main .t3321{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3321{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t3322{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3322{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t3323{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t3324{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t3325{display:flex;flex-direction:column;}body main .t3326{margin-top:1rem;}body main .t3327{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t3328{font-size:1rem;font-weight:300;}body main .t3329{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t3330{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t3331{line-height:1.25;}body main .t3332{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t3333{line-height:1.25;}body main .t3334{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3334{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3335{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3335{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3336{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3336{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3337{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3338{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3339{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3340{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t3341{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3342{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3343{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3344{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t3345{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3346{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3347{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3348{font-size:1.2rem;line-height:1;}body main .t3349{background:#0c121f;}body main .t3350{color:rgb(255,255,255);width:100%;height:100%;display:flex;row-gap:3rem;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3350{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3350{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t3351{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t3354{color:rgb(255,255,255);width:14rem;height:2.5rem;display:flex;background:var(--gr);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t3355{cursor:pointer;}body main .t3363{color:var(--or);}body main .t3364{color:rgb(255,0,247);}body main .t3370{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t3371{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t3372{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t3373{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t3374{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t3375{font-size:1.25rem;}body main .t3376{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t3377{display:flex;column-gap:1rem;}body main .t3379{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t3380{color:#ffbb00;font-size:2.5rem;}body main .t3382{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t3382{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t3383{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t3383{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t3384{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t3384{display:flex;position:relative;}}body main .t3385{display:flex;position:relative;margin-top:2rem;padding-top:15px;break-inside:avoid;padding-left:15px;margin-bottom:2rem;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3385{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t3386{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3386{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t3387{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3387{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t3388{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t3389{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t3390{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t3391{display:flex;flex-direction:column;}body main .t3392{margin-top:1rem;}body main .t3393{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t3394{font-size:1rem;font-weight:300;}body main .t3395{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t3396{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t3397{line-height:1.25;}body main .t3399{line-height:1.25;}body main .t3400{display:flex;}body main .t3401{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t3402{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3402{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3403{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3403{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3404{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3404{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3405{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3406{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3407{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3408{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t3409{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3410{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3411{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3412{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t3413{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3414{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3415{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3416{font-size:1.2rem;line-height:1;}body main .t3417{text-align:right;}body main .t3418{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t3419{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t3420{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t3421{display:flex;flex-direction:column;}body main .t3422{margin-top:1rem;}body main .t3423{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t3424{font-size:1rem;font-weight:300;}body main .t3425{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t3426{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t3427{line-height:1.25;}body main .t3429{line-height:1.25;}body main .t3430{display:flex;}body main .t3431{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t3432{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3432{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3433{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t3433{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3434{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t3434{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t3435{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3436{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3437{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3438{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t3439{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3440{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3441{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3442{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t3443{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t3444{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t3445{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t3446{font-size:1.2rem;line-height:1;}body main .t3447{text-align:right;}body main .t3450{font-family:'Rubik';}body main .t3453{width:200px;height:200px;}body main .t3454{font-family:'Rubik';}body main .t3455{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t3457{height:100%;}body main .t3458{width:100%;height:100%;display:flex;}body main .t3459{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t3460{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t3462{display:flex;position:relative;flex-direction:row;}body main .t3463{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t3464{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t3465{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t3466{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t3467{color:rgba(0,0,0,0);}body main .t3468{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t3469{width:20rem;display:flex;}body main .t3470{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t3475{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t3478{margin-right:1rem;}body main .t3479{top:0%;left:0%;right:0%;border:.5rem solid var(--or);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t3480{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t3481{width:20rem;display:flex;}body main .t3482{font-size:2rem;align-self:center;}body main .t3484{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t3489{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t3490{color:rgb(49,49,49);text-align:center;}body main .t3492{margin-right:1rem;}body main .t3493{top:0%;left:0%;right:0%;border:.5rem solid var(--gr);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t3494{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t3495{width:20rem;display:flex;}body main .t3496{font-size:2rem;align-self:center;}body main .t3498{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t3503{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t3504{color:rgb(49,49,49);text-align:center;}body main .t3506{margin-right:1rem;}body main .t3507{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t3508{display:flex;margin-top:2rem;align-items:center;}body main .t3509{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t3510{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t3511{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t3512{width:10rem;height:100%;background:rgb(208,0,0);}body main .t3513{width:8rem;height:100%;background:var(--gr);}body main .t3514{width:3rem;height:100%;background:var(--or);}body main .t3516{text-align:center;}body main .t3517{height:3rem;margin-left:2rem;}body main .t3526{font-family:'Rubik';}body main .t3527{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t3529{height:100%;}body main .t3530{width:100%;height:100%;display:flex;}body main .t3531{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t3532{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t3534{display:flex;position:relative;flex-direction:row;}body main .t3535{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t3536{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t3537{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t3538{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t3539{color:rgba(0,0,0,0);}body main .t3540{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t3541{width:20rem;display:flex;}body main .t3542{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t3547{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t3550{margin-right:1rem;}body main .t3551{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,153,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t3552{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t3553{width:20rem;display:flex;}body main .t3554{font-size:2rem;align-self:center;}body main .t3556{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t3561{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t3562{color:rgb(49,49,49);text-align:center;}body main .t3564{margin-right:1rem;}body main .t3565{top:0%;left:0%;right:0%;border:.5rem solid rgb(0,168,31);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t3566{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t3567{width:20rem;display:flex;}body main .t3568{font-size:2rem;align-self:center;}body main .t3570{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t3575{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t3576{color:rgb(49,49,49);text-align:center;}body main .t3578{margin-right:1rem;}body main .t3579{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t3580{display:flex;margin-top:2rem;align-items:center;}body main .t3582{width:10rem;height:10rem;}body main .t3583{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t3584{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t3585{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t3586{width:10rem;height:100%;background:rgb(208,0,0);}body main .t3587{width:8rem;height:100%;background:rgb(0,168,31);}body main .t3588{width:3rem;height:100%;background:rgb(255,153,0);}body main .t3590{text-align:center;}body main .t3591{height:3rem;margin-left:2rem;}body main .t3592{height:3rem;margin-left:2rem;}body main .t3596{display:grid;grid-template-columns:1fr 1fr;}body main .t3597{display:grid;grid-template-columns:1fr 1fr;}body main .t3598{width:18rem;border:1px solid rgba(0,0,0,1);height:25rem;display:flex;position:relative;align-items:center;flex-direction:column;justify-content:center;}body main .t3599{top:0%;left:0%;right:0%;width:90%;bottom:0%;height:90%;display:flex;row-gap:1rem;position:absolute;align-self:center;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t3602{width:100%;height:8rem;}body main .t3605{max-height:100%;}body main .t3606{display:grid;position:relative;}body main .t3607{display:grid;row-gap:2rem;column-gap:2rem;grid-template-columns:1fr 1fr 1fr;}body main .t3608{width:18rem;border:1px solid rgba(0,0,0,1);height:25rem;display:flex;position:relative;align-items:center;flex-direction:column;justify-content:center;}body main .t3609{top:0%;left:0%;right:0%;width:90%;bottom:0%;height:90%;display:flex;row-gap:1rem;position:absolute;align-self:center;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t3612{width:100%;height:8rem;}body main .t3615{max-height:100%;}body main .t3617{width:480px;display:flex;row-gap:3rem;align-items:center;flex-direction:column;}body main .t3618{width:100%;display:flex;justify-content:center;}@media screen and (max-width: 480px) {body main .t3624{display:flex;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3625{display:flex;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t3626{display:flex;row-gap:1rem;align-items:center;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t3627{display:flex;column-gap:2rem;padding-top:2rem;padding-bottom:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3628{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:row;padding-bottom:1rem;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t3629{width:8rem;height:8rem;overflow:hidden;background:var(--or);border-radius:50%;}}@media screen and (max-width: 480px) {body main .t3630{align-self:center;}}@media screen and (max-width: 480px) {body main .t3632{font-family:'Bebas Neue';line-height:1.2;}}@media screen and (max-width: 480px) {body main .t3633{font-size:1.5rem;font-family:'Rubik';font-weight:300;}}@media screen and (max-width: 480px) {body main .t3634{width:100%;display:flex;align-items:center;justify-content:space-between;}}@media screen and (max-width: 480px) {body main .t3635{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t3636{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t3637{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t3638{width:2rem;height:2rem;}}@media screen and (max-width: 480px) {body main .t3640{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t3641{width:2rem;height:2rem;}}@media screen and (max-width: 480px) {body main .t3643{width:100%;display:flex;position:relative;column-gap:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3644{width:80%;height:18rem;background:var(--or);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t3645{font-family:'League Spartan';}}@media screen and (max-width: 480px) {body main .t3646{display:flex;column-gap:2rem;}}@media screen and (max-width: 480px) {body main .t3647{width:14rem;height:10rem;background:rgb(255,153,0);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t3648{width:90%;display:flex;column-gap:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3649{color:rgb(255,255,255);width:100%;height:3rem;display:flex;align-self:center;background:rgb(47,47,47);column-gap:2rem;text-align:center;align-items:center;font-family:'Rubik';padding-top:0px;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3650{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3651{width:100%;height:6rem;background:rgb(229,229,229);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t3652{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t3653{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3654{width:70%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t3655{max-width:80%;max-height:80%;}}@media screen and (max-width: 480px) {body main .t3656{font-family:'Rubik';}}@media screen and (max-width: 480px) {body main .t3657{font-family:'Rubik';font-weight:400;}}@media screen and (max-width: 480px) {body main .t3658{font-size:1.75rem;font-weight:400;}}@media screen and (max-width: 480px) {body main .t3659{font-size:1.75rem;font-weight:400;}}@media screen and (max-width: 480px) {body main .t3660{color:rgb(3,3,3);height:100%;display:flex;background:rgb(255,170,0);align-items:center;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 480px) {body main .t3661{display:flex;font-size:1.75rem;align-items:center;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3662{width:100%;height:6rem;background:rgb(50,50,50);border-radius:1rem 1rem 0px 0px;}}@media screen and (max-width: 480px) {body main .t3663{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t3664{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}@media screen and (max-width: 480px) {body main .t3665{width:50%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t3666{width:10rem;height:3rem;display:flex;column-gap:.25rem;align-items:center;}}@media screen and (max-width: 480px) {body main .t3667{max-width:80%;max-height:80%;}}@media screen and (max-width: 480px) {body main .t3668{font-family:'Rubik';}}@media screen and (max-width: 480px) {body main .t3669{font-family:'Rubik';font-weight:400;}}@media screen and (max-width: 480px) {body main .t3670{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3671{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3672{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3673{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t3674{width:1.5rem;}}body main .t3678{height:100vh;outline:1px solid rgba(0,0,0,1);overflow-y:visible;font-family:'Rubik';}body main .t3679{top:auto;left:0%;right:0%;width:100%;bottom:0%;height:14vh;display:flex;z-index:200;position:fixed;background:#262626;column-gap:8rem;align-items:flex-end;margin-left:auto;padding-top:2rem;margin-right:auto;padding-bottom:1rem;justify-content:center;}@media screen and (max-width: 480px) {body main .t3679{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}body main .t3681{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t3682{display:flex;font-size:3rem;align-items:center;justify-content:center;}body main .t3685{color:rgb(255,255,255);height:8rem;display:flex;background:#262626;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3685{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3685{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:row;padding-bottom:1rem;justify-content:flex-end;}}body main .t3686{display:flex;row-gap:2rem;overflow:scroll;max-height:80vh;align-items:center;padding-top:6rem;flex-direction:column;padding-bottom:10rem;}@media screen and (max-width: 480px) {body main .t3686{display:flex;row-gap:1rem;align-items:center;flex-direction:column;}}body main .t3687{display:grid;font-size:3rem;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 480px) {body main .t3687{width:100%;display:flex;align-items:center;justify-content:space-between;}}body main .t3688{display:flex;column-gap:1rem;}@media screen and (max-width: 480px) {body main .t3688{display:flex;column-gap:.25rem;}}body main .t3689{display:flex;}@media screen and (max-width: 480px) {body main .t3689{display:flex;column-gap:.25rem;}}body main .t3691{font-weight:700;}@media screen and (max-width: 480px) {body main .t3691{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t3692{width:2rem;height:2rem;}}body main .t3693{width:4rem;}@media screen and (max-width: 480px) {body main .t3694{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t3695{width:4rem;}@media screen and (max-width: 480px) {body main .t3695{width:2rem;height:2rem;}}body main .t3697{width:100%;display:flex;position:relative;align-items:center;flex-direction:column;}@media screen and (max-width: 480px) {body main .t3697{width:90%;display:flex;column-gap:2rem;justify-content:center;}}body main .t3698{width:50%;background:rgb(242,242,242);border-radius:2rem;}@media screen and (max-width: 991px) {body main .t3698{width:95%;}}@media screen and (max-width: 480px) {body main .t3698{width:100%;height:6rem;background:rgb(229,229,229);border-radius:1rem;}}body main .t3699{height:12rem;display:grid;column-gap:1rem;align-items:center;padding-left:2rem;justify-items:start;padding-right:1px;grid-template-columns:20% 1fr;}@media screen and (max-width: 480px) {body main .t3699{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}body main .t3700{width:8rem;height:8rem;display:flex;max-width:8rem;background:rgb(27,27,27);max-height:8rem;min-height:8rem;align-items:center;border-radius:50%;justify-content:center;}@media screen and (max-width: 480px) {body main .t3700{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}body main .t3701{display:flex;flex-direction:column;justify-content:center;}@media screen and (max-width: 480px) {body main .t3701{width:70%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}body main .t3702{max-width:75%;object-fit:contain;aspect-ratio:1/1;border-radius:50%;}@media screen and (max-width: 480px) {body main .t3702{max-width:80%;max-height:80%;}}body main .t3703{font-size:1.5rem;font-weight:400;}@media screen and (max-width: 480px) {body main .t3703{font-family:'Rubik';font-weight:400;}}body main .t3704{font-size:2em;}@media screen and (max-width: 480px) {body main .t3704{font-family:'Rubik';}}body main .t3705{top:0px;left:0px;right:0px;bottom:0px;height:100vh;outline:1px solid rgba(0,0,0,1);overflow:hidden;background:#262626;overflow-y:visible;font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t3705{height:100vh;overflow:hidden;}}body main .t3706{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3707{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#262626;align-items:center;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3707{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3707{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t3708{color:rgb(255,255,255);width:50%;display:flex;font-size:3rem;background:rgb(39,39,39);margin-top:2rem;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr;}@media screen and (max-width: 767px) {body main .t3708{row-gap:2rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t3708{width:90%;display:flex;align-items:center;flex-direction:row;justify-content:space-between;}}body main .t3709{width:80%;height:.5rem;background:rgb(255,161,0);margin-top:1rem;margin-bottom:2rem;}body main .t3710{display:flex;align-items:center;flex-direction:column;justify-content:center;}body main .t3711{width:50%;display:flex;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3711{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3711{width:100%;}}@media screen and (max-width: 480px) {body main .t3711{display:flex;column-gap:.25rem;}}body main .t3712{width:50%;display:flex;align-self:center;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3712{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3712{width:100%;}}@media screen and (max-width: 480px) {body main .t3712{display:flex;column-gap:.25rem;}}@media screen and (max-width: 767px) {body main .t3713{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3713{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t3714{width:3rem;}@media screen and (max-width: 480px) {body main .t3714{width:2rem;height:2rem;}}@media screen and (max-width: 767px) {body main .t3715{font-size:1.5rem;margin-left:.5rem;}}@media screen and (max-width: 480px) {body main .t3715{font-size:1.25rem;font-family:'Rubik';margin-left:.5rem;}}@media screen and (max-width: 991px) {body main .t3716{object-fit:fill;}}body main .t3717{font-weight:700;}@media screen and (max-width: 767px) {body main .t3717{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3717{font-size:1.75rem;font-family:'Rubik';font-weight:700;}}body main .t3718{width:3rem;}@media screen and (max-width: 480px) {body main .t3718{width:2rem;height:2rem;}}body main .t3720{font-size:10rem;text-align:center;font-family:'Bebas Neue';line-height:1;}@media screen and (max-width: 480px) {body main .t3720{font-size:6rem;}}body main .t3721{color:rgb(204,204,204);font-size:5rem;text-align:center;font-family:'Rubik';font-weight:300;line-height:1;}@media screen and (max-width: 991px) {body main .t3721{font-size:5rem;}}@media screen and (max-width: 767px) {body main .t3721{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3721{font-size:6rem;}}body main .t3723{color:rgb(255,255,255);width:100%;height:100%;display:flex;overflow:scroll;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t3723{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t3723{padding-top:3rem;}}@media screen and (max-width: 480px) {body main .t3723{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t3724{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}@media screen and (max-width: 767px) {body main .t3724{margin-bottom:1rem;}}body main .t3725{width:80%;display:grid;row-gap:2rem;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3725{justify-items:center;grid-template-columns:1fr 1fr;}}body main .t3726{font-size:4rem;font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t3726{font-size:3rem;}}body main .t3727{font-size:6rem;}@media screen and (max-width: 767px) {body main .t3727{font-size:4rem;}}body main .t3728{width:18rem;display:grid;position:relative;background:#101729;max-height:28rem;min-height:22rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}body main .t3729{height:85%;display:grid;row-gap:.25rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t3730{color:rgb(255,183,0);text-align:right;}body main .t3731{width:6rem;margin-bottom:1rem;}body main .t3732{color:rgb(255,255,255);font-size:2rem;}body main .t3733{color:rgb(255,255,255);height:5rem;}body main .t3734{color:#0c121f;width:6rem;height:2rem;display:flex;font-size:.75rem;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t3739{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t3740{display:flex;align-items:center;}body main .t3741{display:flex;flex-wrap:wrap;column-gap:2rem;grid-template-columns:1fr 1fr;}body main .t3742{font-size:6rem;font-family:'Bebas Neue';}body main .t3743{font-size:6rem;}body main .t3744{width:15rem;height:22rem;position:relative;background:rgb(255,153,0);font-family:'Rubik';border-radius:1rem;}body main .t3745{margin-top:1rem;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;}body main .t3746{font-size:4rem;}body main .t3747{font-size:2.5rem;}body main .t3748{top:auto;left:auto;right:1rem;bottom:1rem;position:absolute;text-align:right;}body main .t3752{height:100vh;display:flex;flex-direction:column;justify-content:space-between;}body main .t3753{display:flex;align-self:center;flex-direction:column;justify-content:center;}body main .t3755{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t3756{color:rgb(255,255,255);width:10rem;height:2rem;display:flex;background:rgb(0,168,31);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t3757{cursor:pointer;}body main .t3759{background:var(--rd);box-sizing:border-box;min-height:100%;}body main .t3760{width:100%;height:100dvh;display:flex;position:relative;background:var(--or);flex-direction:column;padding-bottom:env(safe-area-inset-bottom);justify-content:flex-end;}body main .t3762{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3763{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#0c121f;align-items:center;padding-top:3rem;padding-left:2rem;padding-right:2rem;flex-direction:column;justify-content:flex-start;}@media screen and (max-width: 480px) {body main .t3763{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t3764{width:90%;height:.5rem;background:rgb(255,161,0);margin-top:1rem;margin-bottom:2rem;}body main .t3765{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;}body main .t3766{display:flex;row-gap:2rem;margin-top:2rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t3766{align-items:center;}}body main .t3767{color:rgba(255,255,255,0.75);font-size:5rem;text-align:center;font-family:'Rubik';font-weight:300;line-height:1;}@media screen and (max-width: 991px) {body main .t3767{font-size:4rem;}}@media screen and (max-width: 767px) {body main .t3767{font-size:3rem;}}@media screen and (max-width: 480px) {body main .t3767{font-size:2rem;}}body main .t3768{font-size:6rem;text-align:center;font-family:'Rubik';font-weight:400;line-height:1;}@media screen and (max-width: 767px) {body main .t3768{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3768{font-size:3rem;}}body main .t3770{height:40vh;display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t3770{width:98%;overflow-x:hidden;}}body main .t3771{height:4rem;display:grid;position:relative;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:center;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 60% 30%;}@media screen and (max-width: 767px) {body main .t3771{position:relative;padding-left:.5rem;padding-right:.5rem;grid-template-columns:10% 55% 35%;}}body main .t3772{width:60%;height:3rem;}@media screen and (max-width: 767px) {body main .t3773{width:80%;display:flex;margin-left:1rem;flex-direction:column;justify-content:center;}}body main .t3774{font-size:1rem;}body main .t3775{font-size:.5rem;}body main .t3776{width:60%;}@media screen and (max-width: 767px) {body main .t3776{width:100%;overflow-x:hidden;}}@media screen and (max-width: 480px) {body main .t3776{margin-top:1rem;}}body main .t3777{display:flex;align-items:flex-end;justify-content:flex-end;}body main .t3778{display:flex;align-items:flex-start;justify-content:flex-end;}body main .t3779{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;padding-top:6rem;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3780{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3781{background:#0c121f;}body main .t3782{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3783{color:rgb(255,255,255);width:100%;height:100%;display:flex;row-gap:3rem;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t3783{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t3783{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t3784{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t3787{color:rgb(255,255,255);width:14rem;height:2.5rem;display:flex;background:rgb(0,168,31);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t3788{cursor:pointer;}@media screen and (max-width: 767px) {body main .t3789{width:100%;display:flex;}}body main .t3791{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3792{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#0c121f;align-items:center;flex-direction:column;justify-content:center;}@media screen and (max-width: 480px) {body main .t3792{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t3793{width:20%;height:60%;display:grid;flex-wrap:wrap;justify-content:space-around;grid-template-columns:1fr 1fr 1fr;}body main .t3794{display:flex;}body main .t3798{color:rgb(255,255,255);display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t3798{margin-bottom:1rem;}}body main .t3799{font-family:'Rubik';font-weight:600;}body main .t3800{background:;}body main .t3801{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t3802{color:rgb(255,255,255);height:100%;display:flex;overflow:auto;position:relative;background:#0c121f;overflow-y:scroll;align-items:center;padding-top:3rem;padding-left:2rem;padding-right:2rem;flex-direction:column;justify-content:center;}body main .t3802:focus{border:1rem solid rgb(255,187,0);}@media screen and (max-width: 480px) {body main .t3802{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t3803{width:90%;height:90%;display:flex;position:relative;align-items:center;}@media screen and (max-width: 767px) {body main .t3803{width:95%;overflow-x:hidden;}}@media screen and (max-width: 480px) {body main .t3803{margin-top:1rem;}}body main .t3804{display:flex;row-gap:1rem;margin-top:1rem;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t3804{width:100%;overflow-x:hidden;}}@media screen and (max-width: 480px) {body main .t3804{margin-top:1rem;}}body main .t3805{flex:1 1 0%;color:rgba(0,0,0,1.00);border:none;cursor:pointer;height:100vh;display:flex;row-gap:.5rem;flex-wrap:wrap;max-width:15rem;background:#0b111d00;min-height:44px;padding-left:10px;padding-right:10px;flex-direction:column;}body main .t3805:focus{outline:none;background:;}body main .t3806{color:rgb(255,255,255);width:80%;height:3rem;display:flex;background:;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t3807{color:rgb(255,183,0);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t3807{max-width:5rem;min-width:2rem;}}body main .t3808{color:rgb(0,247,255);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t3808{max-width:5rem;min-width:2rem;}}body main .t3809{display:flex;align-items:flex-end;justify-content:flex-end;}body main .t3810{color:#0c121f;width:6rem;height:2rem;display:flex;font-size:.75rem;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t3817{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3817{font-size:1rem;text-align:left;}}body main .t3818{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3818{font-size:1rem;text-align:left;}}body main .t3819{height:40vh;display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t3819{width:95%;overflow-x:hidden;}}body main .t3820{height:4rem;display:grid;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:start;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 65% 25%;}body main .t3821{width:60%;height:3rem;}body main .t3823{font-size:1rem;}body main .t3824{font-size:.5rem;}body main .t3825{width:80%;text-align:right;}@media screen and (max-width: 767px) {body main .t3825{display:flex;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t3825{position:relative;padding-right:1rem;}}body main .t3826{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3826{width:100%;}}body main .t3827{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3827{width:100%;}}body main .t3828{height:1.15rem;}@media screen and (max-width: 767px) {body main .t3828{height:1rem;}}body main .t3829{display:flex;column-gap:.25rem;align-items:center;}body main .t3830{width:6rem;display:flex;column-gap:.25rem;align-items:center;flex-direction:row;}@media screen and (max-width: 767px) {body main .t3830{width:4rem;}}body main .t3831{width:80%;display:flex;font-size:1.5rem;column-gap:1rem;text-align:right;align-items:center;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t3831{display:flex;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t3831{position:relative;padding-right:1rem;}}body main .t3832{display:flex;column-gap:.25rem;}body main .t3833{text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3833{width:100%;}}body main .t3835{display:flex;column-gap:.25rem;align-items:center;margin-left:1rem;}body main .t3836{text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3836{width:100%;}}body main .t3837{height:1rem;}body main .t3838{width:90%;display:grid;position:absolute;column-gap:1rem;align-items:center;grid-template-columns:10% 65% 25%;}@media screen and (max-width: 767px) {body main .t3838{width:95%;display:grid;position:absolute;grid-template-columns:10% 65% 25%;}}@media screen and (max-width: 480px) {body main .t3838{grid-template-columns:3rem 12rem 1fr;}}body main .t3839{width:30%;border:1px none rgba(0,0,0,1);height:3rem;font-size:1rem;background:#00db83;font-family:'Rubik';font-weight:600;border-radius:50rem;}body main .t3840{flex:1 1 0%;color:rgba(0,0,0,1.00);width:100%;border:none;cursor:pointer;height:16rem;display:block;background:#0b111d00;}body main .t3840:focus{outline:none;}body main .t3841{color:rgb(255,255,255);width:100%;height:3rem;display:flex;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t3842{width:80%;display:flex;row-gap:2rem;flex-wrap:wrap;column-gap:1rem;align-items:flex-start;flex-direction:column;}body main .t3843{width:60%;height:80%;display:flex;row-gap:2rem;overflow:visible;position:relative;flex-wrap:wrap;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 767px) {body main .t3843{align-items:center;}}body main .t3844{display:flex;position:relative;column-gap:1rem;align-items:center;}body main .t3845{width:2rem;object-fit:contain;}body main .t3846{display:flex;column-gap:1rem;align-items:center;}body main .t3847{width:2rem;object-fit:contain;}body main .t3848{width:100%;display:flex;margin-top:2rem;}@media screen and (max-width: 767px) {body main .t3848{justify-content:center;}}body main .t3849{width:40%;height:80%;display:flex;row-gap:1rem;overflow:auto;flex-wrap:wrap;column-gap:1rem;grid-auto-flow:row;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 767px) {body main .t3849{width:50%;}}body main .t3850{width:8rem;height:3rem;display:flex;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t3851{width:90%;font-size:.8rem;text-align:center;font-family:'Rubik';font-weight:600;}body main .t3852{z-index:10;position:absolute;}body main .t3853{color:rgb(255,255,255);border:1px none rgba(0,0,0,1);background:rgba(255,255,255,0);margin-top:-2rem;}body main .t3854{width:6rem;border:1px solid rgba(255,255,255,0.2);height:2rem;display:flex;font-size:.8rem;text-align:center;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t3855{width:90%;}body main .t3857{display:flex;font-size:.75rem;column-gap:2rem;}body main .t3858{width:2rem;cursor:pointer;height:2rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';border-radius:50%;justify-content:center;}body main .t3860{display:none;}body main .t3861{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t3863{width:19rem;}body main .t3865{display:flex;}body main .t3868{width:18rem;display:grid;position:relative;background:#101729;max-height:28rem;min-height:22rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}body main .t3869{height:85%;display:grid;row-gap:.25rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t3870{color:rgb(255,255,255);font-size:2rem;}body main .t3871{color:rgb(255,255,255);height:5rem;}body main .t3872{width:6rem;margin-bottom:1rem;}body main .t3874{display:flex;align-items:flex-start;justify-content:flex-end;}body main .t3876{color:rgb(255,183,0);text-align:right;}body main .t3878{width:80%;display:flex;font-size:1.5rem;column-gap:1rem;text-align:right;align-items:center;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t3878{display:flex;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t3878{position:relative;padding-right:1rem;}}body main .t3879{display:flex;column-gap:.25rem;align-items:center;margin-left:1rem;}body main .t3880{text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t3880{width:100%;}}body main .t3881{height:1rem;}body main .t3882{display:flex;align-items:flex-end;justify-content:flex-end;}body main .t3883{color:#0c121f;width:6rem;height:2rem;display:flex;font-size:.75rem;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t3885{font-size:1rem;text-align:right;font-weight:300;}@media screen and (max-width: 767px) {body main .t3885{width:100%;}}body main .t3886{background:#0c121f;}body main .t3887{top:0%;left:0%;right:0%;bottom:0auto;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:row;justify-content:center;}@media screen and (max-width: 480px) {body main .t3887{padding-top:3rem;}}body main .t3888{color:rgb(255,255,255);display:flex;row-gap:1rem;background:#0c121f;align-items:center;padding-top:5rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t3888{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t3888{width:95%;row-gap:.5rem;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 480px) {body main .t3888{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t3889{width:100%;text-align:center;}body main .t3890{font-size:1.5rem;font-family:'Rubik';font-weight:300;}@media screen and (max-width: 767px) {body main .t3890{font-size:1.25rem;font-weight:600;}}@media screen and (max-width: 480px) {body main .t3890{font-size:1rem;}}body main .t3891{color:rgb(255,255,255);display:flex;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t3891{margin-bottom:1rem;}}@media screen and (max-width: 480px) {body main .t3891{margin-bottom:.25rem;}}body main .t3892{font-size:2.25rem;}body main .t3893{display:flex;font-size:5rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t3893{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3893{font-size:3rem;}}body main .t3894{width:80%;display:flex;row-gap:2rem;overflow:visible;position:relative;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3894{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 767px) {body main .t3894{width:100%;}}body main .t3895{width:30rem;display:flex;row-gap:2rem;overflow:visible;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3895{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 767px) {body main .t3895{width:100%;}}body main .t3896{width:14rem;display:flex;position:relative;background:#101729;max-height:3rem;min-height:3rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:3rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 767px) {body main .t3896{padding-top:.5rem;padding-left:.25rem;padding-right:.25rem;padding-bottom:.5rem;}}@media screen and (max-width: 480px) {body main .t3896{width:98%;}}body main .t3897{height:85%;display:flex;margin-left:1rem;margin-right:1rem;flex-direction:column;justify-content:center;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t3898{color:rgb(255,255,255);font-size:1.5rem;text-align:center;font-weight:400;line-height:1;}@media screen and (max-width: 767px) {body main .t3898{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t3898{font-size:1rem;}}body main .t3899{background:#0c121f;}body main .t3900{top:0%;left:0%;right:0%;bottom:0auto;height:100%;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:row;justify-content:center;}@media screen and (max-width: 480px) {body main .t3900{padding-top:3rem;}}body main .t3901{color:rgb(255,255,255);display:flex;row-gap:1rem;background:#0c121f;align-items:center;padding-top:5rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t3901{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t3901{width:95%;row-gap:.5rem;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 480px) {body main .t3901{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t3902{width:100%;text-align:center;}body main .t3903{font-size:1.5rem;font-family:'Rubik';font-weight:600;}@media screen and (max-width: 767px) {body main .t3903{font-size:1.25rem;font-weight:600;}}@media screen and (max-width: 480px) {body main .t3903{font-size:1rem;}}body main .t3904{color:rgb(255,255,255);display:flex;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t3904{margin-bottom:1rem;}}@media screen and (max-width: 480px) {body main .t3904{margin-bottom:.25rem;}}body main .t3905{font-size:2.25rem;}body main .t3906{display:flex;font-size:5rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t3906{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3906{font-size:3rem;}}body main .t3907{background:#0c121f;}body main .t3908{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:row;}@media screen and (max-width: 480px) {body main .t3908{padding-top:3rem;}}body main .t3909{color:rgb(255,255,255);width:100%;height:100%;display:flex;overflow:scroll;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t3909{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t3909{padding-top:3rem;}}@media screen and (max-width: 480px) {body main .t3909{color:rgb(255,255,255);display:flex;background:;padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t3910{width:90%;display:grid;row-gap:2rem;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3910{justify-items:center;grid-template-columns:1fr 1fr;}}body main .t3911{width:14rem;display:grid;position:relative;background:#101729;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:.25rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 480px) {body main .t3911{width:98%;}}body main .t3912{display:flex;row-gap:.5rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t3913{color:rgb(255,255,255);font-size:1.25rem;}body main .t3914{display:flex;align-items:flex-end;}body main .t3915{color:rgb(255,255,255);font-size:1rem;font-weight:700;}body main .t3916{font-size:.75rem;font-weight:300;}body main .t3917{font-size:.75rem;font-weight:300;}body main .t3918{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;margin-bottom:3rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t3918{margin-bottom:1rem;}}body main .t3919{color:rgb(255,255,255);display:flex;align-items:center;font-family:'Rubik';flex-direction:column;}@media screen and (max-width: 767px) {body main .t3919{margin-bottom:1rem;}}body main .t3920{font-size:3rem;}@media screen and (max-width: 767px) {body main .t3920{font-size:3rem;}}body main .t3921{font-size:3rem;}@media screen and (max-width: 767px) {body main .t3921{font-size:4rem;}}body main .t3922{color:rgb(255,255,255);width:20%;height:100%;display:flex;row-gap:1rem;overflow:scroll;background:#0c121f;align-items:center;padding-top:5rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t3922{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t3922{width:50%;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 480px) {body main .t3922{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t3924{font-size:1.5rem;font-family:'Rubik';font-weight:300;}@media screen and (max-width: 480px) {body main .t3924{font-size:1rem;}}body main .t3925{color:rgb(255,255,255);display:flex;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t3925{margin-bottom:1rem;}}@media screen and (max-width: 480px) {body main .t3925{margin-bottom:.25rem;}}body main .t3927{display:flex;font-size:6rem;text-align:center;justify-content:center;}@media screen and (max-width: 767px) {body main .t3927{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t3927{font-size:3rem;}}body main .t3928{width:80%;display:flex;row-gap:2rem;overflow:visible;position:relative;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3928{justify-items:center;grid-template-columns:1fr 1fr;}}body main .t3929{width:30rem;display:flex;row-gap:2rem;overflow:visible;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t3929{justify-items:center;grid-template-columns:1fr 1fr;}}body main .t3930{width:14rem;display:flex;position:relative;background:#101729;max-height:3rem;min-height:3rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:3rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 480px) {body main .t3930{width:98%;}}body main .t3931{height:85%;display:flex;margin-left:1rem;margin-right:1rem;flex-direction:column;justify-content:center;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t3932{color:rgb(255,255,255);font-size:1.5rem;text-align:center;font-weight:400;line-height:1;}@media screen and (max-width: 480px) {body main .t3932{font-size:1rem;}}body main .t3933{top:0%;left:auto;right:0%;width:10rem;bottom:0%;display:flex;position:absolute;margin-left:auto;margin-right:auto;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t3933{width:10rem;align-items:center;margin-right:0px;justify-items:end;}}@media screen and (max-width: 767px) {body main .t3934{display:flex;column-gap:1rem;}}body main .t3935{height:1.15rem;}@media screen and (max-width: 767px) {body main .t3935{height:1rem;}}body main .t3936{width:6rem;display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t3936{width:4rem;}}body main .t3937{width:8rem;height:8rem;background:var(--rd);}body main .t3938{width:20%;height:60%;display:grid;flex-wrap:wrap;justify-content:space-around;grid-template-columns:1fr 1fr 1fr;}body main .t3939{width:8rem;height:8rem;background:var(--gr);}body main .t3940{width:100%;display:flex;font-size:1.5rem;background:#101729;column-gap:8rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;border-bottom:1px solid #101729;flex-direction:column;padding-bottom:1rem;justify-content:center;}@media screen and (max-width: 480px) {body main .t3940{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}body main .t3941{display:flex;column-gap:4rem;align-items:center;}body main .t3942{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t3943{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t3944{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t3945{display:flex;align-items:center;justify-content:center;}body main .t3946{font-family:'Rubik';font-weight:700;}body main .t3947{font-size:1.5rem;}body main .t3948{display:flex;align-items:center;justify-content:center;}body main .t3949{font-family:'Rubik';font-weight:700;}body main .t3951{display:flex;align-items:center;justify-content:center;}body main .t3952{font-family:'Rubik';font-weight:700;}body main .t3953{font-size:1.5rem;}body main .t3954{height:7rem;display:flex;position:sticky;background:#101729;align-items:center;padding-left:3rem;padding-right:3rem;}@media screen and (max-width: 767px) {body main .t3954{padding-left:1rem;padding-right:1rem;justify-content:center;}}body main .t3955{color:rgb(255,255,255);width:100%;display:flex;font-size:3rem;background:#101629;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr;}@media screen and (max-width: 1056px) {body main .t3955{width:90%;position:relative;font-size:2.5rem;}}@media screen and (max-width: 767px) {body main .t3955{row-gap:2rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t3955{width:90%;display:flex;align-items:center;flex-direction:row;justify-content:space-between;}}body main .t3956{display:flex;align-self:center;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3956{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3956{justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t3956{display:flex;column-gap:.25rem;}}body main .t3957{display:flex;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t3957{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t3957{justify-content:flex-start;}}@media screen and (max-width: 480px) {body main .t3957{display:flex;column-gap:.25rem;}}body main .t3958{font-size:2.5rem;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t3958{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3958{font-size:1.75rem;font-family:'Rubik';font-weight:700;}}body main .t3959{width:3rem;}@media screen and (max-width: 480px) {body main .t3959{width:2rem;height:2rem;}}body main .t3961{width:3rem;}@media screen and (max-width: 480px) {body main .t3961{width:2rem;height:2rem;}}body main .t3962{font-size:2.5rem;font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t3962{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t3962{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 991px) {body main .t3963{object-fit:fill;}}body main .t3970{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t3970{row-gap:30px;grid-template-columns:1fr ;}}body main .t3972{display:flex;row-gap:25px;flex-direction:column;}@media screen and (max-width: 991px) {body main .t3972{row-gap:20px;}}@media screen and (max-width: 991px) {body main .t3973{color:rgba(163,117,255,1.00);}}body main .t3981{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t3981{row-gap:30px;grid-template-columns:1fr ;}}body main .t3983{display:flex;row-gap:40px;column-gap:40px;}body main .t3985{display:flex;flex-direction:column;}body main .t3986{display:flex;flex-direction:column;}body main .t3987{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3990{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3992{display:grid;grid-template-columns:350px 1fr;}@media screen and (max-width: 991px) {body main .t3992{row-gap:30px;grid-template-columns:1fr ;}}body main .t3993{display:flex;row-gap:25px;flex-direction:column;}body main .t3997{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t3999{color:rgba(163,117,255,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t4000{display:flex;column-gap:100px;}body main .t4003{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}body main .t4011{color:rgba(0,0,0,1.00);margin:0px 0px 10px 0px;display:block;font-weight:600;}@media screen and (max-width: 991px) {body main .t4019{color:rgba(163,117,255,1.00);}}body main .t4027{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t4027{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t4028{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t4028{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t4029{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t4029{display:flex;position:relative;}}body main .t4030{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4030{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t4031{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4031{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t4032{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t4033{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t4034{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t4035{display:flex;flex-direction:column;}body main .t4036{margin-top:1rem;}body main .t4037{display:flex;row-gap:1rem;margin-top:1.25rem;flex-direction:column;}body main .t4038{border-top:1px solid rgb(108,108,108);}body main .t4039{line-height:1.25;}body main .t4040{display:flex;}body main .t4041{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t4042{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t4043{font-size:1rem;font-weight:300;}body main .t4044{line-height:1.25;}body main .t4045{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t4046{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t4047{font-style:italic;font-weight:300;line-height:1.25;}body main .t4048{font-weight:600;line-height:1.25;}body main .t4049{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4049{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4050{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4050{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4051{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4051{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4052{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4053{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4054{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4055{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t4056{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4057{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4058{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4059{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t4060{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4061{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4062{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4063{font-size:1.2rem;line-height:1;}body main .t4064{position:static;min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t4064{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t4065{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:;position:absolute;min-height:816px;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t4065{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t4066{z-index:10;position:absolute;}body main .t4067{width:100%;display:flex;}@media screen and (max-width: 991px) {body main .t4067{display:flex;position:relative;}}body main .t4068{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr;}@media screen and (max-width: 991px) {body main .t4068{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t4069{display:flex;position:relative;background:rgba(255,255,255,0);padding-top:1rem;break-inside:avoid;padding-left:.5rem;padding-right:.5rem;flex-direction:column;padding-bottom:2rem;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4069{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t4070{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px dotted #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4070{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4071{padding-top:1rem;padding-left:1rem;margin-bottom:.25rem;padding-right:1rem;padding-bottom:1rem;}body main .t4072{top:0%;left:0%;right:auto;width:100%;border:3px dotted #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4072{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4073{top:0%;left:0%;right:auto;width:100%;border:3px dotted #00a81f;bottom:auto;height:100%!important;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4073{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4074{width:92%;display:flex;overflow:clip;align-self:center;background:#eaeaea;min-height:2rem;align-items:center;border-radius:.5rem;flex-direction:row;justify-content:center;}body main .t4076{top:auto;left:auto;color:rgb(91,91,91);right:0%;width:100%;bottom:0%;height:1rem;display:flex;position:absolute;font-size:.75rem;column-gap:.25rem;margin-right:.5rem;margin-bottom:.5rem;justify-content:flex-end;}body main .t4077{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4078{color:var(--rd);width:6rem;height:100%;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4079{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4080{height:1.2rem;}body main .t4081{font-size:1.2rem;line-height:1;}body main .t4082{line-height:1;}body main .t4083{line-height:1;}body main .t4084{display:flex;flex-direction:column;}body main .t4085{margin-top:1rem;}body main .t4086{font-size:1rem;font-weight:300;}body main .t4087{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t4088{line-height:1.25;}body main .t4089{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t4090{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4091{color:var(--or);width:6rem;height:100%;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4092{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4093{height:1.2rem;}body main .t4094{color:var(--or);font-size:1.2rem;line-height:1;}body main .t4095{line-height:1;}body main .t4096{line-height:1;}body main .t4097{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4098{color:var(--gr);width:6rem;height:100%;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4099{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4100{height:1.2rem;display:flex;align-self:center;align-items:center;}body main .t4101{color:var(--gr);font-size:1.2rem;line-height:1;}body main .t4102{line-height:1;}body main .t4103{line-height:1;}body main .t4104{width:100%;display:flex;font-size:.6rem;align-self:center;align-items:center;}body main .t4105{color:rgb(255,255,255);width:7rem;height:2rem;display:flex;background:rgb(71,71,71);align-items:center;margin-right:.25rem;padding-left:.5rem;justify-content:center;}body main .t4106{width:100%;height:2rem;display:flex;background:;align-items:center;margin-right:.25rem;padding-left:.25rem;justify-content:flex-start;}body main .t4107{width:6rem;font-size:.75rem;align-self:center;font-family:'League Spartan';font-weight:700;line-height:.75rem;}body main .t4108{display:flex;align-self:center;align-items:center;margin-left:.25rem;margin-right:.3rem;justify-content:center;}body main .t4109{font-size:.75rem;}body main .t4110{align-self:center;font-style:italic;font-weight:500;}body main .t4111{display:flex;position:relative;margin-top:.75rem;flex-direction:row;}body main .t4112{max-width:100%;min-width:60%;}body main .t4113{width:40%;}body main .t4114{font-size:.8rem;align-self:center;font-style:italic;text-align:left;line-height:1.25;padding-left:.75rem;padding-right:.25rem;}body main .t4115{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:1.5rem;}body main .t4116{width:90;font-size:.8rem;align-self:center;font-style:italic;margin-top:.75rem;text-align:left;line-height:1.25;padding-left:.25rem;padding-right:.25rem;}body main .t4117{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;padding-left:0rem;}body main .t4118{text-align:right;}body main .t4119{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4120{color:rgb(91,91,91);font-size:.65rem;line-height:1;}body main .t4121{color:rgb(255,255,255);border:1px none rgba(0,0,0,1);background:rgba(255,255,255,0);margin-top:-2rem;}body main .t4122{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t4122{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t4123{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t4123{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t4124{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t4124{display:flex;position:relative;}}body main .t4125{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4125{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t4126{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4126{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t4127{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t4128{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t4129{display:flex;flex-direction:column;}body main .t4130{margin-top:1rem;}body main .t4131{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t4132{font-size:1rem;font-weight:300;}body main .t4133{font-size:1rem;font-family:'Bebas Neue';font-weight:300;line-height:0;}body main .t4134{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t4135{line-height:1.25;}body main .t4136{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t4137{line-height:1.25;}body main .t4138{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4138{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4139{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4139{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4140{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4140{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4141{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4142{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4143{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4144{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t4145{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4146{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4147{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4148{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t4149{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4150{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4151{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4152{font-size:1.2rem;line-height:1;}body main .t4153{background:#0c121f;}body main .t4154{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4155{color:rgb(255,255,255);width:100%;height:100%;display:flex;row-gap:3rem;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t4155{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t4155{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t4156{top:auto;left:0%;right:0%;bottom:0%;display:block;position:fixed;margin-left:auto;margin-right:auto;}body main .t4157{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t4160{color:rgb(255,255,255);width:14rem;height:2.5rem;display:flex;background:var(--gr);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t4161{cursor:pointer;}body main .t4169{color:var(--or);}body main .t4170{color:rgb(255,0,247);}body main .t4176{padding-top:8rem;padding-left:8rem;padding-right:8rem;padding-bottom:8rem;}body main .t4177{width:90%;display:grid;row-gap:2rem;grid-template-columns:1fr 1fr 1fr 1fr;}body main .t4178{width:80%;border:1px solid rgba(0,0,0,1);display:flex;border-radius:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;}body main .t4179{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t4180{display:flex;padding-right:2rem;flex-direction:row;justify-content:flex-end;}body main .t4181{font-size:1.25rem;}body main .t4182{font-size:2rem;font-family:'Bebas Neue';margin-bottom:1rem;}body main .t4183{display:flex;column-gap:1rem;}body main .t4185{font-size:2rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t4186{color:#ffbb00;font-size:2.5rem;}body main .t4188{min-height:816px;font-family:'League Spartan';}@media screen and (max-width: 991px) {body main .t4188{width:816px;height:1056px;max-width:816px;min-height:1056px;}}body main .t4189{top:0%;left:0%;right:auto;width:1056px;bottom:auto;height:816px;position:absolute;padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}@media screen and (max-width: 991px) {body main .t4189{display:flex;background:rgb(255,255,255);padding-top:25px;padding-left:25px;padding-right:25px;padding-bottom:25px;}}body main .t4190{width:100%;height:100%;}@media screen and (max-width: 991px) {body main .t4190{display:flex;position:relative;}}body main .t4191{display:flex;position:relative;margin-top:2rem;padding-top:15px;break-inside:avoid;padding-left:15px;margin-bottom:2rem;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4191{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t4192{width:100%;display:grid;row-gap:30px;position:relative;column-gap:30px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4192{width:100%;height:100%;display:grid;row-gap:40px;column-gap:40px;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;}}body main .t4193{display:flex;position:relative;padding-top:15px;break-inside:avoid;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4193{display:flex;row-gap:14px;padding-top:15px;padding-left:15px;padding-right:15px;flex-direction:column;padding-bottom:15px;}}body main .t4194{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t4195{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t4196{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t4197{display:flex;flex-direction:column;}body main .t4198{margin-top:1rem;}body main .t4199{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t4200{font-size:1rem;font-weight:300;}body main .t4201{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t4202{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t4203{line-height:1.25;}body main .t4205{line-height:1.25;}body main .t4206{display:flex;}body main .t4207{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t4208{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4208{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4209{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4209{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4210{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4210{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4211{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4212{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4213{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4214{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t4215{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4216{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4217{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4218{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t4219{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4220{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4221{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4222{font-size:1.2rem;line-height:1;}body main .t4223{text-align:right;}body main .t4224{padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}body main .t4225{top:0%;left:0%;right:auto;width:100%;bottom:auto;height:100%;position:absolute;}body main .t4226{top:auto;left:auto;color:rgb(91,91,91);right:.5rem;width:100%;bottom:.5rem;height:1rem;display:flex;position:absolute;font-size:.75rem;justify-content:flex-end;}body main .t4227{display:flex;flex-direction:column;}body main .t4228{margin-top:1rem;}body main .t4229{display:flex;margin-top:1.25rem;flex-direction:column;}body main .t4230{font-size:1rem;font-weight:300;}body main .t4231{font-size:1.65rem;font-family:'Bebas Neue';font-weight:800;line-height:0;}body main .t4232{font-size:1.2rem;font-family:'Bebas Neue';font-weight:300;}body main .t4233{line-height:1.25;}body main .t4235{line-height:1.25;}body main .t4236{display:flex;}body main .t4237{font-size:1.25rem;font-family:'Bebas Neue';font-weight:300;}body main .t4238{top:0%;left:0%;right:auto;width:100%;border:3px solid #ff9900;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4238{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(255,153,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4239{top:0%;left:0%;right:auto;width:100%;border:3px solid #00a81f;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;page-break-inside:avoid;}@media screen and (max-width: 991px) {body main .t4239{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(0,168,31);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4240{top:0%;left:0%;color:hsl(0,0%,0%);right:auto;width:100%;border:3px solid #d00000;bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}@media screen and (max-width: 991px) {body main .t4240{top:0%;left:0%;right:auto;width:100%;border:3px dotted rgb(208,0,0);bottom:auto;height:100%;display:flex;row-gap:20px;position:absolute;padding-top:10px;padding-left:10px;padding-right:10px;flex-direction:column;padding-bottom:10px;justify-content:center;}}body main .t4241{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4242{color:rgb(255,153,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,240,218);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4243{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4244{color:rgb(255,153,0);font-size:1.2rem;line-height:1;}body main .t4245{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4246{color:rgb(0,168,31);width:2.5rem;height:2.5rem;display:flex;background:rgb(222,255,228);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4247{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4248{color:rgb(0,168,31);font-size:1.2rem;line-height:1;}body main .t4249{top:1rem;left:auto;right:1rem;bottom:auto;height:2rem;display:flex;position:absolute;align-items:center;justify-content:flex-end;}body main .t4250{color:rgb(208,0,0);width:2.5rem;height:2.5rem;display:flex;background:rgb(255,221,221);column-gap:.5rem;align-items:center;font-weight:700;border-radius:50px;justify-content:center;}body main .t4251{display:flex;align-self:center;align-items:center;justify-content:center;}body main .t4252{font-size:1.2rem;line-height:1;}body main .t4253{text-align:right;}body main .t4256{width:200px;height:200px;}body main .t4257{font-family:'Rubik';}body main .t4258{top:0%;left:0%;right:0%;width:100%;bottom:0%;height:100%;position:absolute;margin-left:auto;margin-right:auto;}body main .t4260{height:100%;}body main .t4261{width:100%;height:100%;display:flex;}body main .t4262{top:0%;left:0%;right:auto;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t4263{top:0%;left:auto;right:0%;width:50%;bottom:0%;height:100vh;display:flex;position:absolute;align-items:center;flex-direction:column;justify-content:center;}body main .t4265{display:flex;position:relative;flex-direction:row;}body main .t4266{width:50rem;height:10rem;display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t4267{display:flex;position:relative;margin-top:2rem;flex-direction:row;}body main .t4268{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,0,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t4269{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;padding-left:1rem;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t4270{color:rgba(0,0,0,0);}body main .t4271{font-size:2rem;align-self:center;text-align:center;margin-left:0px;}body main .t4272{width:20rem;display:flex;}body main .t4273{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t4278{width:80%;height:100%;display:grid;background:rgb(255,159,159);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t4281{margin-right:1rem;}body main .t4282{top:0%;left:0%;right:0%;border:.5rem solid rgb(255,153,0);bottom:0%;display:flex;position:relative;align-items:center;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t4283{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t4284{width:20rem;display:flex;}body main .t4285{font-size:2rem;align-self:center;}body main .t4287{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t4292{width:50%;height:100%;display:grid;background:rgb(255,233,200);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t4293{color:rgb(49,49,49);text-align:center;}body main .t4295{margin-right:1rem;}body main .t4296{top:0%;left:0%;right:0%;border:.5rem solid rgb(0,168,31);bottom:0%;display:flex;position:relative;align-items:center;margin-left:0auto;padding-top:1rem;margin-right:auto;padding-left:2rem;padding-right:2rem;padding-bottom:1rem;justify-content:center;}body main .t4297{width:100%;display:grid;position:relative;column-gap:1rem;align-items:center;justify-items:start;flex-direction:row;grid-auto-flow:row;justify-content:space-between;grid-template-columns:45% 1fr 1fr;}body main .t4298{width:20rem;display:flex;}body main .t4299{font-size:2rem;align-self:center;}body main .t4301{width:8rem;height:8rem;display:flex;z-index:2;background:rgb(211,211,211);align-items:center;border-radius:50%;justify-content:center;}body main .t4306{width:70%;height:100%;display:grid;background:rgb(200,255,210);align-items:center;margin-left:4rem;border-radius:1rem;padding-right:1rem;justify-content:flex-end;grid-template-columns:40% 1fr;}body main .t4307{color:rgb(49,49,49);text-align:center;}body main .t4309{margin-right:1rem;}body main .t4310{top:0%;left:0%;right:0%;width:50rem;border:.5rem solid rgba(54,54,54,0.31);bottom:0%;height:10rem;display:flex;overflow:hidden;position:relative;background:rgb(255,255,255);margin-top:2rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;border-radius:8rem;padding-right:1rem;padding-bottom:1rem;justify-content:center;}body main .t4311{display:flex;margin-top:2rem;align-items:center;}body main .t4313{width:10rem;height:10rem;}body main .t4314{width:100%;height:100%;position:absolute;background:rgb(255,255,255);}body main .t4315{top:0%;left:0%;right:auto;bottom:0%;display:flex;position:absolute;align-items:center;flex-direction:row;}body main .t4316{top:0%;left:0%;right:auto;width:60%;bottom:0%;height:100%;position:absolute;background:rgb(211,211,211);}body main .t4317{width:10rem;height:100%;background:rgb(208,0,0);}body main .t4318{width:8rem;height:100%;background:rgb(0,168,31);}body main .t4319{width:3rem;height:100%;background:rgb(255,153,0);}body main .t4321{text-align:center;}body main .t4322{height:3rem;margin-left:2rem;}body main .t4323{height:3rem;margin-left:2rem;}body main .t4327{display:grid;grid-template-columns:1fr 1fr;}body main .t4328{display:grid;grid-template-columns:1fr 1fr;}body main .t4329{width:18rem;border:1px solid rgba(0,0,0,1);height:25rem;display:flex;position:relative;align-items:center;flex-direction:column;justify-content:center;}body main .t4330{top:0%;left:0%;right:0%;width:90%;bottom:0%;height:90%;display:flex;row-gap:1rem;position:absolute;align-self:center;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t4333{width:100%;height:8rem;}body main .t4336{max-height:100%;}body main .t4337{display:grid;position:relative;}body main .t4338{display:grid;row-gap:2rem;column-gap:2rem;grid-template-columns:1fr 1fr 1fr;}body main .t4339{width:18rem;border:1px solid rgba(0,0,0,1);height:25rem;display:flex;position:relative;align-items:center;flex-direction:column;justify-content:center;}body main .t4340{top:0%;left:0%;right:0%;width:90%;bottom:0%;height:90%;display:flex;row-gap:1rem;position:absolute;align-self:center;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t4343{width:100%;height:8rem;}body main .t4346{max-height:100%;}@media screen and (max-width: 480px) {body main .t4351{display:flex;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4352{display:flex;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t4353{display:flex;row-gap:1rem;align-items:center;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t4354{display:flex;column-gap:2rem;padding-top:2rem;padding-bottom:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4355{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:row;padding-bottom:1rem;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t4356{width:8rem;height:8rem;overflow:hidden;background:var(--or);border-radius:50%;}}@media screen and (max-width: 480px) {body main .t4357{align-self:center;}}@media screen and (max-width: 480px) {body main .t4359{font-family:'Bebas Neue';line-height:1.2;}}@media screen and (max-width: 480px) {body main .t4360{font-size:1.5rem;font-family:'Rubik';font-weight:300;}}@media screen and (max-width: 480px) {body main .t4361{width:100%;display:flex;align-items:center;justify-content:space-between;}}@media screen and (max-width: 480px) {body main .t4362{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t4363{display:flex;column-gap:.25rem;}}@media screen and (max-width: 480px) {body main .t4364{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t4365{width:2rem;height:2rem;}}@media screen and (max-width: 480px) {body main .t4367{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t4368{width:2rem;height:2rem;}}@media screen and (max-width: 480px) {body main .t4370{width:100%;display:flex;position:relative;column-gap:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4371{width:80%;height:18rem;background:var(--or);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t4372{font-family:'League Spartan';}}@media screen and (max-width: 480px) {body main .t4373{display:flex;column-gap:2rem;}}@media screen and (max-width: 480px) {body main .t4374{width:14rem;height:10rem;background:rgb(255,153,0);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t4375{width:90%;display:flex;column-gap:2rem;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4376{color:rgb(255,255,255);width:100%;height:3rem;display:flex;align-self:center;background:rgb(47,47,47);column-gap:2rem;text-align:center;align-items:center;font-family:'Rubik';padding-top:0px;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4377{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4378{width:100%;height:6rem;background:rgb(229,229,229);border-radius:1rem;}}@media screen and (max-width: 480px) {body main .t4379{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t4380{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4381{width:70%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t4382{max-width:80%;max-height:80%;}}@media screen and (max-width: 480px) {body main .t4383{font-family:'Rubik';}}@media screen and (max-width: 480px) {body main .t4384{font-family:'Rubik';font-weight:400;}}@media screen and (max-width: 480px) {body main .t4385{font-size:1.75rem;font-weight:400;}}@media screen and (max-width: 480px) {body main .t4386{font-size:1.75rem;font-weight:400;}}@media screen and (max-width: 480px) {body main .t4387{color:rgb(3,3,3);height:100%;display:flex;background:rgb(255,170,0);align-items:center;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 480px) {body main .t4388{display:flex;font-size:1.75rem;align-items:center;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4389{width:100%;height:6rem;background:rgb(50,50,50);border-radius:1rem 1rem 0px 0px;}}@media screen and (max-width: 480px) {body main .t4390{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}@media screen and (max-width: 480px) {body main .t4391{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}@media screen and (max-width: 480px) {body main .t4392{width:50%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}@media screen and (max-width: 480px) {body main .t4393{width:10rem;height:3rem;display:flex;column-gap:.25rem;align-items:center;}}@media screen and (max-width: 480px) {body main .t4394{max-width:80%;max-height:80%;}}@media screen and (max-width: 480px) {body main .t4395{font-family:'Rubik';}}@media screen and (max-width: 480px) {body main .t4396{font-family:'Rubik';font-weight:400;}}@media screen and (max-width: 480px) {body main .t4397{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t4398{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t4399{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t4400{width:1.5rem;}}@media screen and (max-width: 480px) {body main .t4401{width:1.5rem;}}body main .t4405{height:100vh;outline:1px solid rgba(0,0,0,1);overflow-y:visible;font-family:'Rubik';}body main .t4406{top:auto;left:0%;right:0%;width:100%;bottom:0%;height:14vh;display:flex;z-index:200;position:fixed;background:#262626;column-gap:8rem;align-items:flex-end;margin-left:auto;padding-top:2rem;margin-right:auto;padding-bottom:1rem;justify-content:center;}@media screen and (max-width: 480px) {body main .t4406{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}body main .t4409{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t4410{display:flex;font-size:3rem;align-items:center;justify-content:center;}body main .t4413{color:rgb(255,255,255);height:8rem;display:flex;background:#262626;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t4413{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t4413{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:row;padding-bottom:1rem;justify-content:flex-end;}}body main .t4414{display:flex;row-gap:2rem;overflow:scroll;max-height:80vh;align-items:center;padding-top:6rem;flex-direction:column;padding-bottom:10rem;}@media screen and (max-width: 480px) {body main .t4414{display:flex;row-gap:1rem;align-items:center;flex-direction:column;}}body main .t4415{display:grid;font-size:3rem;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr 1fr;}@media screen and (max-width: 480px) {body main .t4415{width:100%;display:flex;align-items:center;justify-content:space-between;}}body main .t4416{display:flex;column-gap:1rem;}@media screen and (max-width: 480px) {body main .t4416{display:flex;column-gap:.25rem;}}body main .t4417{display:flex;}@media screen and (max-width: 480px) {body main .t4417{display:flex;column-gap:.25rem;}}body main .t4419{font-weight:700;}@media screen and (max-width: 480px) {body main .t4419{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}@media screen and (max-width: 480px) {body main .t4420{width:2rem;height:2rem;}}body main .t4421{width:4rem;}@media screen and (max-width: 480px) {body main .t4422{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t4423{width:4rem;}@media screen and (max-width: 480px) {body main .t4423{width:2rem;height:2rem;}}body main .t4425{width:100%;display:flex;position:relative;align-items:center;flex-direction:column;}@media screen and (max-width: 480px) {body main .t4425{width:90%;display:flex;column-gap:2rem;justify-content:center;}}body main .t4426{width:50%;background:rgb(242,242,242);border-radius:2rem;}@media screen and (max-width: 991px) {body main .t4426{width:95%;}}@media screen and (max-width: 480px) {body main .t4426{width:100%;height:6rem;background:rgb(229,229,229);border-radius:1rem;}}body main .t4427{height:12rem;display:grid;column-gap:1rem;align-items:center;padding-left:2rem;justify-items:start;padding-right:1px;grid-template-columns:20% 1fr;}@media screen and (max-width: 480px) {body main .t4427{width:100%;height:100%;display:flex;align-items:center;padding-left:1rem;}}body main .t4428{width:8rem;height:8rem;display:flex;max-width:8rem;background:rgb(27,27,27);max-height:8rem;min-height:8rem;align-items:center;border-radius:50%;justify-content:center;}@media screen and (max-width: 480px) {body main .t4428{width:4rem;height:4rem;display:flex;background:rgb(26,26,26);align-items:center;border-radius:50%;justify-content:center;}}body main .t4429{display:flex;flex-direction:column;justify-content:center;}@media screen and (max-width: 480px) {body main .t4429{width:70%;display:flex;row-gap:.25rem;padding-left:1rem;flex-direction:column;}}body main .t4430{max-width:75%;object-fit:contain;aspect-ratio:1/1;border-radius:50%;}@media screen and (max-width: 480px) {body main .t4430{max-width:80%;max-height:80%;}}body main .t4431{font-size:1.5rem;font-weight:400;}@media screen and (max-width: 480px) {body main .t4431{font-family:'Rubik';font-weight:400;}}body main .t4432{font-size:2em;}@media screen and (max-width: 480px) {body main .t4432{font-family:'Rubik';}}body main .t4433{top:0px;left:0px;right:0px;bottom:0px;height:100vh;outline:1px solid rgba(0,0,0,1);overflow:hidden;background:#262626;overflow-y:visible;font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t4433{height:100vh;overflow:hidden;}}body main .t4434{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4435{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#262626;align-items:center;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t4435{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t4435{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t4437{color:rgb(255,255,255);width:50%;display:flex;font-size:3rem;background:rgb(39,39,39);margin-top:2rem;align-items:center;justify-items:center;justify-content:space-between;grid-template-columns:1fr 1fr;}@media screen and (max-width: 1056px) {body main .t4437{width:90%;position:relative;font-size:2.5rem;}}@media screen and (max-width: 767px) {body main .t4437{row-gap:2rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4437{width:90%;display:flex;align-items:center;flex-direction:row;justify-content:space-between;}}body main .t4438{width:80%;height:.5rem;background:rgb(255,161,0);margin-top:1rem;margin-bottom:2rem;}body main .t4439{display:flex;align-items:center;flex-direction:column;justify-content:center;}body main .t4440{width:50%;display:flex;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t4440{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t4440{width:100%;}}@media screen and (max-width: 480px) {body main .t4440{display:flex;column-gap:.25rem;}}body main .t4441{width:50%;display:flex;align-self:center;column-gap:.5rem;align-items:center;justify-content:center;}@media screen and (max-width: 991px) {body main .t4441{width:50%;align-items:center;justify-content:center;}}@media screen and (max-width: 767px) {body main .t4441{width:100%;}}@media screen and (max-width: 480px) {body main .t4441{display:flex;column-gap:.25rem;}}@media screen and (max-width: 767px) {body main .t4442{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t4442{font-size:1.5rem;font-family:'Rubik';font-weight:700;}}body main .t4443{width:3rem;}@media screen and (max-width: 480px) {body main .t4443{width:2rem;height:2rem;}}@media screen and (max-width: 767px) {body main .t4444{font-size:1.5rem;margin-left:.5rem;}}@media screen and (max-width: 480px) {body main .t4444{font-size:1.25rem;font-family:'Rubik';margin-left:.5rem;}}@media screen and (max-width: 991px) {body main .t4445{object-fit:fill;}}body main .t4446{font-weight:700;}@media screen and (max-width: 767px) {body main .t4446{font-size:1.75rem;}}@media screen and (max-width: 480px) {body main .t4446{font-size:1.75rem;font-family:'Rubik';font-weight:700;}}body main .t4447{width:3rem;}@media screen and (max-width: 480px) {body main .t4447{width:2rem;height:2rem;}}body main .t4449{font-size:10rem;text-align:center;font-family:'Bebas Neue';line-height:1;}@media screen and (max-width: 1056px) {body main .t4449{font-size:8rem;}}@media screen and (max-width: 480px) {body main .t4449{font-size:6rem;}}body main .t4450{color:rgb(204,204,204);font-size:5rem;text-align:center;font-family:'Rubik';font-weight:300;line-height:1;}@media screen and (max-width: 1056px) {body main .t4450{font-size:8rem;}}@media screen and (max-width: 991px) {body main .t4450{font-size:5rem;}}@media screen and (max-width: 767px) {body main .t4450{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t4450{font-size:6rem;}}body main .t4452{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;padding-top:6rem;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4454{top:auto;left:0%;right:0%;bottom:0%;position:fixed;margin-left:auto;margin-right:auto;}body main .t4455{color:rgb(255,255,255);width:100%;height:100%;display:flex;overflow:scroll;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t4455{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t4455{padding-top:3rem;}}@media screen and (max-width: 480px) {body main .t4455{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t4456{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4456{margin-bottom:1rem;}}body main .t4457{width:80%;display:grid;row-gap:2rem;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4457{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 650px) {body main .t4457{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4459{color:rgb(255,255,255);display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t4459{margin-bottom:1rem;}}body main .t4460{font-family:'Rubik';font-weight:600;}body main .t4461{font-size:4rem;font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t4461{font-size:3rem;}}body main .t4462{font-size:6rem;}@media screen and (max-width: 767px) {body main .t4462{font-size:4rem;}}body main .t4463{width:18rem;display:grid;position:relative;background:#101729;max-height:28rem;min-height:22rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}body main .t4464{width:18rem;display:grid;position:relative;background:#101729;max-height:28rem;min-height:22rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}body main .t4465{height:85%;display:grid;row-gap:.25rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t4466{display:flex;align-items:flex-end;justify-content:flex-end;}body main .t4467{display:flex;align-items:flex-start;justify-content:flex-end;}body main .t4468{display:flex;align-items:flex-end;justify-content:flex-end;}body main .t4469{width:6rem;margin-bottom:1rem;}body main .t4470{color:rgb(255,255,255);font-size:2rem;}body main .t4471{color:rgb(255,255,255);height:5rem;}body main .t4473{color:#0c121f;width:6rem;height:2rem;display:flex;font-size:.75rem;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t4476{width:80%;display:flex;font-size:1.5rem;column-gap:1rem;text-align:right;align-items:center;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4476{display:flex;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t4476{position:relative;padding-right:1rem;}}body main .t4477{color:rgb(255,183,0);text-align:right;}body main .t4479{display:flex;column-gap:.25rem;}body main .t4480{display:flex;column-gap:.25rem;align-items:center;margin-left:1rem;}body main .t4481{text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4481{width:100%;}}body main .t4483{text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4483{width:100%;}}body main .t4484{height:1rem;}body main .t4485{color:#0c121f;width:6rem;height:2rem;display:flex;font-size:.75rem;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t4487{height:85%;display:grid;row-gap:.25rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t4488{display:flex;align-items:flex-start;justify-content:flex-end;}body main .t4489{display:flex;align-items:flex-end;justify-content:flex-end;}body main .t4490{color:rgb(255,255,255);font-size:2rem;}body main .t4491{color:rgb(255,255,255);height:5rem;}body main .t4492{width:6rem;margin-bottom:1rem;}body main .t4495{width:80%;display:flex;font-size:1.5rem;column-gap:1rem;text-align:right;align-items:center;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4495{display:flex;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t4495{position:relative;padding-right:1rem;}}body main .t4496{color:rgb(255,183,0);text-align:right;}body main .t4498{display:flex;column-gap:.25rem;align-items:center;margin-left:1rem;}body main .t4499{text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4499{width:100%;}}body main .t4500{height:1rem;}body main .t4501{font-size:1rem;text-align:right;font-weight:300;}@media screen and (max-width: 767px) {body main .t4501{width:100%;}}body main .t4502{color:#0c121f;width:6rem;height:2rem;display:flex;font-size:.75rem;background:#00f593;text-align:center;align-items:center;font-weight:600;padding-top:.15rem;padding-left:.15rem;border-radius:3rem;padding-right:.15rem;padding-bottom:.15rem;justify-content:center;}body main .t4507{padding-top:2rem;padding-left:2rem;padding-right:2rem;padding-bottom:2rem;}body main .t4508{display:flex;align-items:center;}body main .t4509{display:flex;flex-wrap:wrap;column-gap:2rem;grid-template-columns:1fr 1fr;}body main .t4510{font-size:6rem;font-family:'Bebas Neue';}body main .t4511{font-size:6rem;}body main .t4512{width:15rem;height:22rem;position:relative;background:rgb(255,153,0);font-family:'Rubik';border-radius:1rem;}body main .t4513{margin-top:1rem;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;}body main .t4514{font-size:4rem;}body main .t4515{font-size:2.5rem;}body main .t4516{top:auto;left:auto;right:1rem;bottom:1rem;position:absolute;text-align:right;}body main .t4520{height:100vh;display:flex;flex-direction:column;justify-content:space-between;}body main .t4521{overflow:hidden;}body main .t4522{display:flex;align-self:center;flex-direction:column;justify-content:center;}body main .t4524{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t4525{color:rgb(255,255,255);width:10rem;height:2rem;display:flex;background:rgb(0,168,31);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t4526{cursor:pointer;}body main .t4528{background:var(--rd);box-sizing:border-box;min-height:100%;}body main .t4529{width:100%;height:100dvh;display:flex;position:relative;background:var(--or);flex-direction:column;padding-bottom:env(safe-area-inset-bottom);justify-content:flex-end;}body main .t4530{top:auto;left:0%;right:0%;height:12vh;position:absolute;background:rgb(36,36,36);margin-left:auto;margin-right:auto;padding-bottom:env(safe-area-inset-bottom);}body main .t4532{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4533{color:rgb(255,255,255);width:100%;height:100%;display:flex;background:#0c121f;align-items:center;padding-top:3rem;padding-left:2rem;padding-right:2rem;flex-direction:column;justify-content:flex-start;}@media screen and (max-width: 650px) {body main .t4533{background:#0c121f;}}@media screen and (max-width: 480px) {body main .t4533{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t4534{top:auto;left:0%;right:0%;bottom:0%;position:fixed;background:;margin-left:auto;margin-right:auto;}body main .t4536{width:60%;}@media screen and (max-width: 816px) {body main .t4536{width:80%;}}@media screen and (max-width: 767px) {body main .t4536{width:100%;overflow-x:hidden;}}@media screen and (max-width: 480px) {body main .t4536{margin-top:1rem;}}body main .t4537{width:90%;height:.5rem;background:rgb(255,161,0);margin-top:1rem;margin-bottom:2rem;}body main .t4538{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;}body main .t4539{display:flex;row-gap:2rem;margin-top:2rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4539{align-items:center;}}body main .t4540{color:rgba(255,255,255,0.75);font-size:3rem;text-align:center;font-family:'Rubik';font-weight:300;line-height:1;}@media screen and (max-width: 1056px) {body main .t4540{font-size:4rem;}}@media screen and (max-width: 991px) {body main .t4540{font-size:4rem;}}@media screen and (max-width: 767px) {body main .t4540{font-size:3rem;}}@media screen and (max-width: 480px) {body main .t4540{font-size:2rem;}}body main .t4541{font-size:4rem;text-align:center;font-family:'Rubik';font-weight:400;line-height:1;}@media screen and (max-width: 1056px) {body main .t4541{font-size:6rem;}}@media screen and (max-width: 767px) {body main .t4541{font-size:4rem;}}@media screen and (max-width: 480px) {body main .t4541{font-size:3rem;}}body main .t4542{height:40vh;display:flex;row-gap:1rem;margin-top:1rem;overflow-y:scroll;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4542{width:98%;overflow-x:hidden;}}body main .t4543{display:flex;justify-content:space-between;}@media screen and (max-width: 767px) {body main .t4543{width:100%;display:flex;}}body main .t4544{height:40vh;display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4544{width:95%;overflow-x:hidden;}}body main .t4545{height:4rem;display:grid;position:relative;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:center;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 60% 30%;}@media screen and (max-width: 816px) {body main .t4545{padding-left:2rem;padding-right:2rem;}}@media screen and (max-width: 767px) {body main .t4545{position:relative;padding-left:.5rem;padding-right:.5rem;grid-template-columns:10% 55% 35%;}}body main .t4546{width:90%;display:grid;position:absolute;column-gap:1rem;align-items:center;grid-template-columns:10% 65% 25%;}@media screen and (max-width: 816px) {body main .t4546{width:85%;}}@media screen and (max-width: 767px) {body main .t4546{width:95%;display:grid;position:absolute;grid-template-columns:10% 65% 25%;}}@media screen and (max-width: 480px) {body main .t4546{grid-template-columns:3rem 12rem 1fr;}}@media screen and (max-width: 767px) {body main .t4547{width:80%;display:flex;margin-left:1rem;flex-direction:column;justify-content:center;}}body main .t4548{top:0%;left:auto;right:0%;width:10rem;bottom:0%;display:flex;position:absolute;margin-left:auto;margin-right:auto;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4548{width:10rem;align-items:center;margin-right:0px;justify-items:end;}}@media screen and (max-width: 767px) {body main .t4549{display:flex;column-gap:1rem;}}body main .t4550{font-size:1rem;font-weight:600;}body main .t4551{font-size:.5rem;}body main .t4552{width:5rem;display:flex;column-gap:.25rem;align-items:center;flex-direction:row;}@media screen and (max-width: 816px) {body main .t4552{margin-left:0px;}}@media screen and (max-width: 767px) {body main .t4552{width:3.5rem;}}body main .t4553{width:5rem;display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t4553{width:3rem;}}body main .t4554{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4554{font-size:1rem;text-align:left;}}body main .t4555{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4555{height:1rem;}}@media screen and (max-width: 650px) {body main .t4555{width:1.15rem;}}body main .t4556{display:flex;column-gap:.25rem;align-items:center;}@media screen and (max-width: 816px) {body main .t4556{margin-left:0px;}}body main .t4557{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4557{font-size:1rem;text-align:left;}}body main .t4558{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4558{height:1rem;}}@media screen and (max-width: 650px) {body main .t4558{width:1.15rem;}}body main .t4559{width:60%;height:3rem;}@media screen and (max-width: 816px) {body main .t4559{width:100%;}}body main .t4560{font-family:'Rubik';}body main .t4561{height:4rem;display:grid;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:start;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 65% 25%;}body main .t4562{width:60%;height:3rem;}@media screen and (max-width: 816px) {body main .t4562{width:100%;}}body main .t4564{width:80%;text-align:right;}@media screen and (max-width: 767px) {body main .t4564{display:flex;justify-content:flex-end;}}@media screen and (max-width: 480px) {body main .t4564{position:relative;padding-right:1rem;}}body main .t4565{font-size:1rem;font-weight:600;}body main .t4566{font-size:.5rem;}body main .t4567{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4567{width:100%;}}body main .t4568{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4568{width:100%;}}body main .t4569{background:#0c121f;}body main .t4570{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4571{top:auto;left:0%;right:0%;bottom:0%;display:block;position:fixed;margin-left:auto;margin-right:auto;}body main .t4572{color:rgb(255,255,255);width:100%;height:100%;display:flex;row-gap:3rem;background:#0c121f;align-items:center;padding-top:5rem;padding-left:3rem;padding-right:3rem;flex-direction:column;justify-content:center;}@media screen and (max-width: 991px) {body main .t4572{padding-left:2rem;}}@media screen and (max-width: 480px) {body main .t4572{color:rgb(255,255,255);display:flex;background:rgb(41,41,41);padding-top:1rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;}}body main .t4573{width:14rem;border:1px solid rgba(0,0,0,0.07);height:2.5rem;overflow:hidden;border-radius:2rem;}body main .t4576{color:rgb(255,255,255);width:14rem;height:2.5rem;display:flex;background:rgb(0,168,31);text-align:center;align-items:center;border-radius:1rem;justify-content:center;}body main .t4577{cursor:pointer;}body main .t4579{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;overflow:scroll;position:absolute;background:#0c121f;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4580{background:;}body main .t4582{color:rgb(255,255,255);width:100%;height:80%;display:flex;background:#0c121f;align-items:center;padding-top:2rem;flex-direction:column;justify-content:flex-start;}@media screen and (max-width: 650px) {body main .t4582{background:#0c121f;}}@media screen and (max-width: 480px) {body main .t4582{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t4583{background:;}body main .t4584{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4585{color:rgb(255,255,255);height:100%;display:flex;overflow:scroll;position:relative;background:#0c121f;align-items:center;padding-top:3rem;padding-left:2rem;padding-right:2rem;flex-direction:column;justify-content:center;}body main .t4585:focus{border:1rem solid rgb(255,187,0);}@media screen and (max-width: 650px) {body main .t4585{background:#0c121f;align-items:flex-start;padding-top:2rem;padding-left:1rem;padding-right:1rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4585{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t4586{background:;}body main .t4588{width:90%;height:90%;display:flex;position:relative;align-items:center;}@media screen and (max-width: 767px) {body main .t4588{width:95%;overflow-x:hidden;}}@media screen and (max-width: 650px) {body main .t4588{align-items:flex-end;flex-direction:column-reverse;}}@media screen and (max-width: 480px) {body main .t4588{margin-top:1rem;}}body main .t4590{flex:1 1 0%;color:rgba(0,0,0,1.00);border:none;cursor:pointer;height:100vh;display:flex;row-gap:.5rem;flex-wrap:wrap;max-width:15rem;background:#0b111d00;min-height:44px;padding-left:10px;padding-right:10px;flex-direction:column;}body main .t4590:focus{outline:none;background:;}body main .t4591{width:60%;height:80%;display:flex;row-gap:2rem;overflow:scroll;position:relative;flex-wrap:wrap;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4591{align-items:center;}}@media screen and (max-width: 650px) {body main .t4591{width:90%;height:100%;overflow:visible;padding-top:1rem;margin-bottom:3rem;flex-direction:row;padding-bottom:1rem;justify-content:center;}}body main .t4592{width:40%;height:80%;display:flex;row-gap:1rem;overflow:scroll;flex-wrap:wrap;column-gap:1rem;grid-auto-flow:row;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 767px) {body main .t4592{width:50%;}}@media screen and (max-width: 650px) {body main .t4592{width:90%;justify-content:center;}}body main .t4593{color:rgb(255,255,255);width:80%;height:3rem;display:flex;background:;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4594{width:80%;display:flex;row-gap:2rem;flex-wrap:wrap;column-gap:1rem;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 650px) {body main .t4594{width:100%;align-items:center;flex-direction:row;justify-content:center;}}body main .t4595{width:100%;display:flex;margin-top:2rem;}@media screen and (max-width: 767px) {body main .t4595{justify-content:center;}}@media screen and (max-width: 650px) {body main .t4595{margin-top:0rem;}}body main .t4596{flex:1 1 0%;color:rgba(0,0,0,1.00);width:100%;border:none;cursor:pointer;height:16rem;display:block;background:#0b111d00;}body main .t4596:focus{outline:none;}body main .t4598{display:flex;}@media screen and (max-width: 650px) {body main .t4598{width:100%;row-gap:1rem;align-items:center;flex-direction:column;justify-content:center;}}body main .t4599{color:rgb(255,255,255);width:100%;height:3rem;display:flex;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4600{width:19rem;}@media screen and (max-width: 650px) {body main .t4600{height:2rem;font-family:'Rubik';font-weight:400;padding-left:.5rem;border-radius:2rem;}}body main .t4602{display:flex;row-gap:1rem;margin-top:1rem;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t4602{width:100%;overflow-x:hidden;}}@media screen and (max-width: 650px) {body main .t4602{overflow:visible;max-width:100%;min-width:100%;margin-top:0rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4602{margin-top:1rem;}}@media screen and (max-width: 650px) {body main .t4603{display:flex;row-gap:1rem;flex-direction:row;}}body main .t4604{display:flex;position:relative;column-gap:1rem;align-items:center;}@media screen and (max-width: 650px) {body main .t4604{column-gap:.5rem;}}body main .t4605{display:flex;column-gap:1rem;align-items:center;}@media screen and (max-width: 650px) {body main .t4605{column-gap:.5rem;justify-content:center;}}body main .t4606{color:rgb(255,183,0);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t4606{max-width:5rem;min-width:2rem;}}@media screen and (max-width: 650px) {body main .t4606{font-size:6rem;max-width:10rem;min-width:8rem;max-height:6rem;min-height:6rem;}}body main .t4607{width:2rem;object-fit:contain;}body main .t4608{color:rgb(0,247,255);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t4608{max-width:5rem;min-width:2rem;}}@media screen and (max-width: 650px) {body main .t4608{font-size:6rem;max-width:10rem;min-width:8rem;max-height:6rem;min-height:6rem;}}body main .t4609{width:2rem;object-fit:contain;}body main .t4610{width:6rem;border:1px solid rgba(255,255,255,0.2);height:2rem;display:flex;font-size:.8rem;text-align:center;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}@media screen and (max-width: 650px) {body main .t4610{flex-direction:column;}}body main .t4611{width:90%;}body main .t4612{width:30%;border:1px none rgba(0,0,0,1);height:3rem;font-size:1rem;background:#00db83;font-family:'Rubik';font-weight:600;border-radius:50rem;}@media screen and (max-width: 650px) {body main .t4612{height:2rem;}}body main .t4613{width:8rem;height:3rem;display:flex;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t4614{width:90%;font-size:.8rem;text-align:center;font-family:'Rubik';font-weight:600;}body main .t4615{display:none;}body main .t4616{display:flex;font-size:.75rem;column-gap:2rem;}@media screen and (max-width: 650px) {body main .t4616{flex-direction:column;}}body main .t4617{width:2rem;cursor:pointer;height:2rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';border-radius:50%;justify-content:center;}body main .t4618{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4621{background:#0c121f;}body main .t4622{top:0%;left:0%;right:0%;bottom:0auto;height:100%;display:flex;position:absolute;background:#ffffff;margin-left:auto;margin-right:auto;flex-direction:row;justify-content:center;}@media screen and (max-width: 480px) {body main .t4622{padding-top:3rem;}}body main .t4623{color:rgb(255,255,255);display:flex;row-gap:1rem;background:;align-items:center;padding-top:5rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t4623{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t4623{width:95%;row-gap:.5rem;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 650px) {body main .t4623{row-gap:.25rem;padding-top:2rem;}}@media screen and (max-width: 480px) {body main .t4623{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t4624{width:100%;text-align:center;}body main .t4625{color:rgb(54,54,54);display:flex;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t4625{margin-bottom:1rem;}}@media screen and (max-width: 650px) {body main .t4625{margin-bottom:0rem;}}@media screen and (max-width: 480px) {body main .t4625{margin-bottom:.25rem;}}body main .t4626{width:90%;display:grid;row-gap:2rem;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4626{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 650px) {body main .t4626{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4627{font-size:1.5rem;font-family:'Rubik';font-weight:600;}@media screen and (max-width: 767px) {body main .t4627{font-size:1.25rem;font-weight:600;}}@media screen and (max-width: 650px) {body main .t4627{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4627{font-size:1rem;}}body main .t4628{color:rgb(54,54,54);display:flex;font-size:2rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t4628{font-size:4rem;}}@media screen and (max-width: 650px) {body main .t4628{font-size:3rem;}}@media screen and (max-width: 480px) {body main .t4628{font-size:3rem;}}body main .t4629{width:14rem;display:grid;position:relative;background:#101729;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:.25rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 650px) {body main .t4629{width:100%;}}@media screen and (max-width: 480px) {body main .t4629{width:98%;}}body main .t4630{display:flex;row-gap:.5rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t4631{color:rgb(255,255,255);font-size:1.25rem;}@media screen and (max-width: 650px) {body main .t4631{font-size:1.75rem;}}body main .t4632{display:flex;align-items:flex-end;}body main .t4633{color:rgb(255,255,255);font-size:1rem;font-weight:700;}body main .t4634{font-size:.75rem;font-weight:300;}body main .t4635{font-size:.75rem;font-weight:300;}body main .t4636{background:#0c121f;}body main .t4637{top:0%;left:0%;right:0%;bottom:0auto;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:row;justify-content:center;}@media screen and (max-width: 480px) {body main .t4637{padding-top:3rem;}}body main .t4638{color:rgb(255,255,255);display:flex;row-gap:1rem;background:#0c121f;align-items:center;padding-top:5rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t4638{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t4638{width:95%;row-gap:.5rem;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 650px) {body main .t4638{row-gap:.25rem;padding-top:2rem;}}@media screen and (max-width: 480px) {body main .t4638{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t4639{width:100%;text-align:center;}body main .t4640{color:rgb(255,255,255);display:flex;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t4640{margin-bottom:1rem;}}@media screen and (max-width: 650px) {body main .t4640{margin-bottom:0rem;}}@media screen and (max-width: 480px) {body main .t4640{margin-bottom:.25rem;}}body main .t4641{width:80%;display:flex;row-gap:2rem;overflow:visible;position:relative;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4641{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 767px) {body main .t4641{width:100%;}}@media screen and (max-width: 650px) {body main .t4641{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4642{font-size:1.5rem;font-family:'Rubik';font-weight:300;}@media screen and (max-width: 767px) {body main .t4642{font-size:1.25rem;font-weight:600;}}@media screen and (max-width: 650px) {body main .t4642{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4642{font-size:1rem;}}body main .t4643{font-size:2.25rem;}body main .t4644{display:flex;font-size:5rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t4644{font-size:4rem;}}@media screen and (max-width: 650px) {body main .t4644{font-size:3rem;}}@media screen and (max-width: 480px) {body main .t4644{font-size:3rem;}}body main .t4645{width:30rem;display:flex;row-gap:2rem;overflow:visible;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4645{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 767px) {body main .t4645{width:100%;}}@media screen and (max-width: 650px) {body main .t4645{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4646{width:14rem;display:flex;position:relative;background:#101729;max-height:3rem;min-height:3rem;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:3rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:center;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 767px) {body main .t4646{padding-top:.5rem;padding-left:.25rem;padding-right:.25rem;padding-bottom:.5rem;}}@media screen and (max-width: 650px) {body main .t4646{width:100%;padding-left:0rem;padding-right:0rem;}}@media screen and (max-width: 480px) {body main .t4646{width:98%;}}body main .t4647{height:85%;display:flex;margin-left:1rem;margin-right:1rem;flex-direction:column;justify-content:center;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t4648{color:rgb(255,255,255);font-size:1.5rem;text-align:center;font-weight:400;line-height:1;}@media screen and (max-width: 767px) {body main .t4648{font-size:1rem;}}@media screen and (max-width: 650px) {body main .t4648{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4648{font-size:1rem;}}body main .t4649{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t4650{display:flex;align-items:center;justify-content:center;}body main .t4651{font-size:1.5rem;}body main .t4652{font-family:'Rubik';font-weight:700;}body main .t4653{width:100%;height:100%;display:flex;overflow-y:scroll;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;padding-right:1rem;justify-content:center;}body main .t4654{width:8rem;border:.5rem solid rgb(255,255,255);cursor:pointer;height:8rem;display:flex;background:;transition:all 200ms 0ms ease-in-out;border-radius:50%;background-image:;}body main .t4655{width:100%;height:100%;}body main .t4656{display:flex;row-gap:1rem;flex-wrap:wrap;column-gap:1rem;align-items:center;margin-left:auto;margin-right:auto;padding-left:.5rem;padding-right:.5rem;}body main .t4657{background:#0c121f;}body main .t4658{display:flex;font-size:.75rem;column-gap:2rem;margin-top:1rem;margin-bottom:1rem;}@media screen and (max-width: 650px) {body main .t4658{display:flex;align-items:center;flex-direction:row;justify-content:center;}}body main .t4659{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4660{color:rgb(255,255,255);}body main .t4661{width:2rem;cursor:pointer;height:2rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';border-radius:50%;justify-content:center;}body main .t4663{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-wrap:wrap;column-gap:1rem;margin-top:1rem;font-family:'Rubik';font-weight:700;margin-bottom:1rem;}@media screen and (max-width: 1056px) {body main .t4663{justify-content:center;}}@media screen and (max-width: 767px) {body main .t4663{height:40%;overflow:scroll;min-height:40%;justify-content:center;}}body main .t4664{padding-top:1rem;padding-left:1rem;padding-right:1rem;}@media screen and (max-width: 767px) {body main .t4664{display:flex;align-items:center;padding-left:.5rem;padding-right:.5rem;flex-direction:column;}}body main .t4665{padding-top:1rem;padding-left:1rem;padding-right:1rem;}@media screen and (max-width: 767px) {body main .t4665{display:flex;margin-top:1rem;margin-bottom:2rem;padding-bottom:1rem;}}body main .t4666{color:rgb(255,255,255);font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t4666{color:rgb(255,255,255);width:100%;font-family:'Rubik';padding-left:.5rem;padding-right:.5rem;}}body main .t4667{display:flex;row-gap:1rem;flex-wrap:wrap;column-gap:1rem;align-items:center;justify-content:center;}body main .t4668{width:6rem;height:6rem;display:flex;row-gap:.5rem;background:rgba(255,255,255,0.11);align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:1rem;padding-right:.5rem;flex-direction:column;padding-bottom:.5rem;justify-content:center;}body main .t4669{color:rgb(255,255,255);font-size:.75rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t4670{display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4670{width:98%;overflow-x:hidden;margin-bottom:2rem;}}body main .t4671{color:rgb(255,255,255);height:4rem;display:grid;position:relative;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:center;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 60% 30%;}@media screen and (max-width: 816px) {body main .t4671{padding-left:2rem;padding-right:2rem;}}@media screen and (max-width: 767px) {body main .t4671{position:relative;padding-left:.5rem;padding-right:.5rem;grid-template-columns:10% 55% 35%;}}body main .t4672{width:90%;display:grid;position:absolute;column-gap:1rem;align-items:center;grid-template-columns:10% 65% 25%;}@media screen and (max-width: 816px) {body main .t4672{width:85%;}}@media screen and (max-width: 767px) {body main .t4672{width:95%;display:grid;position:absolute;grid-template-columns:10% 65% 25%;}}@media screen and (max-width: 480px) {body main .t4672{grid-template-columns:3rem 12rem 1fr;}}body main .t4673{top:0%;left:auto;right:0%;width:10rem;bottom:0%;display:flex;position:absolute;margin-left:auto;margin-right:auto;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4673{width:10rem;align-items:center;margin-right:0px;justify-items:end;}}body main .t4674{width:6rem;display:flex;column-gap:.25rem;align-items:center;flex-direction:row;}@media screen and (max-width: 816px) {body main .t4674{margin-left:0px;}}@media screen and (max-width: 767px) {body main .t4674{width:4rem;}}body main .t4675{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4675{font-size:1rem;text-align:left;}}body main .t4676{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4676{height:1rem;}}@media screen and (max-width: 650px) {body main .t4676{width:1.15rem;}}body main .t4677{width:6rem;display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t4677{width:4rem;}}body main .t4678{display:flex;column-gap:.25rem;align-items:center;}@media screen and (max-width: 816px) {body main .t4678{margin-left:0px;}}body main .t4679{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4679{font-size:1rem;text-align:left;}}body main .t4680{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4680{height:1rem;}}@media screen and (max-width: 650px) {body main .t4680{width:1.15rem;}}@media screen and (max-width: 767px) {body main .t4681{display:flex;column-gap:1rem;}}body main .t4682{width:60%;height:3rem;}@media screen and (max-width: 816px) {body main .t4682{width:100%;}}@media screen and (max-width: 767px) {body main .t4683{width:80%;display:flex;margin-left:1rem;flex-direction:column;justify-content:center;}}body main .t4684{font-size:1rem;font-weight:700;}body main .t4685{font-size:.5rem;}body main .t4686{font-size:.75rem;font-weight:400;}body main .t4687{width:8rem;height:3rem;display:flex;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t4688{width:90%;font-size:.8rem;text-align:center;font-family:'Rubik';font-weight:600;}body main .t4689{display:none;}body main .t4690{flex:1 1 0%;color:rgba(0,0,0,1.00);border:none;cursor:pointer;height:100vh;display:flex;row-gap:.5rem;flex-wrap:wrap;max-width:15rem;background:#0b111d00;min-height:44px;padding-left:10px;padding-right:10px;flex-direction:column;}body main .t4690:focus{outline:none;background:;}body main .t4691{color:rgb(255,255,255);width:80%;height:3rem;display:flex;background:;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4693{background:;}body main .t4694{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4695{color:rgb(255,255,255);height:100%;display:flex;overflow:scroll;position:relative;background:#0c121f;align-items:center;padding-top:3rem;padding-left:2rem;padding-right:2rem;flex-direction:column;}body main .t4695:focus{border:1rem solid rgb(255,187,0);}@media screen and (max-width: 650px) {body main .t4695{background:#0c121f;align-items:flex-start;padding-top:2rem;padding-left:1rem;padding-right:1rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4695{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t4696{display:flex;row-gap:1rem;flex-wrap:wrap;column-gap:1rem;}body main .t4697{width:8rem;height:3rem;display:flex;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t4698{display:none;}body main .t4699{width:90%;font-size:.8rem;text-align:center;font-family:'Rubik';font-weight:600;}body main .t4700{flex:1 1 0%;color:rgba(0,0,0,1.00);border:none;cursor:pointer;height:100vh;display:flex;row-gap:.5rem;flex-wrap:wrap;max-width:15rem;background:#0b111d00;min-height:44px;padding-left:10px;padding-right:10px;flex-direction:column;}body main .t4700:focus{outline:none;background:;}body main .t4701{color:rgb(255,255,255);width:80%;height:3rem;display:flex;background:;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4702{width:90%;height:90%;display:flex;position:relative;align-items:center;}@media screen and (max-width: 767px) {body main .t4702{width:95%;overflow-x:hidden;}}@media screen and (max-width: 650px) {body main .t4702{align-items:flex-end;flex-direction:column-reverse;}}@media screen and (max-width: 480px) {body main .t4702{margin-top:1rem;}}body main .t4703{flex:1 1 0%;color:rgba(0,0,0,1.00);border:none;cursor:pointer;height:100vh;display:flex;row-gap:.5rem;flex-wrap:wrap;max-width:15rem;background:#0b111d00;min-height:44px;padding-left:10px;padding-right:10px;flex-direction:column;}body main .t4703:focus{outline:none;background:;}body main .t4704{color:rgb(255,255,255);width:80%;height:3rem;display:flex;background:;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4705{width:60%;height:80%;display:flex;row-gap:2rem;overflow:scroll;position:relative;flex-wrap:wrap;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4705{align-items:center;}}@media screen and (max-width: 650px) {body main .t4705{width:90%;height:100%;overflow:visible;padding-top:1rem;margin-bottom:3rem;flex-direction:row;padding-bottom:1rem;justify-content:center;}}body main .t4706{width:80%;display:flex;row-gap:2rem;flex-wrap:wrap;column-gap:1rem;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 650px) {body main .t4706{width:100%;align-items:center;flex-direction:row;justify-content:center;}}body main .t4707{flex:1 1 0%;color:rgba(0,0,0,1.00);width:100%;border:none;cursor:pointer;height:16rem;display:block;background:#0b111d00;}body main .t4707:focus{outline:none;}body main .t4708{color:rgb(255,255,255);width:100%;height:3rem;display:flex;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4710{width:19rem;}@media screen and (max-width: 650px) {body main .t4710{height:2rem;font-family:'Rubik';font-weight:400;padding-left:.5rem;border-radius:2rem;}}body main .t4712{display:flex;}@media screen and (max-width: 650px) {body main .t4712{width:100%;row-gap:1rem;align-items:center;flex-direction:column;justify-content:center;}}body main .t4713{display:flex;row-gap:1rem;margin-top:1rem;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t4713{width:100%;overflow-x:hidden;}}@media screen and (max-width: 650px) {body main .t4713{overflow:visible;max-width:100%;min-width:100%;margin-top:0rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4713{margin-top:1rem;}}body main .t4714{display:flex;position:relative;column-gap:1rem;align-items:center;}@media screen and (max-width: 650px) {body main .t4714{column-gap:.5rem;}}body main .t4715{color:rgb(255,183,0);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t4715{max-width:5rem;min-width:2rem;}}@media screen and (max-width: 650px) {body main .t4715{font-size:6rem;max-width:10rem;min-width:8rem;max-height:6rem;min-height:6rem;}}body main .t4716{width:2rem;object-fit:contain;}body main .t4717{display:flex;column-gap:1rem;align-items:center;}@media screen and (max-width: 650px) {body main .t4717{column-gap:.5rem;justify-content:center;}}body main .t4718{color:rgb(0,247,255);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t4718{max-width:5rem;min-width:2rem;}}@media screen and (max-width: 650px) {body main .t4718{font-size:6rem;max-width:10rem;min-width:8rem;max-height:6rem;min-height:6rem;}}body main .t4719{width:2rem;object-fit:contain;}@media screen and (max-width: 650px) {body main .t4720{display:flex;row-gap:1rem;flex-direction:row;}}body main .t4721{width:6rem;border:1px solid rgba(255,255,255,0.2);height:2rem;display:flex;font-size:.8rem;text-align:center;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}@media screen and (max-width: 650px) {body main .t4721{flex-direction:column;}}body main .t4722{width:90%;}body main .t4723{width:100%;display:flex;margin-top:2rem;}@media screen and (max-width: 767px) {body main .t4723{justify-content:center;}}@media screen and (max-width: 650px) {body main .t4723{margin-top:0rem;}}body main .t4724{width:30%;border:1px none rgba(0,0,0,1);height:3rem;font-size:1rem;background:#00db83;font-family:'Rubik';font-weight:600;border-radius:50rem;}@media screen and (max-width: 650px) {body main .t4724{height:2rem;}}body main .t4725{width:40%;height:80%;display:flex;row-gap:1rem;overflow:scroll;flex-wrap:wrap;column-gap:1rem;grid-auto-flow:row;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 767px) {body main .t4725{width:50%;}}@media screen and (max-width: 650px) {body main .t4725{width:90%;justify-content:center;}}body main .t4726{width:8rem;height:3rem;display:flex;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t4727{width:90%;font-size:.8rem;text-align:center;font-family:'Rubik';font-weight:600;}body main .t4728{display:none;}body main .t4729{width:100%;height:70%;display:grid;grid-template-columns:1fr 1fr 1fr;}body main .t4732{display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4732{width:98%;overflow-x:hidden;}}body main .t4733{height:4rem;display:grid;position:relative;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:center;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 60% 30%;}@media screen and (max-width: 816px) {body main .t4733{padding-left:2rem;padding-right:2rem;}}@media screen and (max-width: 767px) {body main .t4733{position:relative;padding-left:.5rem;padding-right:.5rem;grid-template-columns:10% 55% 35%;}}body main .t4734{width:90%;display:grid;position:absolute;column-gap:1rem;align-items:center;grid-template-columns:10% 65% 25%;}@media screen and (max-width: 816px) {body main .t4734{width:85%;}}@media screen and (max-width: 767px) {body main .t4734{width:95%;display:grid;position:absolute;grid-template-columns:10% 65% 25%;}}@media screen and (max-width: 480px) {body main .t4734{grid-template-columns:3rem 12rem 1fr;}}@media screen and (max-width: 767px) {body main .t4735{display:flex;column-gap:1rem;}}body main .t4736{width:60%;height:3rem;}@media screen and (max-width: 816px) {body main .t4736{width:100%;}}@media screen and (max-width: 767px) {body main .t4737{width:80%;display:flex;margin-left:1rem;flex-direction:column;justify-content:center;}}body main .t4738{font-size:1rem;font-weight:700;}body main .t4739{font-size:.5rem;}body main .t4740{font-size:.75rem;font-weight:600;}body main .t4741{top:0%;left:auto;right:0%;width:10rem;bottom:0%;display:flex;position:absolute;margin-left:auto;margin-right:auto;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4741{width:10rem;align-items:center;margin-right:0px;justify-items:end;}}body main .t4742{width:6rem;display:flex;column-gap:.25rem;align-items:center;flex-direction:row;}@media screen and (max-width: 816px) {body main .t4742{margin-left:0px;}}@media screen and (max-width: 767px) {body main .t4742{width:4rem;}}body main .t4743{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4743{font-size:1rem;text-align:left;}}body main .t4744{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4744{height:1rem;}}@media screen and (max-width: 650px) {body main .t4744{width:1.15rem;}}body main .t4745{width:6rem;display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t4745{width:4rem;}}body main .t4746{display:flex;column-gap:.25rem;align-items:center;}@media screen and (max-width: 816px) {body main .t4746{margin-left:0px;}}body main .t4747{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4747{font-size:1rem;text-align:left;}}body main .t4748{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4748{height:1rem;}}@media screen and (max-width: 650px) {body main .t4748{width:1.15rem;}}body main .t4749{padding-top:1rem;padding-left:1rem;padding-right:1rem;}body main .t4750{display:flex;row-gap:1rem;flex-wrap:wrap;column-gap:1rem;}body main .t4751{width:6rem;height:6rem;display:flex;background:rgba(255,255,255,0.11);align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:50%;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t4752{color:rgb(255,255,255);font-size:.75rem;text-align:center;font-family:'Rubik';font-weight:700;}body main .t4755{display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4755{width:98%;overflow-x:hidden;}}body main .t4756{height:4rem;display:grid;position:relative;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:center;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 60% 30%;}@media screen and (max-width: 816px) {body main .t4756{padding-left:2rem;padding-right:2rem;}}@media screen and (max-width: 767px) {body main .t4756{position:relative;padding-left:.5rem;padding-right:.5rem;grid-template-columns:10% 55% 35%;}}body main .t4757{width:90%;display:grid;position:absolute;column-gap:1rem;align-items:center;grid-template-columns:10% 65% 25%;}@media screen and (max-width: 816px) {body main .t4757{width:85%;}}@media screen and (max-width: 767px) {body main .t4757{width:95%;display:grid;position:absolute;grid-template-columns:10% 65% 25%;}}@media screen and (max-width: 480px) {body main .t4757{grid-template-columns:3rem 12rem 1fr;}}@media screen and (max-width: 767px) {body main .t4758{display:flex;column-gap:1rem;}}body main .t4759{width:60%;height:3rem;}@media screen and (max-width: 816px) {body main .t4759{width:100%;}}body main .t4760{top:0%;left:auto;right:0%;width:10rem;bottom:0%;display:flex;position:absolute;margin-left:auto;margin-right:auto;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4760{width:10rem;align-items:center;margin-right:0px;justify-items:end;}}body main .t4761{width:6rem;display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t4761{width:4rem;}}body main .t4762{display:flex;column-gap:.25rem;align-items:center;}@media screen and (max-width: 816px) {body main .t4762{margin-left:0px;}}body main .t4763{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4763{font-size:1rem;text-align:left;}}body main .t4764{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4764{height:1rem;}}@media screen and (max-width: 650px) {body main .t4764{width:1.15rem;}}body main .t4765{width:6rem;display:flex;column-gap:.25rem;align-items:center;flex-direction:row;}@media screen and (max-width: 816px) {body main .t4765{margin-left:0px;}}@media screen and (max-width: 767px) {body main .t4765{width:4rem;}}body main .t4766{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4766{font-size:1rem;text-align:left;}}body main .t4767{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4767{height:1rem;}}@media screen and (max-width: 650px) {body main .t4767{width:1.15rem;}}@media screen and (max-width: 767px) {body main .t4768{width:80%;display:flex;margin-left:1rem;flex-direction:column;justify-content:center;}}body main .t4769{font-size:.75rem;font-weight:600;}body main .t4770{font-size:1rem;font-weight:700;}body main .t4771{font-size:.5rem;}body main .t4773{display:flex;font-size:.75rem;column-gap:2rem;}@media screen and (max-width: 650px) {body main .t4773{flex-direction:column;}}body main .t4774{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4776{width:2rem;cursor:pointer;height:2rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';border-radius:50%;justify-content:center;}body main .t4778{background:;}body main .t4779{width:100%;height:100dvh;display:flex;overflow:scroll;background:#0c121f;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}@media screen and (max-width: 767px) {body main .t4779{position:relative;}}body main .t4780{width:100%;display:flex;overflow:hidden;background:#101729;column-gap:4rem;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;border-bottom:1px solid #101729;flex-direction:column;padding-bottom:1rem;justify-content:center;}@media screen and (max-width: 480px) {body main .t4780{top:auto;left:0%;color:rgb(255,255,255);right:0%;width:100%;bottom:0%;display:flex;position:absolute;column-gap:2rem;margin-left:auto;margin-right:auto;border-radius:1rem 0px 0px 0px;justify-content:center;}}body main .t4781{display:flex;column-gap:3rem;align-items:center;}body main .t4782{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}body main .t4783{display:flex;align-items:center;justify-content:center;}body main .t4784{font-size:1.5rem;}body main .t4785{font-family:'Rubik';font-weight:700;}body main .t4786{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}body main .t4787{display:flex;align-items:center;justify-content:center;}body main .t4788{font-size:1.5rem;}body main .t4789{font-family:'Rubik';font-weight:700;}body main .t4790{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}body main .t4791{display:flex;align-items:center;justify-content:center;}body main .t4792{font-size:1.5rem;}body main .t4793{font-family:'Rubik';font-weight:700;}body main .t4794{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}body main .t4795{display:flex;align-items:center;justify-content:center;}body main .t4796{font-size:1.5rem;}body main .t4797{font-family:'Rubik';font-weight:700;}body main .t4798{width:50%;}body main .t4799{background:#0c121f;}body main .t4800{height:2rem;display:flex;}@media screen and (max-width: 816px) {body main .t4800{align-self:center;column-gap:.25rem;align-items:center;}}@media screen and (max-width: 816px) {body main .t4801{padding-top:.25rem;padding-left:.25rem;padding-right:.25rem;padding-bottom:.25rem;}}body main .t4802{width:100%;height:100dvh;display:flex;row-gap:.5rem;overflow:scroll;align-items:center;flex-direction:column;}@media screen and (max-width: 816px) {body main .t4802{max-width:95%;}}body main .t4803{width:7rem;display:flex;align-items:center;font-family:'Rubik';font-weight:600;margin-right:.5rem;padding-left:.5rem;border-radius:1rem 0px 0px 1rem;}@media screen and (max-width: 816px) {body main .t4803{font-size:.75rem;max-width:8rem;min-width:4rem;}}body main .t4804{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4805{color:rgb(255,255,255);}body main .t4807{background:#0c121f;}body main .t4808{top:0%;left:0%;right:0%;bottom:0auto;height:100%;display:flex;position:absolute;margin-left:auto;margin-right:auto;flex-direction:row;justify-content:center;}@media screen and (max-width: 480px) {body main .t4808{padding-top:3rem;}}body main .t4809{color:rgb(255,255,255);display:flex;row-gap:1rem;background:#0c121f;align-items:center;padding-top:5rem;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t4809{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t4809{width:95%;row-gap:.5rem;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 650px) {body main .t4809{row-gap:.25rem;padding-top:2rem;}}@media screen and (max-width: 480px) {body main .t4809{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t4810{width:100%;text-align:center;}body main .t4811{font-size:1.5rem;font-family:'Rubik';font-weight:600;}@media screen and (max-width: 767px) {body main .t4811{font-size:1.25rem;font-weight:600;}}@media screen and (max-width: 650px) {body main .t4811{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4811{font-size:1rem;}}body main .t4812{width:90%;display:flex;row-gap:2rem;flex-wrap:wrap;column-gap:2rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;flex-direction:column;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4812{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 650px) {body main .t4812{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4813{width:14rem;display:grid;position:relative;background:#101729;font-family:'Rubik';padding-top:1rem;padding-left:1rem;border-radius:1rem;padding-right:1rem;flex-direction:column;padding-bottom:.25rem;justify-content:space-between;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 650px) {body main .t4813{width:100%;}}@media screen and (max-width: 480px) {body main .t4813{width:98%;}}body main .t4814{display:flex;row-gap:.5rem;align-items:stretch;margin-left:1rem;margin-right:1rem;margin-bottom:1rem;flex-direction:column;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t4815{color:rgb(255,255,255);font-size:1.25rem;}@media screen and (max-width: 650px) {body main .t4815{font-size:1.75rem;}}body main .t4816{display:flex;align-items:flex-end;}body main .t4817{color:rgb(255,255,255);font-size:1rem;font-weight:700;}body main .t4818{font-size:.75rem;font-weight:300;}body main .t4819{font-size:.75rem;font-weight:300;}body main .t4821{color:rgb(255,255,255);width:2rem;height:2rem;font-size:2rem;}body main .t4823{width:2rem;height:2rem;}@media screen and (max-width: 816px) {body main .t4823{width:1rem;height:1rem;}}body main .t4824{display:flex;font-size:.75rem;column-gap:2rem;margin-top:1rem;margin-bottom:1rem;}@media screen and (max-width: 650px) {body main .t4824{display:flex;align-items:center;flex-direction:row;justify-content:center;}}body main .t4825{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4826{color:rgb(255,255,255);}body main .t4827{width:2rem;cursor:pointer;height:2rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';border-radius:50%;justify-content:center;}body main .t4829{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4830{color:rgb(255,255,255);}body main .t4833{font-weight:600;}body main .t4834{font-weight:600;}body main .t4835{width:50%;display:flex;column-gap:.5rem;align-items:center;}body main .t4836{width:50%;display:flex;column-gap:.5rem;align-items:center;}body main .t4837{width:1rem;height:1rem;}body main .t4838{width:1rem;height:1rem;}body main .t4839{color:rgb(255,255,255);width:8rem;display:flex;position:relative;font-family:'Rubik';margin-left:1rem;}@media screen and (max-width: 816px) {body main .t4839{width:6rem;font-size:.75rem;margin-left:1rem;}}body main .t4840{top:auto;left:0%;right:0%;bottom:0%;position:fixed;background:;margin-left:auto;margin-right:auto;}@media screen and (max-width: 816px) {body main .t4840{z-index:999;}}body main .t4841{width:10rem;height:10rem;font-size:1rem;font-family:'Rubik';}body main .t4842{display:flex;justify-content:space-between;}body main .t4843{padding-left:1rem;border-radius:2rem;}body main .t4844{background:transparent!important;}body main .t4845{top:0%;left:0%;right:0%;bottom:0auto;display:flex;position:absolute;background:;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}@media screen and (max-width: 480px) {body main .t4845{padding-top:3rem;}}body main .t4846{display:flex;row-gap:1rem;background:;align-items:center;flex-direction:column;padding-bottom:6rem;}@media screen and (max-width: 991px) {body main .t4846{padding-left:2rem;}}@media screen and (max-width: 767px) {body main .t4846{width:95%;row-gap:.5rem;padding-top:3rem;padding-left:1rem;padding-right:1rem;}}@media screen and (max-width: 650px) {body main .t4846{row-gap:.25rem;padding-top:2rem;}}@media screen and (max-width: 480px) {body main .t4846{color:rgb(255,255,255);display:flex;row-gap:.25rem;background:;padding-top:0rem;padding-left:1rem;padding-right:1rem;flex-direction:column;padding-bottom:1rem;justify-content:flex-start;}}body main .t4847{width:100%;text-align:center;}body main .t4848{font-size:1.5rem;font-family:'Rubik';font-weight:300;}@media screen and (max-width: 767px) {body main .t4848{font-size:1.25rem;font-weight:600;}}@media screen and (max-width: 650px) {body main .t4848{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4848{font-size:1rem;}}body main .t4849{color:rgb(255,255,255);display:flex;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t4849{margin-bottom:1rem;}}@media screen and (max-width: 650px) {body main .t4849{margin-bottom:0rem;}}@media screen and (max-width: 480px) {body main .t4849{margin-bottom:.25rem;}}body main .t4850{font-size:2.25rem;}body main .t4851{display:flex;font-size:5rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t4851{font-size:4rem;}}@media screen and (max-width: 650px) {body main .t4851{font-size:3rem;}}@media screen and (max-width: 480px) {body main .t4851{font-size:3rem;}}body main .t4852{width:80%;display:flex;row-gap:2rem;overflow:visible;position:relative;flex-wrap:wrap;column-gap:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4852{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 767px) {body main .t4852{width:100%;}}@media screen and (max-width: 650px) {body main .t4852{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4853{width:30rem;display:flex;row-gap:1rem;overflow:visible;flex-wrap:wrap;column-gap:1rem;margin-top:2rem;justify-items:center;margin-bottom:2rem;justify-content:center;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 991px) {body main .t4853{justify-items:center;grid-template-columns:1fr 1fr;}}@media screen and (max-width: 767px) {body main .t4853{width:100%;}}@media screen and (max-width: 650px) {body main .t4853{justify-items:center;justify-content:center;grid-template-columns:1fr;}}body main .t4854{width:10rem;height:10rem;font-size:1rem;font-family:'Rubik';}body main .t4855{width:10rem;display:flex;position:relative;max-height:3rem;min-height:3rem;align-items:center;font-family:'Rubik';border-radius:3rem;padding-right:1rem;flex-direction:row;justify-content:flex-start;grid-template-rows:10% 80% 10%;grid-template-columns:1fr;}@media screen and (max-width: 767px) {body main .t4855{padding-top:.5rem;padding-left:.25rem;padding-right:.25rem;padding-bottom:.5rem;}}@media screen and (max-width: 650px) {body main .t4855{width:100%;padding-left:0rem;padding-right:0rem;}}@media screen and (max-width: 480px) {body main .t4855{width:98%;}}body main .t4856{width:50%;height:85%;display:flex;column-gap:1rem;align-items:center;margin-left:1rem;margin-right:1rem;flex-direction:row;justify-content:center;grid-template-rows:1fr 1fr 1fr;grid-template-columns:1fr;}body main .t4857{font-size:.75rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t4857{font-size:1rem;}}@media screen and (max-width: 650px) {body main .t4857{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4857{font-size:1rem;}}body main .t4858{font-size:1.5rem;font-weight:700;}body main .t4859{width:20%;display:flex;align-items:center;justify-content:flex-end;}body main .t4860{width:20%;display:flex;column-gap:.25rem;align-items:center;}body main .t4861{font-size:1rem;font-weight:700;}body main .t4862{font-size:.75rem;text-align:center;line-height:1;}@media screen and (max-width: 767px) {body main .t4862{font-size:1rem;}}@media screen and (max-width: 650px) {body main .t4862{font-size:1rem;}}@media screen and (max-width: 480px) {body main .t4862{font-size:1rem;}}body main .t4863{display:flex;font-size:.75rem;column-gap:2rem;padding-top:.5rem;margin-bottom:1rem;justify-content:center;}@media screen and (max-width: 650px) {body main .t4863{display:flex;align-items:center;flex-direction:row;justify-content:center;}}body main .t4864{color:rgb(7,7,7);width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4866{width:2rem;cursor:pointer;height:2rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';border-radius:50%;justify-content:center;}body main .t4868{color:rgb(7,7,7);width:2.5rem;cursor:pointer;height:2.5rem;display:flex;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4872{top:auto;left:0%;right:0%;bottom:0%;z-index:999;position:fixed;background:;margin-left:auto;margin-right:auto;}@media screen and (max-width: 816px) {body main .t4872{z-index:999;}}body main .t4873{color:rgb(255,255,255);display:flex;row-gap:1rem;flex-direction:column;}body main .t4874{display:flex;align-items:center;justify-content:center;}body main .t4875{font-size:1.5rem;}body main .t4876{font-family:'Rubik';font-weight:700;}body main .t4879{top:0%;left:0%;right:0%;width:100%;bottom:0auto;height:100dvh;display:flex;position:absolute;background:#0c121f;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4880{color:rgb(255,255,255);width:100%;height:80%;display:flex;background:#0c121f;align-items:center;padding-top:2rem;flex-direction:column;justify-content:flex-start;}@media screen and (max-width: 650px) {body main .t4880{background:#0c121f;}}@media screen and (max-width: 480px) {body main .t4880{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t4881{width:100%;height:100%;display:flex;overflow-y:scroll;align-items:center;margin-left:auto;padding-top:1rem;margin-right:auto;padding-left:1rem;padding-right:1rem;justify-content:center;}body main .t4882{display:flex;row-gap:1rem;flex-wrap:wrap;column-gap:1rem;align-items:center;margin-left:auto;margin-right:auto;padding-left:.5rem;padding-right:.5rem;}body main .t4883{width:8rem;border:.5rem solid rgb(255,255,255);cursor:pointer;height:8rem;display:flex;background:;transition:all 200ms 0ms ease-in-out;border-radius:50%;background-image:;}body main .t4884{background:;}body main .t4887{color:rgb(255,255,255);width:10rem;display:flex;column-gap:1rem;align-items:center;font-family:'Rubik';flex-direction:column;justify-content:center;}body main .t4888{font-size:2rem;font-weight:700;}body main .t4890{top:0%;left:0%;color:rgb(255,255,255);right:0%;bottom:0%;display:flex;position:absolute;column-gap:1rem;align-items:center;font-family:'Rubik';margin-left:auto;margin-right:auto;flex-direction:column;justify-content:center;}body main .t4891{font-size:2rem;font-weight:700;}body main .t4893{width:8rem;border:.5rem solid rgb(255,255,255);cursor:pointer;height:8rem;display:flex;position:relative;background:;transition:all 200ms 0ms ease-in-out;border-radius:50%;background-image:;}body main .t4894{width:100%;height:100%;}body main .t4895{height:90%;display:flex;row-gap:.5rem;overflow:scroll;align-items:center;padding-left:1rem;padding-right:1rem;flex-direction:column;}body main .t4896{color:rgb(255,255,255);display:flex;row-gap:1rem;align-items:center;flex-direction:column;}body main .t4897{display:flex;align-items:center;justify-content:center;}body main .t4898{font-size:1.5rem;}body main .t4899{font-family:'Rubik';font-weight:700;}body main .t4900{background:#0c121f;}body main .t4901{top:auto;left:0%;right:0%;bottom:0%;position:fixed;background:;margin-left:auto;margin-right:auto;}@media screen and (max-width: 816px) {body main .t4901{z-index:999;}}body main .t4902{width:100%;height:100dvh;display:flex;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}body main .t4903{color:rgb(255,255,255);height:100%;display:flex;overflow:scroll;position:relative;background:#0c121f;align-items:center;padding-top:3rem;padding-left:2rem;padding-right:2rem;flex-direction:column;}body main .t4903:focus{border:1rem solid rgb(255,187,0);}@media screen and (max-width: 650px) {body main .t4903{background:#0c121f;align-items:flex-start;padding-top:2rem;padding-left:1rem;padding-right:1rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4903{background:#0c121f;padding-top:1rem;padding-left:1rem;padding-right:1rem;padding-bottom:1rem;}}body main .t4904{width:90%;height:90%;display:flex;position:relative;align-items:center;}@media screen and (max-width: 767px) {body main .t4904{width:95%;overflow-x:hidden;}}@media screen and (max-width: 650px) {body main .t4904{align-items:flex-end;flex-direction:column-reverse;}}@media screen and (max-width: 480px) {body main .t4904{margin-top:1rem;}}body main .t4905{flex:1 1 0%;color:rgba(0,0,0,1.00);border:none;cursor:pointer;height:100vh;display:flex;row-gap:.5rem;flex-wrap:wrap;max-width:15rem;background:#0b111d00;min-height:44px;padding-left:10px;padding-right:10px;flex-direction:column;}body main .t4905:focus{outline:none;background:;}body main .t4906{color:rgb(255,255,255);width:80%;height:3rem;display:flex;background:;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4907{width:60%;height:80%;display:flex;row-gap:2rem;overflow:scroll;position:relative;flex-wrap:wrap;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4907{align-items:center;}}@media screen and (max-width: 650px) {body main .t4907{width:90%;height:100%;overflow:visible;padding-top:1rem;margin-bottom:3rem;flex-direction:row;padding-bottom:1rem;justify-content:center;}}body main .t4908{width:80%;display:flex;row-gap:2rem;flex-wrap:wrap;column-gap:1rem;align-items:flex-start;flex-direction:column;}@media screen and (max-width: 650px) {body main .t4908{width:100%;align-items:center;flex-direction:row;justify-content:center;}}body main .t4909{flex:1 1 0%;color:rgba(0,0,0,1.00);width:100%;border:none;cursor:pointer;height:16rem;display:block;background:#0b111d00;}body main .t4909:focus{outline:none;}body main .t4910{color:rgb(255,255,255);width:100%;height:3rem;display:flex;margin-top:.5rem;align-items:center;font-family:'Rubik';font-weight:600;padding-left:1rem;border-radius:10rem;padding-right:1rem;}body main .t4912{width:19rem;}@media screen and (max-width: 650px) {body main .t4912{height:2rem;font-family:'Rubik';font-weight:400;padding-left:.5rem;border-radius:2rem;}}body main .t4914{display:flex;}@media screen and (max-width: 650px) {body main .t4914{width:100%;row-gap:1rem;align-items:center;flex-direction:column;justify-content:center;}}body main .t4915{display:flex;row-gap:1rem;margin-top:1rem;align-items:center;flex-direction:row;justify-content:center;}@media screen and (max-width: 767px) {body main .t4915{width:100%;overflow-x:hidden;}}@media screen and (max-width: 650px) {body main .t4915{overflow:visible;max-width:100%;min-width:100%;margin-top:0rem;flex-direction:row;}}@media screen and (max-width: 480px) {body main .t4915{margin-top:1rem;}}body main .t4916{display:flex;position:relative;column-gap:1rem;align-items:center;}@media screen and (max-width: 650px) {body main .t4916{column-gap:.5rem;}}body main .t4917{color:rgb(255,183,0);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t4917{max-width:5rem;min-width:2rem;}}@media screen and (max-width: 650px) {body main .t4917{font-size:6rem;max-width:10rem;min-width:8rem;max-height:6rem;min-height:6rem;}}body main .t4918{width:2rem;object-fit:contain;}body main .t4919{display:flex;column-gap:1rem;align-items:center;}@media screen and (max-width: 650px) {body main .t4919{column-gap:.5rem;justify-content:center;}}body main .t4920{color:rgb(0,247,255);width:8rem;border:none;height:3rem;font-size:2rem;background:#0b111d00;font-family:'Rubik';font-weight:700;}@media screen and (max-width: 767px) {body main .t4920{max-width:5rem;min-width:2rem;}}@media screen and (max-width: 650px) {body main .t4920{font-size:6rem;max-width:10rem;min-width:8rem;max-height:6rem;min-height:6rem;}}body main .t4921{width:2rem;object-fit:contain;}@media screen and (max-width: 650px) {body main .t4922{display:flex;row-gap:1rem;flex-direction:row;}}body main .t4923{width:6rem;border:1px solid rgba(255,255,255,0.2);height:2rem;display:flex;font-size:.8rem;text-align:center;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}@media screen and (max-width: 650px) {body main .t4923{flex-direction:column;}}body main .t4924{width:90%;}body main .t4925{width:100%;display:flex;margin-top:2rem;}@media screen and (max-width: 767px) {body main .t4925{justify-content:center;}}@media screen and (max-width: 650px) {body main .t4925{margin-top:0rem;}}body main .t4926{width:30%;border:1px none rgba(0,0,0,1);height:3rem;font-size:1rem;background:#00db83;font-family:'Rubik';font-weight:600;border-radius:50rem;}@media screen and (max-width: 650px) {body main .t4926{height:2rem;}}body main .t4927{width:40%;height:80%;display:flex;row-gap:1rem;overflow:scroll;flex-wrap:wrap;column-gap:1rem;grid-auto-flow:row;grid-template-columns:1fr 1fr 1fr 1fr;}@media screen and (max-width: 767px) {body main .t4927{width:50%;}}@media screen and (max-width: 650px) {body main .t4927{width:90%;justify-content:center;}}body main .t4928{width:8rem;height:3rem;display:flex;align-items:center;padding-top:.5rem;padding-left:.5rem;border-radius:3rem;padding-right:.5rem;padding-bottom:.5rem;justify-content:center;}body main .t4929{width:90%;font-size:.8rem;text-align:center;font-family:'Rubik';font-weight:600;}body main .t4930{display:none;}body main .t4931{background:;}body main .t4932{width:100%;height:100dvh;display:flex;overflow:scroll;margin-left:auto;margin-right:auto;flex-direction:column;justify-content:space-between;}@media screen and (max-width: 767px) {body main .t4932{position:relative;}}body main .t4933{padding-top:1rem;padding-left:1rem;padding-right:1rem;}@media screen and (max-width: 767px) {body main .t4933{display:flex;align-items:center;padding-left:.5rem;padding-right:.5rem;flex-direction:column;}}body main .t4934{display:flex;row-gap:1rem;align-items:center;flex-direction:column;justify-content:space-between;}body main .t4935{width:20rem;padding-left:.5rem;border-radius:2rem;margin-bottom:1rem;}body main .t4936{color:rgb(255,255,255);font-family:'Rubik';}@media screen and (max-width: 767px) {body main .t4936{color:rgb(255,255,255);width:100%;font-family:'Rubik';padding-left:.5rem;padding-right:.5rem;}}body main .t4937{display:flex;row-gap:1rem;overflow:scroll;margin-top:1rem;flex-direction:column;}@media screen and (max-width: 767px) {body main .t4937{width:98%;overflow-x:hidden;margin-bottom:2rem;}}body main .t4938{color:rgb(255,255,255);height:4rem;display:grid;position:relative;flex-wrap:wrap;background:#101729;column-gap:1rem;min-height:4rem;align-items:center;font-family:'Rubik';padding-left:1.5rem;border-radius:1rem;justify-items:center;padding-right:1.5rem;grid-auto-flow:row;grid-template-columns:10% 60% 30%;}@media screen and (max-width: 816px) {body main .t4938{padding-left:2rem;padding-right:2rem;}}@media screen and (max-width: 767px) {body main .t4938{position:relative;padding-left:.5rem;padding-right:.5rem;grid-template-columns:10% 55% 35%;}}body main .t4939{width:90%;display:grid;position:absolute;column-gap:1rem;align-items:center;grid-template-columns:10% 65% 25%;}@media screen and (max-width: 816px) {body main .t4939{width:85%;}}@media screen and (max-width: 767px) {body main .t4939{width:95%;display:grid;position:absolute;grid-template-columns:10% 65% 25%;}}@media screen and (max-width: 480px) {body main .t4939{grid-template-columns:3rem 12rem 1fr;}}@media screen and (max-width: 767px) {body main .t4940{display:flex;column-gap:1rem;}}body main .t4941{width:60%;height:3rem;}@media screen and (max-width: 816px) {body main .t4941{width:100%;}}@media screen and (max-width: 767px) {body main .t4942{width:80%;display:flex;margin-left:1rem;flex-direction:column;justify-content:center;}}body main .t4943{font-size:1rem;font-weight:700;}body main .t4944{font-size:.5rem;}body main .t4945{font-size:.75rem;font-weight:400;}body main .t4946{top:0%;left:auto;right:0%;width:10rem;bottom:0%;display:flex;position:absolute;margin-left:auto;margin-right:auto;justify-content:flex-end;}@media screen and (max-width: 767px) {body main .t4946{width:10rem;align-items:center;margin-right:0px;justify-items:end;}}body main .t4947{width:6rem;display:flex;column-gap:.25rem;align-items:center;flex-direction:row;}@media screen and (max-width: 816px) {body main .t4947{margin-left:0px;}}@media screen and (max-width: 767px) {body main .t4947{width:4rem;}}body main .t4948{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4948{font-size:1rem;text-align:left;}}body main .t4949{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4949{height:1rem;}}@media screen and (max-width: 650px) {body main .t4949{width:1.15rem;}}body main .t4950{width:6rem;display:flex;align-items:center;}@media screen and (max-width: 767px) {body main .t4950{width:4rem;}}body main .t4951{display:flex;column-gap:.25rem;align-items:center;}@media screen and (max-width: 816px) {body main .t4951{margin-left:0px;}}body main .t4952{font-size:1.15rem;text-align:right;font-weight:600;}@media screen and (max-width: 767px) {body main .t4952{font-size:1rem;text-align:left;}}body main .t4953{height:1.15rem;}@media screen and (max-width: 767px) {body main .t4953{height:1rem;}}@media screen and (max-width: 650px) {body main .t4953{width:1.15rem;}}body main .t4954{width:2.5rem;cursor:pointer;height:2.5rem;display:flex;background:#ffffff;text-align:center;align-items:center;font-family:'Rubik';font-weight:700;padding-top:.25rem;padding-left:.25rem;border-radius:50%;padding-right:.25rem;padding-bottom:.25rem;justify-content:center;}body main .t4955{color:#0c121f;width:100%;height:100%;display:flex;font-size:1.25rem;align-items:center;justify-content:center;}body main .t4957{display:flex;row-gap:.5rem;flex-direction:column;}