/* ========================================================================== */
/* MAIN STYLESHEET (CONSOLIDATED)                                            */
/* Edit this file directly. Source split files are kept for reference only.  */
/* Static vendor folder assets/css/static.tildacdn.one is intentionally untouched. */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Base / Variables */
/* -------------------------------------------------------------------------- */
:root {
  --site-accent: #eb1414;
  --site-accent-strong: #a7c300;
  --site-on-accent: #0b1220;
  --site-text: #101828;
  --site-text-soft: #344054;
  --site-muted: #667085;
  --site-bg: #1b1919;
  --site-bg-soft: #f6f8fb;
  --site-border: #d0d5dd;
  --site-focus: rgba(235, 20, 20, 0.42);
  --site-radius-sm: 8px;
  --site-radius-md: 12px;
  --site-radius-lg: 20px;
  --site-shadow-sm: 0 6px 20px rgba(16, 24, 40, 0.08);
  --site-shadow-md: 0 16px 42px rgba(16, 24, 40, 0.16);
  --site-space-1: 4px;
  --site-space-2: 8px;
  --site-space-3: 12px;
  --site-space-4: 16px;
  --site-space-6: 24px;
  --site-space-8: 32px;
  --site-font-xs: 0.75rem;
  --site-font-sm: 0.875rem;
  --site-font-md: 1rem;
  --site-font-lg: clamp(1.125rem, 1.02rem + 0.45vw, 1.4rem);
  --site-font-xl: clamp(1.5rem, 1.2rem + 1.1vw, 2.2rem);
  --site-font-2xl: clamp(2rem, 1.5rem + 2.2vw, 3.2rem);
  --site-transition: 220ms ease;
  --site-transition-slow: 340ms ease;
}

/* -------------------------------------------------------------------------- */
/* Base / Reset */
/* -------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  color: var(--site-text);
  background: var(--site-bg);
  line-height: 1.5;
  min-height: 100vh;
}

html,
body,
.t-body,
#allrecords,
.t-records {
  background-color: #1b1919;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: color-mix(
    in srgb,
    var(--site-accent) 50%,
    transparent
  );
  text-underline-offset: 2px;
}

::selection {
  background: color-mix(in srgb, var(--site-accent) 18%, white);
}

/* -------------------------------------------------------------------------- */
/* Base / Typography */
/* -------------------------------------------------------------------------- */
body,
.t-body {
  font-family:
    Manrope, Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--site-text);
  font-size: var(--site-font-md);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--site-text);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin-block: 0 0.5em;
}

h1 {
  font-size: var(--site-font-2xl);
}

h2 {
  font-size: var(--site-font-xl);
}

h3,
h4,
h5,
h6 {
  font-size: var(--site-font-lg);
}

.t-title,
.t-name,
.t-heading {
  color: var(--site-text);
  line-height: 1.2;
}

.t-descr,
.t-text,
.t-paragraph {
  color: var(--site-text-soft);
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* Layout / Global Layout */
/* -------------------------------------------------------------------------- */
#allrecords {
  isolation: isolate;
}

.t-container,
.t-container_100 {
  width: min(1200px, 100%);
}

.t-container {
  padding-inline: clamp(12px, 2vw, 20px);
}

@media (max-width: 639px) {
  .t-container,
  .t-container_100 {
    padding-inline: 12px;
  }
}

/* -------------------------------------------------------------------------- */
/* Components / Buttons */
/* -------------------------------------------------------------------------- */
.t-btn,
.t-btnflex,
.t-submit {
  border: 1px solid transparent;
  background: var(--site-accent);
  color: var(--site-on-accent);
  border-radius: var(--site-radius-md);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background-color var(--site-transition),
    color var(--site-transition),
    border-color var(--site-transition),
    transform var(--site-transition),
    box-shadow var(--site-transition),
    opacity var(--site-transition);
}

.t-btn:hover,
.t-btnflex:hover,
.t-submit:hover {
  background: var(--site-accent-strong);
  transform: translateY(-1px);
  box-shadow: var(--site-shadow-sm);
}

.t-btn:active,
.t-btnflex:active,
.t-submit:active {
  transform: translateY(0);
}

.t-btn:focus-visible,
.t-btnflex:focus-visible,
.t-submit:focus-visible {
  outline: 2px solid var(--site-focus);
  outline-offset: 2px;
}

.t-btn[disabled],
.t-btnflex[disabled],
.t-submit[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* Components / Forms */
/* -------------------------------------------------------------------------- */
.t-input,
.t-input-title,
textarea.t-input {
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-sm);
  font-size: var(--site-font-sm);
  transition:
    border-color var(--site-transition),
    box-shadow var(--site-transition),
    background-color var(--site-transition);
}

.t-input,
textarea.t-input {
  background: var(--site-bg-soft);
  color: var(--site-text);
  padding-inline: var(--site-space-3);
}

.t-form__submit .t-btn,
.t-submit {
  border-radius: var(--site-radius-md);
}

.t-input::placeholder,
textarea.t-input::placeholder {
  color: var(--site-muted);
}

.t-input:focus,
textarea.t-input:focus {
  background: #fff;
  border-color: var(--site-accent);
  box-shadow: 0 0 0 3px var(--site-focus);
}

/* -------------------------------------------------------------------------- */
/* Components / Header */
/* -------------------------------------------------------------------------- */
/* Desktop top navigation links */
.tn-atom[href="/aboutus.html"],
.tn-atom[href="/courses.html"],
.tn-atom[href="/team.html"] {
  color: var(--site-text);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    color var(--site-transition),
    opacity var(--site-transition);
}

.tn-atom[href="/aboutus.html"]:hover,
.tn-atom[href="/courses.html"]:hover,
.tn-atom[href="/team.html"]:hover {
  color: var(--site-accent);
}

/* Training CTA in top menu */
.tn-atom[href="#exoraform"] {
  border-radius: var(--site-radius-md);
  box-shadow: var(--site-shadow-sm);
}

/* Mobile menu links */
.t450__menu .t-menu__link-item {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--site-transition);
}

.t450__menu .t-menu__link-item:hover {
  color: #eb1414;
}

/* -------------------------------------------------------------------------- */
/* Components / Hero */
/* -------------------------------------------------------------------------- */
/* Hero message block */
.t-rec[data-record-type="635"] .t635__textholder {
  max-width: 48ch;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.t-rec[data-record-type="635"] .t635__typing-text {
  font-weight: 700;
}

.t-rec[data-record-type="635"] .typed-cursor {
  animation: none;
  -webkit-animation: none;
  opacity: 1;
}

@keyframes heroCursorBlink {
  0%,
  48% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Components / Cards */
/* -------------------------------------------------------------------------- */
/* Surface style for popup cards and modal containers */
.t1093 .t-popup__container,
.t-popup__container {
  border-radius: var(--site-radius-lg);
  box-shadow: var(--site-shadow-md);
}

/* Slightly smoother overlay transitions */
.t-popup__bg {
  transition: opacity var(--site-transition-slow);
}

/* Soft section rhythm for dense T396 pages */
.t-rec[data-record-type="396"] {
  scroll-margin-top: 80px;
}

/* -------------------------------------------------------------------------- */
/* Components / Footer */
/* -------------------------------------------------------------------------- */
/* Footer social links */
.t-sociallinks__wrapper {
  gap: var(--site-space-2);
}

.t-sociallinks__item a {
  border-radius: 999px;
  transition:
    transform var(--site-transition),
    opacity var(--site-transition);
}

.t-sociallinks__item a:hover {
  transform: translateY(-2px);
}

.t-sociallinks__svg {
  transition: filter var(--site-transition);
}

.t-sociallinks__item a:hover .t-sociallinks__svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* -------------------------------------------------------------------------- */
/* Components / Cookie */
/* -------------------------------------------------------------------------- */
#rec1063362721 .t972__banner,
#rec1063362721 .t972__settings {
  background: #fff;
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow-md);
  border-radius: var(--site-radius-lg);
}

#rec1063362721 .t972__settings {
  backdrop-filter: blur(8px);
}

#rec1063362721 .t972__accept-btn,
#rec1063362721 .t972__confirm-btn {
  border-radius: var(--site-radius-md);
}

/* -------------------------------------------------------------------------- */
/* Utilities / Helpers */
/* -------------------------------------------------------------------------- */
.is-hidden {
  display: none !important;
}

.u-muted {
  color: var(--site-muted) !important;
}

.u-accent {
  color: var(--site-accent) !important;
}

.u-center {
  text-align: center !important;
}

.u-shadow-sm {
  box-shadow: var(--site-shadow-sm) !important;
}

.u-shadow-md {
  box-shadow: var(--site-shadow-md) !important;
}

/* Team cards carousel: disable scrolling completely. */
#rec1033875646 .t396__artboard {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Team page carousels: disable scrolling completely. */
#rec1108212246 .t396__artboard,
#rec1108877711 .t396__artboard,
#rec1108893006 .t396__artboard,
#rec1108906566 .t396__artboard,
#rec1108914946 .t396__artboard,
#rec1108922016 .t396__artboard,
#rec1208442226 .t396__artboard {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#rec1108212246 .t396__artboard::-webkit-scrollbar,
#rec1108877711 .t396__artboard::-webkit-scrollbar,
#rec1108893006 .t396__artboard::-webkit-scrollbar,
#rec1108906566 .t396__artboard::-webkit-scrollbar,
#rec1108914946 .t396__artboard::-webkit-scrollbar,
#rec1108922016 .t396__artboard::-webkit-scrollbar,
#rec1208442226 .t396__artboard::-webkit-scrollbar {
  display: none;
}

/* Keep Tilda background icons visually centered in their frames. */
.tn-atom.t-bgimg {
  background-position: center center;
  background-repeat: no-repeat;
}

/* Home cards: keep Team program icon centered inside its frame. */
#rec1038917196 [data-elem-id="1747306970522"] .tn-atom {
  background-position: center center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

/* Home cards: center top icons by positioning wrapper blocks, not bg image. */
#rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
  left: calc(50% - 600px + 442px) !important;
}

#rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
  left: calc(50% - 600px + 709px) !important;
}

#rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
  left: calc(50% - 600px + 976px) !important;
}

@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: calc(50% - 480px + 335px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: calc(50% - 480px + 577px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: calc(50% - 480px + 818px) !important;
  }
}

@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: calc(50% - 320px + 459px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: calc(50% - 320px + 131px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: calc(50% - 320px + 458px) !important;
  }
}

@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: calc(50% - 240px + 337px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: calc(50% - 240px + 94px) !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: calc(50% - 240px + 337px) !important;
  }
}

@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    left: 139px !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    left: 139px !important;
  }

  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    left: 139px !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Pages / Home */
/* -------------------------------------------------------------------------- */
/* Home page overrides */
[data-tilda-page-id="68897175"] {
  --page-name: home;
  --site-accent: #0f766e;
  --site-accent-strong: #115e59;
}

[data-tilda-page-id="68897175"] .t-btn,
[data-tilda-page-id="68897175"] .t-submit {
  will-change: transform;
}

/* -------------------------------------------------------------------------- */
/* Pages / Aboutus */
/* -------------------------------------------------------------------------- */
/* About us page overrides */
[data-tilda-page-id="69863049"] {
  --page-name: aboutus;
  --site-accent: #b54708;
  --site-accent-strong: #93370d;
}

/* -------------------------------------------------------------------------- */
/* Pages / Courses */
/* -------------------------------------------------------------------------- */
/* Courses page overrides */
[data-tilda-page-id="71039735"] {
  --page-name: courses;
  --site-accent: #175cd3;
  --site-accent-strong: #1849a9;
}

/* -------------------------------------------------------------------------- */
/* Pages / Team */
/* -------------------------------------------------------------------------- */
/* Team page overrides */
[data-tilda-page-id="70764275"] {
  --page-name: team;
  --site-accent: #c11574;
  --site-accent-strong: #9f165f;
}

/* ========================================================================== */
/* INLINE CSS BUNDLE (FROM assets/inline/css)                                 */
/* Consolidated into main.css to keep a single editable stylesheet.           */
/* ========================================================================== */

/* ---- assets/inline/css/index-13f9cedb3dc1.css ---- */
.t396 .t-animate[data-animate-style="fadein"],
.t396 .t-animate[data-animate-style="fadeinup"],
.t396 .t-animate[data-animate-style="fadeindown"],
.t396 .t-animate[data-animate-style="fadeinleft"],
.t396 .t-animate[data-animate-style="fadeinright"],
.t396 .t-animate[data-animate-style="zoomin"],
.t396 .t-animate[data-animate-style="zoomout"] {
  opacity: 0;
  -webkit-transition-property: opacity, transform;
  transition-property: opacity, transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .t396 .t-animate[data-animate-style-res-960="fadein"],
  .t396 .t-animate[data-animate-style-res-960="fadeinup"],
  .t396 .t-animate[data-animate-style-res-960="fadeindown"],
  .t396 .t-animate[data-animate-style-res-960="fadeinleft"],
  .t396 .t-animate[data-animate-style-res-960="fadeinright"],
  .t396 .t-animate[data-animate-style-res-960="zoomin"],
  .t396 .t-animate[data-animate-style-res-960="zoomout"] {
    opacity: 0;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  .t396 .t-animate[data-animate-style-res-640="fadein"],
  .t396 .t-animate[data-animate-style-res-640="fadeinup"],
  .t396 .t-animate[data-animate-style-res-640="fadeindown"],
  .t396 .t-animate[data-animate-style-res-640="fadeinleft"],
  .t396 .t-animate[data-animate-style-res-640="fadeinright"],
  .t396 .t-animate[data-animate-style-res-640="zoomin"],
  .t396 .t-animate[data-animate-style-res-640="zoomout"] {
    opacity: 0;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  .t396 .t-animate[data-animate-style-res-480="fadein"],
  .t396 .t-animate[data-animate-style-res-480="fadeinup"],
  .t396 .t-animate[data-animate-style-res-480="fadeindown"],
  .t396 .t-animate[data-animate-style-res-480="fadeinleft"],
  .t396 .t-animate[data-animate-style-res-480="fadeinright"],
  .t396 .t-animate[data-animate-style-res-480="zoomin"],
  .t396 .t-animate[data-animate-style-res-480="zoomout"] {
    opacity: 0;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media screen and (max-width: 479px) {
  .t396 .t-animate[data-animate-style-res-320="fadein"],
  .t396 .t-animate[data-animate-style-res-320="fadeinup"],
  .t396 .t-animate[data-animate-style-res-320="fadeindown"],
  .t396 .t-animate[data-animate-style-res-320="fadeinleft"],
  .t396 .t-animate[data-animate-style-res-320="fadeinright"],
  .t396 .t-animate[data-animate-style-res-320="zoomin"],
  .t396 .t-animate[data-animate-style-res-320="zoomout"] {
    opacity: 0;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.t396 .t-title.t-animate {
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
.t396 .t-descr.t-animate,
.t396 .t-uptitle.t-animate,
.t396 .t-subtitle.t-animate,
.t396 .t-text.t-animate {
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
}
.t396 .t-item.t-animate {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.t396 .t-animate[data-animate-style="fadein"] {
  opacity: 0;
  transform: none;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="fadein"] {
    opacity: 0;
    transform: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="fadein"] {
    opacity: 0;
    transform: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="fadein"] {
    opacity: 0;
    transform: none;
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="fadein"] {
    opacity: 0;
    transform: none;
  }
}
.t396 .t-animate_started[data-animate-style="fadein"] {
  opacity: 1;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadein"] {
    opacity: 1;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadein"] {
    opacity: 1;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadein"] {
    opacity: 1;
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadein"] {
    opacity: 1;
  }
}
.t396 .t-animate[data-animate-style="fadeinup"] {
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="fadeinup"] {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="fadeinup"] {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="fadeinup"] {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="fadeinup"] {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
  }
}
.t396 .t-animate_started[data-animate-style="fadeinup"] {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-960="fadeinup"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-640="fadeinup"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-480="fadeinup"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-320="fadeinup"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.t396 .t-animate[data-animate-style="fadeindown"] {
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="fadeindown"] {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="fadeindown"] {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="fadeindown"] {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="fadeindown"] {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
  }
}
.t396 .t-animate_started[data-animate-style="fadeindown"] {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-960="fadeindown"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-640="fadeindown"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-480="fadeindown"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 479px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-320="fadeindown"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.t396 .t-animate[data-animate-style="fadeinleft"] {
  -webkit-transform: translate(100px, 0);
  transform: translate(100px, 0);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="fadeinleft"] {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="fadeinleft"] {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="fadeinleft"] {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="fadeinleft"] {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
  }
}
.t396 .t-animate_started[data-animate-style="fadeinleft"] {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-960="fadeinleft"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-640="fadeinleft"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-480="fadeinleft"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 479px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-320="fadeinleft"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.t396 .t-animate[data-animate-style="fadeinright"] {
  -webkit-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="fadeinright"] {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="fadeinright"] {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="fadeinright"] {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="fadeinright"] {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
  }
}
.t396 .t-animate_started[data-animate-style="fadeinright"] {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-960="fadeinright"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-640="fadeinright"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-480="fadeinright"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 479px) {
  #allrecords
    .t396
    .t-animate_started[data-animate-style-res-320="fadeinright"] {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.t396 .t-animate[data-animate-style="zoomin"] {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="zoomin"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="zoomin"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="zoomin"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="zoomin"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.t396 .t-animate_started[data-animate-style="zoomin"] {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-960="zoomin"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-640="zoomin"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-480="zoomin"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-320="zoomin"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.t396 .t-animate[data-animate-style="zoomout"] {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate[data-animate-style-res-960="zoomout"] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate[data-animate-style-res-640="zoomout"] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate[data-animate-style-res-480="zoomout"] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate[data-animate-style-res-320="zoomout"] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.t396 .t-animate_started[data-animate-style="zoomout"] {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-960="zoomout"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-640="zoomout"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-480="zoomout"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate_started[data-animate-style-res-320="zoomout"] {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.t396 .t-animate_started[data-animate-distance],
.t396 .t-animate_started[data-animate-scale] {
  -webkit-transform: none !important;
  transform: none !important;
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  #allrecords .t396 .t-animate_started[data-animate-distance-res-960],
  #allrecords .t396 .t-animate_started[data-animate-style-res-960="zoomout"] {
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  #allrecords .t396 .t-animate_started[data-animate-distance-res-640],
  #allrecords .t396 .t-animate_started[data-animate-style-res-640="zoomout"] {
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
  #allrecords .t396 .t-animate_started[data-animate-distance-res-480],
  #allrecords .t396 .t-animate_started[data-animate-style-res-480="zoomout"] {
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@media screen and (max-width: 479px) {
  #allrecords .t396 .t-animate_started[data-animate-distance-res-320],
  #allrecords .t396 .t-animate_started[data-animate-style-res-320="zoomout"] {
    -webkit-transform: none !important;
    transform: none !important;
  }
}

/* ---- assets/inline/css/index-342f063711dc.css ---- */
.t-sbs-anim_started #sbs-1028026896-1748255447993 {
  animation: sbs-1028026896-1748255447993 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1028026896-1748255447993 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(30px);
  }
}

.t-sbs-anim_started #sbs-1123735461-1748015917462 {
  animation: sbs-1123735461-1748015917462 11s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1123735461-1748015917462 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  9.09% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

.t-sbs-anim_started #sbs-1086334411-1747900790020 {
  animation: sbs-1086334411-1747900790020 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1086334411-1747900790020 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(4px);
  }
}

#rec1086334411
  [data-elem-id="1747900790020"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051508891-1748342790658 {
  animation: sbs-1051508891-1748342790658 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051508891-1748342790658 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(4px);
  }
}

#rec1051508891
  [data-elem-id="1748342790658"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1031581486-1747900997963 {
  animation: sbs-1031581486-1747900997963 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1031581486-1747900997963 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(5px);
  }
}

#rec1031581486
  [data-elem-id="1747900997963"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1751471251679 {
  animation: sbs-1190205346-1751471251679 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1751471251679 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190205346
  [data-elem-id="1751471251679"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1753683748511 {
  animation: sbs-1190205346-1753683748511 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1753683748511 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190205346
  [data-elem-id="1753683748511"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1751471178376 {
  animation: sbs-1190205346-1751471178376 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1751471178376 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190205346
  [data-elem-id="1751471178376"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1753682380625 {
  animation: sbs-1190205346-1753682380625 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1753682380625 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190205346
  [data-elem-id="1753682380625"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1751471010583 {
  animation: sbs-1190205346-1751471010583 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1751471010583 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190205346
  [data-elem-id="1751471010583"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1753682559755 {
  animation: sbs-1190205346-1753682559755 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1753682559755 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190205346
  [data-elem-id="1753682559755"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1751470912287 {
  animation: sbs-1190205346-1751470912287 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1751470912287 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190205346
  [data-elem-id="1751470912287"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1753682339259 {
  animation: sbs-1190205346-1753682339259 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1753682339259 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190205346
  [data-elem-id="1753682339259"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1753682816755 {
  animation: sbs-1190205346-1753682816755 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1753682816755 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190205346
  [data-elem-id="1753682816755"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190205346-1751470317581 {
  animation: sbs-1190205346-1751470317581 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190205346-1751470317581 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190205346
  [data-elem-id="1751470317581"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1124518471-1747843115036 {
  animation: sbs-1124518471-1747843115036 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124518471-1747843115036 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1124518471
  [data-elem-id="1747843115036"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1124518471-1747899376007 {
  animation: sbs-1124518471-1747899376007 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124518471-1747899376007 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1124518471
  [data-elem-id="1747899376007"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1124518471-1747899501429 {
  animation: sbs-1124518471-1747899501429 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124518471-1747899501429 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1124518471
  [data-elem-id="1747899501429"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1124518471-1751014255987 {
  animation: sbs-1124518471-1751014255987 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124518471-1751014255987 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1124518471
  [data-elem-id="1751014255987"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1124518471-1747899420191 {
  animation: sbs-1124518471-1747899420191 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124518471-1747899420191 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1124518471
  [data-elem-id="1747899420191"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1124518471-1747899484196 {
  animation: sbs-1124518471-1747899484196 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124518471-1747899484196 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1124518471
  [data-elem-id="1747899484196"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1748004070358 {
  animation: sbs-1051896271-1748004070358 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1748004070358 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1051896271
  [data-elem-id="1748004070358"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1748004070375 {
  animation: sbs-1051896271-1748004070375 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1748004070375 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1051896271
  [data-elem-id="1748004070375"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1748004070371 {
  animation: sbs-1051896271-1748004070371 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1748004070371 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1051896271
  [data-elem-id="1748004070371"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1748004070367 {
  animation: sbs-1051896271-1748004070367 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1748004070367 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1051896271
  [data-elem-id="1748004070367"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1751014881461 {
  animation: sbs-1051896271-1751014881461 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1751014881461 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1051896271
  [data-elem-id="1751014881461"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1748004070362 {
  animation: sbs-1051896271-1748004070362 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1748004070362 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1051896271
  [data-elem-id="1748004070362"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1051896271-1748004070451 {
  animation: sbs-1051896271-1748004070451 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1051896271-1748004070451 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.78, 0.78);
  }
}

#rec1051896271
  [data-elem-id="1748004070451"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/* ---- assets/inline/css/index-cba16429953f.css ---- */
.t-input-group.js-error-control-box .t-input-phonemask {
  border: 0 !important;
}
.t-input_pvis.t-input-phonemask__wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.t-input-phonemask__wrap {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
.t-input .t-input-phonemask,
.t-input-phonemask {
  height: auto;
  padding: 0;
  background-color: transparent;
}
.t-input-phonemask__options-wrap {
  display: none;
  z-index: 99999999;
  position: fixed;
  min-width: 410px;
  max-height: 200px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
}
.t-input-phonemask__options-wrap.t-input-phonemask__options-wrap_open {
  display: block;
}
.t-input-phonemask__options-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 8px 10px;
  font-family: sans-serif;
  font-size: 14px;
  color: #000 !important;
  cursor: pointer;
}
.t-input-phonemask__options-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.t-input-phonemask__options-item.t-input-phonemask__options-item_chosen,
.t-input-phonemask__options-item:hover {
  background-color: #eee;
}
.t-input-phonemask__select {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 5px;
  margin-left: 0;
  font-size: 16px;
  cursor: pointer;
}
.t-input-phonemask__select-triangle {
  position: relative;
  margin-left: 6px;
  border-style: solid;
  border-width: 5px 4px 0;
  border-color: #9a9a9a transparent transparent;
}
.t-input-phonemask__select-code {
  white-space: nowrap;
}
.t-input-phonemask__options-code,
.t-input-phonemask__select-code {
  margin-left: 10px;
}
.t-input-phonemask__options-flag,
.t-input-phonemask__select-flag {
  width: 18px;
  min-width: 18px;
  height: 13px;
  background-color: #c5c5c5;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.t-input-phonemask__options-flag {
  margin-left: 8px;
}
.t-input-phonemask__options-wrap::-webkit-scrollbar {
  width: 8px;
  height: 15px;
}
.t-input-phonemask__options-wrap::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #c2c9d2;
}
@media screen and (max-width: 640px) {
  .t-input-phonemask__options-wrap {
    min-width: auto;
  }
}
.t-input-phonemask__options-flag,
.t-input-phonemask__select-flag {
  background-image: url(assets/img/icons/flags7.png);
  background-repeat: no-repeat;
  display: inline-block;
}
.t-input-phonemask__options-flag_np,
.t-input-phonemask__select-flag[data-phonemask-flag="np"] {
  width: 16px;
  min-width: 16px;
}
.t-input-phonemask__options-flag_ad,
.t-input-phonemask__select-flag[data-phonemask-flag="ad"] {
  background-position: -5px -5px;
}
.t-input-phonemask__options-flag_ae,
.t-input-phonemask__select-flag[data-phonemask-flag="ae"] {
  background-position: -33px -5px;
}
.t-input-phonemask__options-flag_af,
.t-input-phonemask__select-flag[data-phonemask-flag="af"] {
  background-position: -61px -5px;
}
.t-input-phonemask__options-flag_ag,
.t-input-phonemask__select-flag[data-phonemask-flag="ag"] {
  background-position: -89px -5px;
}
.t-input-phonemask__options-flag_al,
.t-input-phonemask__select-flag[data-phonemask-flag="al"] {
  background-position: -117px -5px;
}
.t-input-phonemask__options-flag_am,
.t-input-phonemask__select-flag[data-phonemask-flag="am"] {
  background-position: -145px -5px;
}
.t-input-phonemask__options-flag_ao,
.t-input-phonemask__select-flag[data-phonemask-flag="ao"] {
  background-position: -173px -5px;
}
.t-input-phonemask__options-flag_ar,
.t-input-phonemask__select-flag[data-phonemask-flag="ar"] {
  background-position: -201px -5px;
}
.t-input-phonemask__options-flag_at,
.t-input-phonemask__select-flag[data-phonemask-flag="at"] {
  background-position: -229px -5px;
}
.t-input-phonemask__options-flag_au,
.t-input-phonemask__select-flag[data-phonemask-flag="au"] {
  background-position: -257px -5px;
}
.t-input-phonemask__options-flag_az,
.t-input-phonemask__select-flag[data-phonemask-flag="az"] {
  background-position: -285px -5px;
}
.t-input-phonemask__options-flag_ba,
.t-input-phonemask__select-flag[data-phonemask-flag="ba"] {
  background-position: -313px -5px;
}
.t-input-phonemask__options-flag_bb,
.t-input-phonemask__select-flag[data-phonemask-flag="bb"] {
  background-position: -5px -28px;
}
.t-input-phonemask__options-flag_bd,
.t-input-phonemask__select-flag[data-phonemask-flag="bd"] {
  background-position: -33px -28px;
}
.t-input-phonemask__options-flag_be,
.t-input-phonemask__select-flag[data-phonemask-flag="be"] {
  background-position: -61px -28px;
}
.t-input-phonemask__options-flag_bf,
.t-input-phonemask__select-flag[data-phonemask-flag="bf"] {
  background-position: -89px -28px;
}
.t-input-phonemask__options-flag_bg,
.t-input-phonemask__select-flag[data-phonemask-flag="bg"] {
  background-position: -117px -28px;
}
.t-input-phonemask__options-flag_bh,
.t-input-phonemask__select-flag[data-phonemask-flag="bh"] {
  background-position: -145px -28px;
}
.t-input-phonemask__options-flag_bi,
.t-input-phonemask__select-flag[data-phonemask-flag="bi"] {
  background-position: -173px -28px;
}
.t-input-phonemask__options-flag_bj,
.t-input-phonemask__select-flag[data-phonemask-flag="bj"] {
  background-position: -201px -28px;
}
.t-input-phonemask__options-flag_bm,
.t-input-phonemask__select-flag[data-phonemask-flag="bm"] {
  background-position: -229px -28px;
}
.t-input-phonemask__options-flag_bn,
.t-input-phonemask__select-flag[data-phonemask-flag="bn"] {
  background-position: -257px -28px;
}
.t-input-phonemask__options-flag_bo,
.t-input-phonemask__select-flag[data-phonemask-flag="bo"] {
  background-position: -285px -28px;
}
.t-input-phonemask__options-flag_bq,
.t-input-phonemask__select-flag[data-phonemask-flag="bq"] {
  background-position: -89px -258px;
}
.t-input-phonemask__options-flag_br,
.t-input-phonemask__select-flag[data-phonemask-flag="br"] {
  background-position: -313px -28px;
}
.t-input-phonemask__options-flag_bs,
.t-input-phonemask__select-flag[data-phonemask-flag="bs"] {
  background-position: -5px -51px;
}
.t-input-phonemask__options-flag_bt,
.t-input-phonemask__select-flag[data-phonemask-flag="bt"] {
  background-position: -33px -51px;
}
.t-input-phonemask__options-flag_bw,
.t-input-phonemask__select-flag[data-phonemask-flag="bw"] {
  background-position: -61px -51px;
}
.t-input-phonemask__options-flag_by,
.t-input-phonemask__select-flag[data-phonemask-flag="by"] {
  background-position: -89px -51px;
}
.t-input-phonemask__options-flag_bz,
.t-input-phonemask__select-flag[data-phonemask-flag="bz"] {
  background-position: -117px -51px;
}
.t-input-phonemask__options-flag_ca,
.t-input-phonemask__select-flag[data-phonemask-flag="ca"] {
  background-position: -145px -51px;
}
.t-input-phonemask__options-flag_ky,
.t-input-phonemask__select-flag[data-phonemask-flag="ky"] {
  background-position: -367px -28px;
}
.t-input-phonemask__options-flag_cd,
.t-input-phonemask__select-flag[data-phonemask-flag="cd"] {
  background-position: -173px -51px;
}
.t-input-phonemask__options-flag_cf,
.t-input-phonemask__select-flag[data-phonemask-flag="cf"] {
  background-position: -201px -51px;
}
.t-input-phonemask__options-flag_cg,
.t-input-phonemask__select-flag[data-phonemask-flag="cg"] {
  background-position: -229px -51px;
}
.t-input-phonemask__options-flag_ch,
.t-input-phonemask__select-flag[data-phonemask-flag="ch"] {
  background-position: -257px -51px;
}
.t-input-phonemask__options-flag_ci,
.t-input-phonemask__select-flag[data-phonemask-flag="ci"] {
  background-position: -285px -51px;
}
.t-input-phonemask__options-flag_ck,
.t-input-phonemask__select-flag[data-phonemask-flag="ck"] {
  background-position: -313px -51px;
}
.t-input-phonemask__options-flag_cl,
.t-input-phonemask__select-flag[data-phonemask-flag="cl"] {
  background-position: -5px -74px;
}
.t-input-phonemask__options-flag_cm,
.t-input-phonemask__select-flag[data-phonemask-flag="cm"] {
  background-position: -33px -74px;
}
.t-input-phonemask__options-flag_cn,
.t-input-phonemask__select-flag[data-phonemask-flag="cn"] {
  background-position: -61px -74px;
}
.t-input-phonemask__options-flag_co,
.t-input-phonemask__select-flag[data-phonemask-flag="co"] {
  background-position: -89px -74px;
}
.t-input-phonemask__options-flag_cr,
.t-input-phonemask__select-flag[data-phonemask-flag="cr"] {
  background-position: -117px -74px;
}
.t-input-phonemask__options-flag_cu,
.t-input-phonemask__select-flag[data-phonemask-flag="cu"] {
  background-position: -145px -74px;
}
.t-input-phonemask__options-flag_cv,
.t-input-phonemask__select-flag[data-phonemask-flag="cv"] {
  background-position: -173px -74px;
}
.t-input-phonemask__options-flag_cz,
.t-input-phonemask__select-flag[data-phonemask-flag="cz"] {
  background-position: -229px -74px;
}
.t-input-phonemask__options-flag_cy,
.t-input-phonemask__select-flag[data-phonemask-flag="cy"] {
  background-position: -201px -74px;
}
.t-input-phonemask__options-flag_de,
.t-input-phonemask__select-flag[data-phonemask-flag="de"] {
  background-position: -257px -74px;
}
.t-input-phonemask__options-flag_dj,
.t-input-phonemask__select-flag[data-phonemask-flag="dj"] {
  background-position: -285px -74px;
}
.t-input-phonemask__options-flag_dk,
.t-input-phonemask__select-flag[data-phonemask-flag="dk"] {
  background-position: -313px -74px;
}
.t-input-phonemask__options-flag_dm,
.t-input-phonemask__select-flag[data-phonemask-flag="dm"] {
  background-position: -5px -97px;
}
.t-input-phonemask__options-flag_do,
.t-input-phonemask__select-flag[data-phonemask-flag="do"] {
  background-position: -33px -97px;
}
.t-input-phonemask__options-flag_dz,
.t-input-phonemask__select-flag[data-phonemask-flag="dz"] {
  background-position: -61px -97px;
}
.t-input-phonemask__options-flag_ec,
.t-input-phonemask__select-flag[data-phonemask-flag="ec"] {
  background-position: -89px -97px;
}
.t-input-phonemask__options-flag_ee,
.t-input-phonemask__select-flag[data-phonemask-flag="ee"] {
  background-position: -117px -97px;
}
.t-input-phonemask__options-flag_eg,
.t-input-phonemask__select-flag[data-phonemask-flag="eg"] {
  background-position: -145px -97px;
}
.t-input-phonemask__options-flag_eh,
.t-input-phonemask__select-flag[data-phonemask-flag="eh"] {
  background-position: -173px -97px;
}
.t-input-phonemask__options-flag_er,
.t-input-phonemask__select-flag[data-phonemask-flag="er"] {
  background-position: -201px -97px;
}
.t-input-phonemask__options-flag_es,
.t-input-phonemask__select-flag[data-phonemask-flag="es"] {
  background-position: -229px -97px;
}
.t-input-phonemask__options-flag_et,
.t-input-phonemask__select-flag[data-phonemask-flag="et"] {
  background-position: -257px -97px;
}
.t-input-phonemask__options-flag_fi,
.t-input-phonemask__select-flag[data-phonemask-flag="fi"] {
  background-position: -285px -97px;
}
.t-input-phonemask__options-flag_fj,
.t-input-phonemask__select-flag[data-phonemask-flag="fj"] {
  background-position: -313px -97px;
}
.t-input-phonemask__options-flag_fm,
.t-input-phonemask__select-flag[data-phonemask-flag="fm"] {
  background-position: -5px -120px;
}
.t-input-phonemask__options-flag_fr,
.t-input-phonemask__select-flag[data-phonemask-flag="fr"] {
  background-position: -33px -120px;
}
.t-input-phonemask__options-flag_ga,
.t-input-phonemask__select-flag[data-phonemask-flag="ga"] {
  background-position: -61px -120px;
}
.t-input-phonemask__options-flag_gb,
.t-input-phonemask__select-flag[data-phonemask-flag="gb"] {
  background-position: -89px -120px;
}
.t-input-phonemask__options-flag_gd,
.t-input-phonemask__select-flag[data-phonemask-flag="gd"] {
  background-position: -117px -120px;
}
.t-input-phonemask__options-flag_ge,
.t-input-phonemask__select-flag[data-phonemask-flag="ge"] {
  background-position: -145px -120px;
}
.t-input-phonemask__options-flag_gh,
.t-input-phonemask__select-flag[data-phonemask-flag="gh"] {
  background-position: -173px -120px;
}
.t-input-phonemask__options-flag_gm,
.t-input-phonemask__select-flag[data-phonemask-flag="gm"] {
  background-position: -201px -120px;
}
.t-input-phonemask__options-flag_gn,
.t-input-phonemask__select-flag[data-phonemask-flag="gn"] {
  background-position: -229px -120px;
}
.t-input-phonemask__options-flag_gq,
.t-input-phonemask__select-flag[data-phonemask-flag="gq"] {
  background-position: -257px -120px;
}
.t-input-phonemask__options-flag_gr,
.t-input-phonemask__select-flag[data-phonemask-flag="gr"] {
  background-position: -285px -120px;
}
.t-input-phonemask__options-flag_gt,
.t-input-phonemask__select-flag[data-phonemask-flag="gt"] {
  background-position: -313px -120px;
}
.t-input-phonemask__options-flag_gw,
.t-input-phonemask__select-flag[data-phonemask-flag="gw"] {
  background-position: -5px -143px;
}
.t-input-phonemask__options-flag_gy,
.t-input-phonemask__select-flag[data-phonemask-flag="gy"] {
  background-position: -33px -143px;
}
.t-input-phonemask__options-flag_hk,
.t-input-phonemask__select-flag[data-phonemask-flag="hk"] {
  background-position: -61px -143px;
}
.t-input-phonemask__options-flag_hn,
.t-input-phonemask__select-flag[data-phonemask-flag="hn"] {
  background-position: -89px -143px;
}
.t-input-phonemask__options-flag_hr,
.t-input-phonemask__select-flag[data-phonemask-flag="hr"] {
  background-position: -117px -143px;
}
.t-input-phonemask__options-flag_ht,
.t-input-phonemask__select-flag[data-phonemask-flag="ht"] {
  background-position: -145px -143px;
}
.t-input-phonemask__options-flag_hu,
.t-input-phonemask__select-flag[data-phonemask-flag="hu"] {
  background-position: -173px -143px;
}
.t-input-phonemask__options-flag_id,
.t-input-phonemask__select-flag[data-phonemask-flag="id"] {
  background-position: -201px -143px;
}
.t-input-phonemask__options-flag_ie,
.t-input-phonemask__select-flag[data-phonemask-flag="ie"] {
  background-position: -229px -143px;
}
.t-input-phonemask__options-flag_il,
.t-input-phonemask__select-flag[data-phonemask-flag="il"] {
  background-position: -257px -143px;
}
.t-input-phonemask__options-flag_in,
.t-input-phonemask__select-flag[data-phonemask-flag="in"] {
  background-position: -285px -143px;
}
.t-input-phonemask__options-flag_iq,
.t-input-phonemask__select-flag[data-phonemask-flag="iq"] {
  background-position: -313px -143px;
}
.t-input-phonemask__options-flag_ir,
.t-input-phonemask__select-flag[data-phonemask-flag="ir"] {
  background-position: -5px -166px;
}
.t-input-phonemask__options-flag_is,
.t-input-phonemask__select-flag[data-phonemask-flag="is"] {
  background-position: -33px -166px;
}
.t-input-phonemask__options-flag_it,
.t-input-phonemask__select-flag[data-phonemask-flag="it"] {
  background-position: -61px -166px;
}
.t-input-phonemask__options-flag_jm,
.t-input-phonemask__select-flag[data-phonemask-flag="jm"] {
  background-position: -89px -166px;
}
.t-input-phonemask__options-flag_jo,
.t-input-phonemask__select-flag[data-phonemask-flag="jo"] {
  background-position: -117px -166px;
}
.t-input-phonemask__options-flag_jp,
.t-input-phonemask__select-flag[data-phonemask-flag="jp"] {
  background-position: -145px -166px;
}
.t-input-phonemask__options-flag_ke,
.t-input-phonemask__select-flag[data-phonemask-flag="ke"] {
  background-position: -173px -166px;
}
.t-input-phonemask__options-flag_kg,
.t-input-phonemask__select-flag[data-phonemask-flag="kg"] {
  background-position: -201px -166px;
}
.t-input-phonemask__options-flag_kh,
.t-input-phonemask__select-flag[data-phonemask-flag="kh"] {
  background-position: -229px -166px;
}
.t-input-phonemask__options-flag_ki,
.t-input-phonemask__select-flag[data-phonemask-flag="ki"] {
  background-position: -257px -166px;
}
.t-input-phonemask__options-flag_km,
.t-input-phonemask__select-flag[data-phonemask-flag="km"] {
  background-position: -285px -166px;
}
.t-input-phonemask__options-flag_kn,
.t-input-phonemask__select-flag[data-phonemask-flag="kn"] {
  background-position: -313px -166px;
}
.t-input-phonemask__options-flag_kp,
.t-input-phonemask__select-flag[data-phonemask-flag="kp"] {
  background-position: -5px -189px;
}
.t-input-phonemask__options-flag_kr,
.t-input-phonemask__select-flag[data-phonemask-flag="kr"] {
  background-position: -33px -189px;
}
.t-input-phonemask__options-flag_ks,
.t-input-phonemask__select-flag[data-phonemask-flag="ks"] {
  background-position: -61px -189px;
}
.t-input-phonemask__options-flag_kw,
.t-input-phonemask__select-flag[data-phonemask-flag="kw"] {
  background-position: -89px -189px;
}
.t-input-phonemask__options-flag_kz,
.t-input-phonemask__select-flag[data-phonemask-flag="kz"] {
  background-position: -117px -189px;
}
.t-input-phonemask__options-flag_la,
.t-input-phonemask__select-flag[data-phonemask-flag="la"] {
  background-position: -145px -189px;
}
.t-input-phonemask__options-flag_lb,
.t-input-phonemask__select-flag[data-phonemask-flag="lb"] {
  background-position: -173px -189px;
}
.t-input-phonemask__options-flag_lc,
.t-input-phonemask__select-flag[data-phonemask-flag="lc"] {
  background-position: -201px -189px;
}
.t-input-phonemask__options-flag_li,
.t-input-phonemask__select-flag[data-phonemask-flag="li"] {
  background-position: -229px -189px;
}
.t-input-phonemask__options-flag_lk,
.t-input-phonemask__select-flag[data-phonemask-flag="lk"] {
  background-position: -257px -189px;
}
.t-input-phonemask__options-flag_lr,
.t-input-phonemask__select-flag[data-phonemask-flag="lr"] {
  background-position: -285px -189px;
}
.t-input-phonemask__options-flag_ls,
.t-input-phonemask__select-flag[data-phonemask-flag="ls"] {
  background-position: -313px -189px;
}
.t-input-phonemask__options-flag_lt,
.t-input-phonemask__select-flag[data-phonemask-flag="lt"] {
  background-position: -5px -212px;
}
.t-input-phonemask__options-flag_lu,
.t-input-phonemask__select-flag[data-phonemask-flag="lu"] {
  background-position: -33px -212px;
}
.t-input-phonemask__options-flag_lv,
.t-input-phonemask__select-flag[data-phonemask-flag="lv"] {
  background-position: -61px -212px;
}
.t-input-phonemask__options-flag_ly,
.t-input-phonemask__select-flag[data-phonemask-flag="ly"] {
  background-position: -89px -212px;
}
.t-input-phonemask__options-flag_ma,
.t-input-phonemask__select-flag[data-phonemask-flag="ma"] {
  background-position: -117px -212px;
}
.t-input-phonemask__options-flag_mc,
.t-input-phonemask__select-flag[data-phonemask-flag="mc"] {
  background-position: -145px -212px;
}
.t-input-phonemask__options-flag_md,
.t-input-phonemask__select-flag[data-phonemask-flag="md"] {
  background-position: -173px -212px;
}
.t-input-phonemask__options-flag_me,
.t-input-phonemask__select-flag[data-phonemask-flag="me"] {
  background-position: -201px -212px;
}
.t-input-phonemask__options-flag_mg,
.t-input-phonemask__select-flag[data-phonemask-flag="mg"] {
  background-position: -229px -212px;
}
.t-input-phonemask__options-flag_mh,
.t-input-phonemask__select-flag[data-phonemask-flag="mh"] {
  background-position: -257px -212px;
}
.t-input-phonemask__options-flag_mk,
.t-input-phonemask__select-flag[data-phonemask-flag="mk"] {
  background-position: -285px -212px;
}
.t-input-phonemask__options-flag_ml,
.t-input-phonemask__select-flag[data-phonemask-flag="ml"] {
  background-position: -313px -212px;
}
.t-input-phonemask__options-flag_mm,
.t-input-phonemask__select-flag[data-phonemask-flag="mm"] {
  background-position: -5px -235px;
}
.t-input-phonemask__options-flag_mn,
.t-input-phonemask__select-flag[data-phonemask-flag="mn"] {
  background-position: -33px -235px;
}
.t-input-phonemask__options-flag_mo,
.t-input-phonemask__select-flag[data-phonemask-flag="mo"] {
  background-position: -61px -235px;
}
.t-input-phonemask__options-flag_mr,
.t-input-phonemask__select-flag[data-phonemask-flag="mr"] {
  background-position: -89px -235px;
}
.t-input-phonemask__options-flag_mt,
.t-input-phonemask__select-flag[data-phonemask-flag="mt"] {
  background-position: -117px -235px;
}
.t-input-phonemask__options-flag_mu,
.t-input-phonemask__select-flag[data-phonemask-flag="mu"] {
  background-position: -145px -235px;
}
.t-input-phonemask__options-flag_mv,
.t-input-phonemask__select-flag[data-phonemask-flag="mv"] {
  background-position: -173px -235px;
}
.t-input-phonemask__options-flag_mw,
.t-input-phonemask__select-flag[data-phonemask-flag="mw"] {
  background-position: -201px -235px;
}
.t-input-phonemask__options-flag_mb,
.t-input-phonemask__select-flag[data-phonemask-flag="mb"] {
  background-position: -229px -235px;
}
.t-input-phonemask__options-flag_mx,
.t-input-phonemask__select-flag[data-phonemask-flag="mx"] {
  background-position: -229px -235px;
}
.t-input-phonemask__options-flag_my,
.t-input-phonemask__select-flag[data-phonemask-flag="my"] {
  background-position: -257px -235px;
}
.t-input-phonemask__options-flag_mz,
.t-input-phonemask__select-flag[data-phonemask-flag="mz"] {
  background-position: -285px -235px;
}
.t-input-phonemask__options-flag_na,
.t-input-phonemask__select-flag[data-phonemask-flag="na"] {
  background-position: -313px -235px;
}
.t-input-phonemask__options-flag_ne,
.t-input-phonemask__select-flag[data-phonemask-flag="ne"] {
  background-position: -5px -258px;
}
.t-input-phonemask__options-flag_ng,
.t-input-phonemask__select-flag[data-phonemask-flag="ng"] {
  background-position: -33px -258px;
}
.t-input-phonemask__options-flag_ni,
.t-input-phonemask__select-flag[data-phonemask-flag="ni"] {
  background-position: -61px -258px;
}
.t-input-phonemask__options-flag_nl,
.t-input-phonemask__select-flag[data-phonemask-flag="nl"] {
  background-position: -89px -258px;
}
.t-input-phonemask__options-flag_no,
.t-input-phonemask__select-flag[data-phonemask-flag="no"] {
  background-position: -117px -258px;
}
.t-input-phonemask__options-flag_np,
.t-input-phonemask__select-flag[data-phonemask-flag="np"] {
  background-position: -341px -5px;
}
.t-input-phonemask__options-flag_nr,
.t-input-phonemask__select-flag[data-phonemask-flag="nr"] {
  background-position: -145px -258px;
}
.t-input-phonemask__options-flag_nu,
.t-input-phonemask__select-flag[data-phonemask-flag="nu"] {
  background-position: -173px -258px;
}
.t-input-phonemask__options-flag_nc,
.t-input-phonemask__select-flag[data-phonemask-flag="nc"] {
  background-position: -229px -350px;
}
.t-input-phonemask__options-flag_nz,
.t-input-phonemask__select-flag[data-phonemask-flag="nz"] {
  background-position: -201px -258px;
}
.t-input-phonemask__options-flag_om,
.t-input-phonemask__select-flag[data-phonemask-flag="om"] {
  background-position: -229px -258px;
}
.t-input-phonemask__options-flag_pa,
.t-input-phonemask__select-flag[data-phonemask-flag="pa"] {
  background-position: -257px -258px;
}
.t-input-phonemask__options-flag_pe,
.t-input-phonemask__select-flag[data-phonemask-flag="pe"] {
  background-position: -285px -258px;
}
.t-input-phonemask__options-flag_pg,
.t-input-phonemask__select-flag[data-phonemask-flag="pg"] {
  background-position: -313px -258px;
}
.t-input-phonemask__options-flag_ph,
.t-input-phonemask__select-flag[data-phonemask-flag="ph"] {
  background-position: -5px -281px;
}
.t-input-phonemask__options-flag_pk,
.t-input-phonemask__select-flag[data-phonemask-flag="pk"] {
  background-position: -33px -281px;
}
.t-input-phonemask__options-flag_pl,
.t-input-phonemask__select-flag[data-phonemask-flag="pl"] {
  background-position: -61px -281px;
}
.t-input-phonemask__options-flag_ps,
.t-input-phonemask__select-flag[data-phonemask-flag="ps"] {
  background-position: -89px -281px;
}
.t-input-phonemask__options-flag_pt,
.t-input-phonemask__select-flag[data-phonemask-flag="pt"] {
  background-position: -117px -281px;
}
.t-input-phonemask__options-flag_pw,
.t-input-phonemask__select-flag[data-phonemask-flag="pw"] {
  background-position: -145px -281px;
}
.t-input-phonemask__options-flag_py,
.t-input-phonemask__select-flag[data-phonemask-flag="py"] {
  background-position: -173px -281px;
}
.t-input-phonemask__options-flag_qa,
.t-input-phonemask__select-flag[data-phonemask-flag="qa"] {
  background-position: -201px -281px;
}
.t-input-phonemask__options-flag_ro,
.t-input-phonemask__select-flag[data-phonemask-flag="ro"] {
  background-position: -229px -281px;
}
.t-input-phonemask__options-flag_rs,
.t-input-phonemask__select-flag[data-phonemask-flag="rs"] {
  background-position: -257px -281px;
}
.t-input-phonemask__options-flag_ru,
.t-input-phonemask__select-flag[data-phonemask-flag="ru"] {
  background-position: -285px -281px;
}
.t-input-phonemask__options-flag_rw,
.t-input-phonemask__select-flag[data-phonemask-flag="rw"] {
  background-position: -313px -281px;
}
.t-input-phonemask__options-flag_sa,
.t-input-phonemask__select-flag[data-phonemask-flag="sa"] {
  background-position: -5px -304px;
}
.t-input-phonemask__options-flag_sb,
.t-input-phonemask__select-flag[data-phonemask-flag="sb"] {
  background-position: -33px -304px;
}
.t-input-phonemask__options-flag_sc,
.t-input-phonemask__select-flag[data-phonemask-flag="sc"] {
  background-position: -61px -304px;
}
.t-input-phonemask__options-flag_sd,
.t-input-phonemask__select-flag[data-phonemask-flag="sd"] {
  background-position: -89px -304px;
}
.t-input-phonemask__options-flag_se,
.t-input-phonemask__select-flag[data-phonemask-flag="se"] {
  background-position: -117px -304px;
}
.t-input-phonemask__options-flag_sg,
.t-input-phonemask__select-flag[data-phonemask-flag="sg"] {
  background-position: -145px -304px;
}
.t-input-phonemask__options-flag_si,
.t-input-phonemask__select-flag[data-phonemask-flag="si"] {
  background-position: -173px -304px;
}
.t-input-phonemask__options-flag_sk,
.t-input-phonemask__select-flag[data-phonemask-flag="sk"] {
  background-position: -201px -304px;
}
.t-input-phonemask__options-flag_sl,
.t-input-phonemask__select-flag[data-phonemask-flag="sl"] {
  background-position: -229px -304px;
}
.t-input-phonemask__options-flag_sm,
.t-input-phonemask__select-flag[data-phonemask-flag="sm"] {
  background-position: -257px -304px;
}
.t-input-phonemask__options-flag_sn,
.t-input-phonemask__select-flag[data-phonemask-flag="sn"] {
  background-position: -285px -304px;
}
.t-input-phonemask__options-flag_so,
.t-input-phonemask__select-flag[data-phonemask-flag="so"] {
  background-position: -313px -304px;
}
.t-input-phonemask__options-flag_sr,
.t-input-phonemask__select-flag[data-phonemask-flag="sr"] {
  background-position: -5px -327px;
}
.t-input-phonemask__options-flag_ss,
.t-input-phonemask__select-flag[data-phonemask-flag="ss"] {
  background-position: -33px -327px;
}
.t-input-phonemask__options-flag_st,
.t-input-phonemask__select-flag[data-phonemask-flag="st"] {
  background-position: -61px -327px;
}
.t-input-phonemask__options-flag_sv,
.t-input-phonemask__select-flag[data-phonemask-flag="sv"] {
  background-position: -89px -327px;
}
.t-input-phonemask__options-flag_sy,
.t-input-phonemask__select-flag[data-phonemask-flag="sy"] {
  background-position: -117px -327px;
}
.t-input-phonemask__options-flag_sz,
.t-input-phonemask__select-flag[data-phonemask-flag="sz"] {
  background-position: -145px -327px;
}
.t-input-phonemask__options-flag_td,
.t-input-phonemask__select-flag[data-phonemask-flag="td"] {
  background-position: -173px -327px;
}
.t-input-phonemask__options-flag_tg,
.t-input-phonemask__select-flag[data-phonemask-flag="tg"] {
  background-position: -201px -327px;
}
.t-input-phonemask__options-flag_th,
.t-input-phonemask__select-flag[data-phonemask-flag="th"] {
  background-position: -229px -327px;
}
.t-input-phonemask__options-flag_tj,
.t-input-phonemask__select-flag[data-phonemask-flag="tj"] {
  background-position: -257px -327px;
}
.t-input-phonemask__options-flag_tl,
.t-input-phonemask__select-flag[data-phonemask-flag="tl"] {
  background-position: -285px -327px;
}
.t-input-phonemask__options-flag_tm,
.t-input-phonemask__select-flag[data-phonemask-flag="tm"] {
  background-position: -313px -327px;
}
.t-input-phonemask__options-flag_tn,
.t-input-phonemask__select-flag[data-phonemask-flag="tn"] {
  background-position: -367px -5px;
}
.t-input-phonemask__options-flag_to,
.t-input-phonemask__select-flag[data-phonemask-flag="to"] {
  background-position: -341px -28px;
}
.t-input-phonemask__options-flag_tr,
.t-input-phonemask__select-flag[data-phonemask-flag="tr"] {
  background-position: -341px -51px;
}
.t-input-phonemask__options-flag_tt,
.t-input-phonemask__select-flag[data-phonemask-flag="tt"] {
  background-position: -341px -74px;
}
.t-input-phonemask__options-flag_tv,
.t-input-phonemask__select-flag[data-phonemask-flag="tv"] {
  background-position: -341px -97px;
}
.t-input-phonemask__options-flag_tw,
.t-input-phonemask__select-flag[data-phonemask-flag="tw"] {
  background-position: -341px -120px;
}
.t-input-phonemask__options-flag_tz,
.t-input-phonemask__select-flag[data-phonemask-flag="tz"] {
  background-position: -341px -143px;
}
.t-input-phonemask__options-flag_ua,
.t-input-phonemask__select-flag[data-phonemask-flag="ua"] {
  background-position: -341px -166px;
}
.t-input-phonemask__options-flag_ug,
.t-input-phonemask__select-flag[data-phonemask-flag="ug"] {
  background-position: -341px -189px;
}
.t-input-phonemask__options-flag_us,
.t-input-phonemask__select-flag[data-phonemask-flag="us"] {
  background-position: -341px -212px;
}
.t-input-phonemask__options-flag_uy,
.t-input-phonemask__select-flag[data-phonemask-flag="uy"] {
  background-position: -341px -235px;
}
.t-input-phonemask__options-flag_uz,
.t-input-phonemask__select-flag[data-phonemask-flag="uz"] {
  background-position: -341px -258px;
}
.t-input-phonemask__options-flag_va,
.t-input-phonemask__select-flag[data-phonemask-flag="va"] {
  background-position: -341px -281px;
}
.t-input-phonemask__options-flag_vc,
.t-input-phonemask__select-flag[data-phonemask-flag="vc"] {
  background-position: -341px -304px;
}
.t-input-phonemask__options-flag_ve,
.t-input-phonemask__select-flag[data-phonemask-flag="ve"] {
  background-position: -341px -327px;
}
.t-input-phonemask__options-flag_vn,
.t-input-phonemask__select-flag[data-phonemask-flag="vn"] {
  background-position: -5px -350px;
}
.t-input-phonemask__options-flag_vu,
.t-input-phonemask__select-flag[data-phonemask-flag="vu"] {
  background-position: -33px -350px;
}
.t-input-phonemask__options-flag_ws,
.t-input-phonemask__select-flag[data-phonemask-flag="ws"] {
  background-position: -61px -350px;
}
.t-input-phonemask__options-flag_xk,
.t-input-phonemask__select-flag[data-phonemask-flag="xk"] {
  background-position: -89px -350px;
}
.t-input-phonemask__options-flag_ye,
.t-input-phonemask__select-flag[data-phonemask-flag="ye"] {
  background-position: -117px -350px;
}
.t-input-phonemask__options-flag_za,
.t-input-phonemask__select-flag[data-phonemask-flag="za"] {
  background-position: -145px -350px;
}
.t-input-phonemask__options-flag_zm,
.t-input-phonemask__select-flag[data-phonemask-flag="zm"] {
  background-position: -173px -350px;
}
.t-input-phonemask__options-flag_zw,
.t-input-phonemask__select-flag[data-phonemask-flag="zw"] {
  background-position: -201px -350px;
}

/* ---- assets/inline/css/index-f88be1ee434a.css ---- */
#exora-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.exora-bar {
  width: 160px;
  height: 4px;
  background: #333333;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.exora-bar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 40%;
  background: #eb1414;
  animation: scan 1s linear infinite;
}

.exora-text {
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 13px;
  margin-top: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

@keyframes scan {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

/* ---- assets/inline/css/index-f397940640be.css ---- */
#rec1028026896 .t396__artboard {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 990;
}
#rec1028026896 .t396__artboard {
  height: 50px;
  background-color: #000000;
  overflow: visible;
}
#rec1028026896 .t396__filter {
  height: 50px;
}
#rec1028026896 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .t396__artboard,
  #rec1028026896 .t396__filter,
  #rec1028026896 .t396__carrier {
  }
  #rec1028026896 .t396__filter {
  }
  #rec1028026896 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .t396__artboard,
  #rec1028026896 .t396__filter,
  #rec1028026896 .t396__carrier {
  }
  #rec1028026896 .t396__filter {
  }
  #rec1028026896 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .t396__artboard,
  #rec1028026896 .t396__filter,
  #rec1028026896 .t396__carrier {
  }
  #rec1028026896 .t396__filter {
  }
  #rec1028026896 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .t396__artboard,
  #rec1028026896 .t396__filter,
  #rec1028026896 .t396__carrier {
  }
  #rec1028026896 .t396__filter {
  }
  #rec1028026896 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1748336375830"] {
  z-index: 3;
  top: -1px;
  left: calc(50% - 600px + -546px);
  width: 2293px;
  height: 51px;
}
#rec1028026896 .tn-elem[data-elem-id="1748336375830"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #1b1919;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747235389820"] {
  color: #eb1414;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 402px);
  width: 78px;
  height: 30px;
  pointer-events: none;
}
#rec1028026896 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  color: #eb1414;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 307px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1485px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 0px;
    left: calc(50% - 240px + 1485px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 7px;
    left: 509px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747235476777"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 500px);
  width: 78px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1747235476777"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1028026896 .tn-elem[data-elem-id="1747235476777"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 392px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1583px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 0px;
    left: calc(50% - 240px + 1583px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 7px;
    left: 607px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747235487045"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 598px);
  width: 78px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1028026896 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 477px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1681px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 0px;
    left: calc(50% - 240px + 1681px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 7px;
    left: 705px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1748421568956"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 696px);
  width: 78px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1748421568956"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1028026896 .tn-elem[data-elem-id="1748421568956"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 562px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: -1px;
    left: calc(50% - 320px + 1872px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: -1px;
    left: calc(50% - 240px + 1872px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 17px;
    left: 813px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747235609694"] {
  color: #000000;
  text-align: center;
  z-index: 9;
  top: 10px;
  left: calc(50% - 600px + 994px);
  width: 126px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1028026896 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 824px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 502px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    left: calc(50% - 240px + 343px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: 144px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747236375794"] {
  color: #000000;
  text-align: center;
  z-index: 10;
  top: 11px;
  left: calc(50% - 600px + 949px);
  width: 30px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1028026896 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 480px + 778px);
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 456px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 240px + 297px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 9px;
    left: 392px;
    width: 30px;
    height: 30px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747236894336"] {
  z-index: 11;
  top: 16px;
  left: calc(50% - 600px + 954px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1028026896 .tn-elem[data-elem-id="1747236894336"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 783px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 461px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    left: calc(50% - 240px + 302px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 14px;
    left: 397px;
    width: 20px;
    height: 20px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747236388101"] {
  color: #000000;
  text-align: center;
  z-index: 12;
  top: 11px;
  left: calc(50% - 600px + 904px);
  width: 30px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1028026896 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 480px + 732px);
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 410px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 9px;
    left: 352px;
    width: 30px;
    height: 30px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747823134840"] {
  z-index: 13;
  top: 16px;
  left: calc(50% - 600px + 909px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1028026896 .tn-elem[data-elem-id="1747823134840"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 737px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 415px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 14px;
    left: 357px;
    width: 20px;
    height: 20px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747308725321"] {
  z-index: 15;
  top: 10px;
  left: calc(50% - 600px + 2260px);
  width: 60px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747308725321"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 6px;
    left: calc(50% - 240px + 1212px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: 438px;
    width: 60px;
    height: 30px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747308857459"] {
  color: #000000;
  text-align: center;
  z-index: 17;
  top: 10px;
  left: calc(50% - 600px + 2260px);
  width: 30px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 6px;
    left: calc(50% - 240px + 1212px);
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: 438px;
    width: 30px;
    height: 30px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747326978217"] {
  z-index: 18;
  top: 10px;
  left: calc(50% - 600px + 2222px);
  width: 30px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1747326978217"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
    top: 10px;
    left: 279px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1747225382228"] {
  z-index: 19;
  top: 8px;
  left: calc(50% - 600px + 10px);
  width: 220px;
  height: 48px;
}
#rec1028026896 .tn-elem[data-elem-id="1747225382228"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 480px + 9px);
    width: 200px;
    height: 44px;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 10px);
    width: 170px;
    height: 36px;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    width: 150px;
    height: 32px;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    top: 10px;
    left: 10px;
    width: 118px;
    height: 26px;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1748255447993"] {
  color: #000000;
  text-align: center;
  z-index: 20;
  top: 8px;
  left: calc(50% - 600px + 1816px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1028026896
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748255447993"] {
    opacity: 0;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1028026896 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1028026896 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1272px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1748255423628"] {
  color: #ffffff;
  text-align: center;
  z-index: 21;
  top: 8px;
  left: calc(50% - 600px + 1766px);
  width: 30px;
  height: 30px;
}
#rec1028026896 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1028026896 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1302px);
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
#rec1028026896 .tn-elem[data-elem-id="1748422363740"] {
  color: #ffffff;
  z-index: 22;
  top: 9px;
  left: calc(50% - 600px + 129px);
  width: 101px;
  height: auto;
}
#rec1028026896 .tn-elem[data-elem-id="1748422363740"] {
  display: none !important;
}
#rec1028026896 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1028026896 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    left: calc(50% - 480px + 69px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1028026896 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1028026896 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1028026896 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    top: 14px;
    left: 64px;
    width: 66px;
    height: auto;
  }
  #rec1028026896 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}

/* Unified header logo (single image instead of icon + text). */
.tn-elem[data-elem-id="1747225382228"] {
  top: 8px !important;
  left: calc(50% - 600px + 10px) !important;
  width: 220px !important;
  height: 48px !important;
}
.tn-elem[data-elem-id="1747225382228"] .tn-atom {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.tn-elem[data-elem-id="1748422363740"] {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .tn-elem[data-elem-id="1747225382228"] {
    left: calc(50% - 480px + 10px) !important;
    width: 200px !important;
    height: 44px !important;
  }
}
@media screen and (max-width: 959px) {
  .tn-elem[data-elem-id="1747225382228"] {
    top: 9px !important;
    left: calc(50% - 320px + 10px) !important;
    width: 170px !important;
    height: 36px !important;
  }
}
@media screen and (max-width: 639px) {
  .tn-elem[data-elem-id="1747225382228"] {
    left: calc(50% - 240px + 10px) !important;
    width: 150px !important;
    height: 32px !important;
  }
}
@media screen and (max-width: 479px) {
  .tn-elem[data-elem-id="1747225382228"] {
    top: 10px !important;
    left: 10px !important;
    width: 118px !important;
    height: 26px !important;
  }
}

/* ---- assets/inline/css/index-0ae2c1c19b0c.css ---- */
#rec1123735461 .t396__artboard {
  height: 550px;
  background-color: #000000;
}
#rec1123735461 .t396__filter {
  height: 550px;
}
#rec1123735461 .t396__carrier {
  height: 550px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .t396__artboard,
  #rec1123735461 .t396__filter,
  #rec1123735461 .t396__carrier {
  }
  #rec1123735461 .t396__filter {
  }
  #rec1123735461 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .t396__artboard,
  #rec1123735461 .t396__filter,
  #rec1123735461 .t396__carrier {
    height: 760px;
  }
  #rec1123735461 .t396__filter {
  }
  #rec1123735461 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .t396__artboard,
  #rec1123735461 .t396__filter,
  #rec1123735461 .t396__carrier {
    height: 790px;
  }
  #rec1123735461 .t396__filter {
  }
  #rec1123735461 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .t396__artboard,
  #rec1123735461 .t396__filter,
  #rec1123735461 .t396__carrier {
    height: 810px;
  }
  #rec1123735461 .t396__filter {
  }
  #rec1123735461 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747232544453"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 630px;
  height: 550px;
}
#rec1123735461 .tn-elem[data-elem-id="1747232544453"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.3;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1123735461
  .tn-elem[data-elem-id="1747232544453"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    left: calc(50% - 480px + -242px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + -46px);
    width: 733px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -2px);
    width: 312px;
    height: 406px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: -13px;
    width: 269px;
    height: 331px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1748015917462"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 602px;
  height: 550px;
}
#rec1123735461 .tn-elem.t396__elem--anim-hidden[data-elem-id="1748015917462"] {
  opacity: 0;
}
#rec1123735461 .tn-elem[data-elem-id="1748015917462"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -191px;
    left: calc(50% - 320px + -761px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -10px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1754575422933"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 80px);
  width: 275px;
  height: 275px;
}
#rec1123735461 .tn-elem[data-elem-id="1754575422933"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422933"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 7px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422933"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422933"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 61px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422933"] {
    display: table;
    top: 100px;
    left: 30px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1754575422938"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 90px);
  width: 275px;
  height: 275px;
}
#rec1123735461 .tn-elem[data-elem-id="1754575422938"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422938"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 17px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422938"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 186px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422938"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422938"] {
    display: table;
    top: 100px;
    left: 40px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1754575422943"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 92px);
  width: 275px;
  height: 275px;
}
#rec1123735461 .tn-elem[data-elem-id="1754575422943"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422943"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 19px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422943"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 188px);
    width: 275px;
    height: 275px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422943"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1754575422943"] {
    display: table;
    top: 99px;
    left: 45px;
    width: 184px;
    height: 184px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1748343246927"] {
  z-index: 3;
  top: -26px;
  left: calc(50% - 600px + 421px);
  width: 932px;
  height: 594px;
}
#rec1123735461 .tn-elem[data-elem-id="1748343246927"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #1b1919;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: -29px;
    left: calc(50% - 480px + 330px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + -71px);
    width: 786px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 405px;
    left: calc(50% - 240px + -143px);
    width: 786px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 329px;
    left: -209px;
    width: 786px;
    height: 437px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747839299921"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 56px;
  left: calc(50% - 600px + 957px);
  width: 247px;
  height: 300px;
}
#rec1123735461 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 140px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 119px;
    left: calc(50% - 480px + 727px);
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 377px;
    left: calc(50% - 320px + 400px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 406px;
    left: calc(50% - 240px + 330px);
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 80px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 508px;
    left: 144px;
    width: 177px;
    height: 200px;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 100px;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1750248542074"] {
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 877px);
  width: 400px;
  height: 400px;
}
#rec1123735461 .tn-elem[data-elem-id="1750248542074"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 95px;
    left: calc(50% - 480px + 630px);
    width: 394px;
    height: 394px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 361px;
    left: calc(50% - 320px + 353px);
    width: 334px;
    height: 334px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 414px;
    left: calc(50% - 240px + 225px);
    width: 315px;
    height: 315px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 481px;
    left: 89px;
    width: 282px;
    height: 282px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747728712611"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1123735461 .tn-elem[data-elem-id="1747728712611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 652px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1748337022311"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1123735461 .tn-elem[data-elem-id="1748337022311"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 662px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747234456600"] {
  z-index: 3;
  top: 457px;
  left: calc(50% - 600px + 421px);
  width: 928px;
  height: 50px;
}
#rec1123735461 .tn-elem[data-elem-id="1747234456600"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    left: calc(50% - 480px + 331px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 677px;
    left: calc(50% - 320px + -40px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 697px;
    left: calc(50% - 240px + -40px);
    width: 928px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 737px;
    left: -220px;
    width: 928px;
    height: 50px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747233003903"] {
  z-index: 3;
  top: 549px;
  left: calc(50% - 600px + -150px);
  width: 1500px;
  height: 1px;
}
#rec1123735461 .tn-elem[data-elem-id="1747233003903"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 548px;
    left: calc(50% - 480px + -240px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 759px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 779px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: -192px;
    left: -470px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747312395611"] {
  z-index: 3;
  top: 609px;
  left: calc(50% - 600px + -140px);
  width: 1500px;
  height: 1px;
}
#rec1123735461 .tn-elem[data-elem-id="1747312395611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    left: calc(50% - 480px + -230px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 1107px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 985px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 809px;
    left: -460px;
    width: 1500px;
    height: 1px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747312777885"] {
  z-index: 3;
  top: 619px;
  left: calc(50% - 600px + -130px);
  width: 1500px;
  height: 1px;
}
#rec1123735461 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    left: calc(50% - 480px + -220px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 977px;
    left: calc(50% - 320px + -260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 11px);
    width: 600px;
    height: 1px;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 169px;
    left: 97px;
    width: 320px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747234780565"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 243px;
  left: calc(50% - 600px + 479px);
  width: 353px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    left: calc(50% - 480px + 389px);
    width: 310px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 501px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 517px;
    left: calc(50% - 240px + 10px);
    width: 265px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 417px;
    left: 10px;
    width: 282px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747301333026"] {
  color: #000000;
  z-index: 3;
  top: 475px;
  left: calc(50% - 600px + 480px);
  width: 608px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    left: calc(50% - 480px + 390px);
    width: 526px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 695px;
    left: calc(50% - 320px + 9px);
    width: 621px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 705px;
    left: calc(50% - 240px + 10px);
    width: 347px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 749px;
    left: 10px;
    width: 242px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297376732"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 480px);
  width: 99px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 390px);
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 10px);
    width: 95px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 550px;
    left: 10px;
    width: 95px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297544627"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 649px);
  width: 193px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 508px);
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 128px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 118px);
    width: 193px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 613px;
    left: 10px;
    width: 193px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297749026"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 793px);
  width: 107px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 630px);
    width: 68px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 250px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 226px);
    width: 68px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 680px;
    left: 10px;
    width: 68px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297358565"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 522px);
  width: 100px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 300;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 420px);
    width: 105px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 40px);
    width: 105px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 519px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297533439"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 690px);
  width: 69px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 538px);
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 158px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 148px);
    width: 105px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 584px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297726676"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 835px);
  width: 42px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 660px);
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 280px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 256px);
    width: 42px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 652px;
    left: 47px;
    width: 42px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747234162072"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 145px;
  left: calc(50% - 600px + 476px);
  width: 218px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 27px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    left: calc(50% - 480px + 386px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 403px;
    left: calc(50% - 320px + 9px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 423px;
    left: calc(50% - 240px + 9px);
    width: 218px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 326px;
    left: 9px;
    width: 218px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747312642704"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1200px;
  left: calc(50% - 600px + 780px);
  width: 218px;
  height: auto;
}
#rec1123735461 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    left: calc(50% - 480px + 396px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 112px;
    left: calc(50% - 320px + 871px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 168px;
    left: calc(50% - 240px + 241px);
    width: 305px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 70px;
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 197px;
    left: 138px;
    height: auto;
  }
  #rec1123735461 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747296115209"] {
  z-index: 3;
  top: 224px;
  left: calc(50% - 600px + 480px);
  width: 270px;
  height: 1px;
}
#rec1123735461 .tn-elem[data-elem-id="1747296115209"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 482px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 502px;
    left: calc(50% - 240px + 10px);
    width: 270px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 400px;
    left: 10px;
    width: 218px;
    height: 1px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297312260"] {
  z-index: 3;
  top: 354px;
  left: calc(50% - 600px + 480px);
  width: 32px;
  height: 32px;
}
#rec1123735461 .tn-elem[data-elem-id="1747297312260"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 390px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 10px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 513px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297507029"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 648px);
  width: 32px;
  height: 32px;
}
#rec1123735461 .tn-elem[data-elem-id="1747297507029"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 508px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 128px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 118px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 582px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747297709612"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 793px);
  width: 32px;
  height: 32px;
}
#rec1123735461 .tn-elem[data-elem-id="1747297709612"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 630px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 226px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 647px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1123735461 .tn-elem[data-elem-id="1747327198617"] {
  z-index: 3;
  top: 165px;
  left: calc(50% - 600px + 712px);
  width: 38px;
  height: 38px;
}
#rec1123735461 .tn-elem[data-elem-id="1747327198617"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"] {
    display: table;
    top: 164px;
    left: calc(50% - 480px + 624px);
  }
}
@media screen and (max-width: 959px) {
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"] {
    display: table;
    top: 423px;
    left: calc(50% - 320px + 242px);
  }
}
@media screen and (max-width: 639px) {
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"] {
    display: table;
    top: 443px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123735461 .tn-elem[data-elem-id="1747327198617"] {
    display: table;
    top: 344px;
    left: 268px;
    width: 41px;
    height: 41px;
  }
}

/* ---- assets/inline/css/index-540fcf7e8876.css ---- */
#rec1065230051 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1065230051 .t396__filter {
  height: 80px;
}
#rec1065230051 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1065230051 .t396__artboard,
  #rec1065230051 .t396__filter,
  #rec1065230051 .t396__carrier {
  }
  #rec1065230051 .t396__filter {
  }
  #rec1065230051 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1065230051 .t396__artboard,
  #rec1065230051 .t396__filter,
  #rec1065230051 .t396__carrier {
  }
  #rec1065230051 .t396__filter {
  }
  #rec1065230051 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1065230051 .t396__artboard,
  #rec1065230051 .t396__filter,
  #rec1065230051 .t396__carrier {
  }
  #rec1065230051 .t396__filter {
  }
  #rec1065230051 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1065230051 .t396__artboard,
  #rec1065230051 .t396__filter,
  #rec1065230051 .t396__carrier {
  }
  #rec1065230051 .t396__filter {
  }
  #rec1065230051 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1065230051 .tn-elem[data-elem-id="1748507443928"] {
  z-index: 3;
  top: -9px;
  left: calc(50% - 600px + -735px);
  width: 2562px;
  height: 89px;
}
#rec1065230051 .tn-elem[data-elem-id="1748507443928"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
#rec1065230051 .tn-elem[data-elem-id="1748507221481"] {
  z-index: 4;
  top: 0px;
  left: calc(50% - 600px + -350px);
  width: 2556px;
  height: 89px;
}
#rec1065230051 .tn-elem[data-elem-id="1748507221481"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    left: calc(50% - 320px + -354px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065230051 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: -41px;
  }
}

/* ---- assets/inline/css/index-159389638899.css ---- */
.tradingview-widget-copyright {
  font-size: 13px !important;
  line-height: 32px !important;
  text-align: center !important;
  vertical-align: middle !important;
  /* @mixin sf-pro-display-font; */
  font-family:
    -apple-system, BlinkMacSystemFont, "Trebuchet MS", Roboto, Ubuntu,
    sans-serif !important;
  color: #b2b5be !important;
}

.tradingview-widget-copyright .blue-text {
  color: #2962ff !important;
}

.tradingview-widget-copyright a {
  text-decoration: none !important;
  color: #b2b5be !important;
}

.tradingview-widget-copyright a:visited {
  color: #b2b5be !important;
}

.tradingview-widget-copyright a:hover .blue-text {
  color: #1e53e5 !important;
}

.tradingview-widget-copyright a:active .blue-text {
  color: #1848cc !important;
}

.tradingview-widget-copyright a:visited .blue-text {
  color: #2962ff !important;
}

/* ---- assets/inline/css/index-a445a48155c2.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-566d285f78a4.css ---- */
#rec1108504246 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1108504246 .t396__filter {
  height: 80px;
}
#rec1108504246 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108504246 .t396__artboard,
  #rec1108504246 .t396__filter,
  #rec1108504246 .t396__carrier {
  }
  #rec1108504246 .t396__filter {
  }
  #rec1108504246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108504246 .t396__artboard,
  #rec1108504246 .t396__filter,
  #rec1108504246 .t396__carrier {
    height: 160px;
  }
  #rec1108504246 .t396__filter {
  }
  #rec1108504246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108504246 .t396__artboard,
  #rec1108504246 .t396__filter,
  #rec1108504246 .t396__carrier {
    height: 120px;
  }
  #rec1108504246 .t396__filter {
  }
  #rec1108504246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108504246 .t396__artboard,
  #rec1108504246 .t396__filter,
  #rec1108504246 .t396__carrier {
    height: 100px;
  }
  #rec1108504246 .t396__filter {
  }
  #rec1108504246 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108504246 .tn-elem[data-elem-id="1750164845792"] {
  z-index: 3;
  top: 19px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 60px;
}
#rec1108504246 .tn-elem[data-elem-id="1750164845792"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108504246 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108504246 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108504246 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108504246 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    top: 27px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1108504246 .tn-elem[data-elem-id="1750165865211"] {
  z-index: 4;
  top: 19px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 60px;
}
#rec1108504246 .tn-elem[data-elem-id="1750165865211"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108504246 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    left: calc(50% - 480px + 490px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108504246 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 87px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108504246 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 67px;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108504246 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 61px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1108504246 .tn-elem[data-elem-id="1750166143073"] {
  color: #4f4a4a;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 560px;
  height: auto;
}
#rec1108504246 .tn-elem[data-elem-id="1750166143073"] .tn-atom {
  vertical-align: middle;
  color: #4f4a4a;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108504246 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108504246 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1108504246 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1108504246 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: 10px;
    height: auto;
  }
}

/* ---- assets/inline/css/index-c4bf25750e88.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-a1a1741289d4.css ---- */
#rec1083953436 .t396__artboard {
  height: 295px;
  background-color: #000000;
}
#rec1083953436 .t396__filter {
  height: 295px;
}
#rec1083953436 .t396__carrier {
  height: 295px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .t396__artboard,
  #rec1083953436 .t396__filter,
  #rec1083953436 .t396__carrier {
    height: 267px;
  }
  #rec1083953436 .t396__filter {
  }
  #rec1083953436 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .t396__artboard,
  #rec1083953436 .t396__filter,
  #rec1083953436 .t396__carrier {
    height: 690px;
  }
  #rec1083953436 .t396__filter {
  }
  #rec1083953436 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .t396__artboard,
  #rec1083953436 .t396__filter,
  #rec1083953436 .t396__carrier {
    height: 526px;
  }
  #rec1083953436 .t396__filter {
  }
  #rec1083953436 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .t396__artboard,
  #rec1083953436 .t396__filter,
  #rec1083953436 .t396__carrier {
    height: 1330px;
  }
  #rec1083953436 .t396__filter {
  }
  #rec1083953436 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747300672649"] {
  z-index: 4;
  top: 52px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1083953436 .tn-elem[data-elem-id="1747300672649"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 52px;
    left: calc(50% - 480px + 10px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 61px;
    left: calc(50% - 320px + 10px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 75px;
    left: calc(50% - 240px + 10px);
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 70px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747301686516"] {
  color: #000000;
  text-align: center;
  z-index: 5;
  top: 145px;
  left: calc(50% - 600px + 94px);
  width: 212px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 134px;
    left: calc(50% - 480px + 46px);
    width: 143px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 157px;
    left: calc(50% - 320px + 59px);
    width: 194px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 160px;
    left: calc(50% - 240px + 46px);
    width: 144px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 178px;
    left: 50px;
    width: 204px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747307081956"] {
  color: #000000;
  z-index: 6;
  top: 201px;
  left: calc(50% - 600px + 98px);
  width: 222px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 25px);
    width: 179px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    line-height: 1.2;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 217px;
    left: calc(50% - 320px + 30px);
    width: 243px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 200px;
    left: calc(50% - 240px + 25px);
    width: 180px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 243px;
    left: 50px;
    width: 254px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747306816540"] {
  z-index: 7;
  top: 78px;
  left: calc(50% - 600px + 120px);
  width: 50px;
  height: 50px;
}
#rec1083953436 .tn-elem[data-elem-id="1747306816540"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 50px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 83px;
    left: calc(50% - 320px + 50px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 95px;
    left: calc(50% - 240px + 50px);
    width: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 100px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747301018731"] {
  z-index: 9;
  top: 52px;
  left: calc(50% - 600px + 347px);
  width: 240px;
  height: 240px;
}
#rec1083953436 .tn-elem[data-elem-id="1747301018731"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 52px;
    left: calc(50% - 480px + 252px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 61px;
    left: calc(50% - 320px + 338px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 75px;
    left: calc(50% - 240px + 253px);
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 710px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747307127833"] {
  color: #000000;
  z-index: 10;
  top: 201px;
  left: calc(50% - 600px + 363px);
  width: 209px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 267px);
    width: 200px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    line-height: 1.2;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 217px;
    left: calc(50% - 320px + 359px);
    width: 262px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 200px;
    left: calc(50% - 240px + 269px);
    width: 194px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.2px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 864px;
    left: 50px;
    width: 234px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747306996972"] {
  color: #000000;
  text-align: center;
  z-index: 11;
  top: 145px;
  left: calc(50% - 600px + 368px);
  width: 195px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 134px;
    left: calc(50% - 480px + 286px);
    width: 146px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 157px;
    left: calc(50% - 320px + 390px);
    width: 198px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 160px;
    left: calc(50% - 240px + 287px);
    width: 147px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 819px;
    left: 50px;
    width: 217px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747306938582"] {
  z-index: 12;
  top: 78px;
  left: calc(50% - 600px + 387px);
  width: 50px;
  height: 50px;
}
#rec1083953436 .tn-elem[data-elem-id="1747306938582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 292px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 83px;
    left: calc(50% - 320px + 378px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 95px;
    left: calc(50% - 240px + 293px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 740px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747301030509"] {
  z-index: 14;
  top: 52px;
  left: calc(50% - 600px + 614px);
  width: 240px;
  height: 240px;
}
#rec1083953436 .tn-elem[data-elem-id="1747301030509"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 52px;
    left: calc(50% - 480px + 494px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 398px;
    left: calc(50% - 320px + 10px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 307px;
    left: calc(50% - 240px + 10px);
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 390px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747307214822"] {
  color: #000000;
  z-index: 15;
  top: 201px;
  left: calc(50% - 600px + 630px);
  width: 221px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 507px);
    width: 184px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    line-height: 1.2;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 578px;
    left: calc(50% - 320px + 30px);
    width: 262px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 432px;
    left: calc(50% - 240px + 25px);
    width: 195px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 556px;
    left: 50px;
    width: 250px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747307011903"] {
  color: #000000;
  text-align: center;
  z-index: 16;
  top: 145px;
  left: calc(50% - 600px + 626px);
  width: 212px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 134px;
    left: calc(50% - 480px + 525px);
    width: 153px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 518px;
    left: calc(50% - 320px + 52px);
    width: 208px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 392px;
    left: calc(50% - 240px + 41px);
    width: 155px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 499px;
    left: 50px;
    width: 213px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747306952954"] {
  z-index: 17;
  top: 78px;
  left: calc(50% - 600px + 654px);
  width: 50px;
  height: 50px;
}
#rec1083953436 .tn-elem[data-elem-id="1747306952954"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 534px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 444px;
    left: calc(50% - 320px + 50px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 327px;
    left: calc(50% - 240px + 50px);
    width: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 420px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747301037908"] {
  z-index: 19;
  top: 52px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1083953436 .tn-elem[data-elem-id="1747301037908"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 52px;
    left: calc(50% - 480px + 736px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 398px;
    left: calc(50% - 320px + 338px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 307px;
    left: calc(50% - 240px + 253px);
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 1030px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 20;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 553px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 553px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 10px);
    width: 402px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 11px;
    left: 10px;
    width: 289px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747307260660"] {
  color: #000000;
  z-index: 21;
  top: 201px;
  left: calc(50% - 600px + 897px);
  width: 213px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 750px);
    width: 189px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    line-height: 1.2;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 578px;
    left: calc(50% - 320px + 357px);
    width: 249px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 432px;
    left: calc(50% - 240px + 268px);
    width: 185px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 1184px;
    left: 50px;
    width: 241px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747307038148"] {
  color: #000000;
  text-align: center;
  z-index: 22;
  top: 145px;
  left: calc(50% - 600px + 894px);
  width: 212px;
  height: auto;
}
#rec1083953436 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 134px;
    left: calc(50% - 480px + 782px);
    width: 120px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 507px;
    left: calc(50% - 320px + 401px);
    width: 163px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 392px;
    left: calc(50% - 240px + 301px);
    width: 121px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 1139px;
    left: 50px;
    width: 180px;
    height: auto;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] {
    text-align: left;
  }
  #rec1083953436 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1083953436 .tn-elem[data-elem-id="1747306970522"] {
  z-index: 23;
  top: 78px;
  left: calc(50% - 600px + 921px);
  width: 50px;
  height: 50px;
}
#rec1083953436 .tn-elem[data-elem-id="1747306970522"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 775px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 444px;
    left: calc(50% - 320px + 377px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 327px;
    left: calc(50% - 240px + 293px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083953436 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 1060px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}

/* ---- assets/inline/css/index-09c5191e009f.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-6fbd70e9c7aa.css ---- */
#rec1086334411 .t396__artboard {
  height: 276px;
  background-color: #000000;
}
#rec1086334411 .t396__filter {
  height: 276px;
}
#rec1086334411 .t396__carrier {
  height: 276px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .t396__artboard,
  #rec1086334411 .t396__filter,
  #rec1086334411 .t396__carrier {
    height: 259px;
  }
  #rec1086334411 .t396__filter {
  }
  #rec1086334411 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .t396__artboard,
  #rec1086334411 .t396__filter,
  #rec1086334411 .t396__carrier {
    height: 309px;
  }
  #rec1086334411 .t396__filter {
  }
  #rec1086334411 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .t396__artboard,
  #rec1086334411 .t396__filter,
  #rec1086334411 .t396__carrier {
    height: 215px;
  }
  #rec1086334411 .t396__filter {
  }
  #rec1086334411 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .t396__artboard,
  #rec1086334411 .t396__filter,
  #rec1086334411 .t396__carrier {
    height: 286px;
  }
  #rec1086334411 .t396__filter {
  }
  #rec1086334411 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747307336675"] {
  z-index: 4;
  top: 10px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 255px;
}
#rec1086334411 .tn-elem[data-elem-id="1747307336675"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 10px;
    left: calc(50% - 480px + 10px);
    height: 236px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 287px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 192px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 11px;
    left: 10px;
    width: 300px;
    height: 262px;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747900790020"] {
  z-index: 6;
  top: 189px;
  left: calc(50% - 600px + 120px);
  width: 126px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1086334411
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747900790020"] {
    opacity: 0;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747900790020"] .tn-atom {
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 189px;
    left: calc(50% - 480px + 50px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 235px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 143px;
    left: calc(50% - 240px + 30px);
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 188px;
    left: 30px;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747315347030"] {
  color: #000000;
  text-align: center;
  z-index: 7;
  top: 189px;
  left: calc(50% - 600px + 120px);
  width: 126px;
  height: 40px;
}
#rec1086334411 .tn-elem[data-elem-id="1747315347030"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1086334411 .tn-elem[data-elem-id="1747315347030"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1086334411 .tn-elem[data-elem-id="1747315347030"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1086334411 .tn-elem[data-elem-id="1747315347030"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 189px;
    left: calc(50% - 480px + 50px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 235px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 143px;
    left: calc(50% - 240px + 30px);
    width: 126px;
    height: 40px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 188px;
    left: 30px;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747307524953"] {
  z-index: 8;
  top: 40px;
  left: calc(50% - 600px + 114px);
  width: 45px;
  height: 45px;
}
#rec1086334411 .tn-elem[data-elem-id="1747307524953"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 44px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 40px;
    left: calc(50% - 320px + 25px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 20px;
    left: calc(50% - 240px + 25px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 24px;
    left: 25px;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747307589558"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 9;
  top: 45px;
  left: calc(50% - 600px + 174px);
  width: 218px;
  height: auto;
}
#rec1086334411 .tn-elem[data-elem-id="1747307589558"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 45px;
    left: calc(50% - 480px + 104px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 45px;
    left: calc(50% - 320px + 85px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 25px;
    left: calc(50% - 240px + 71px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 35px;
    left: 80px;
    height: auto;
  }
  #rec1086334411 .tn-elem[data-elem-id="1747307589558"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1747307675864"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 10;
  top: 93px;
  left: calc(50% - 600px + 120px);
  width: 423px;
  height: auto;
}
#rec1086334411 .tn-elem[data-elem-id="1747307675864"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 93px;
    left: calc(50% - 480px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 93px;
    left: calc(50% - 320px + 30px);
    width: 282px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 73px;
    left: calc(50% - 240px + 30px);
    width: 412px;
    height: auto;
  }
  #rec1086334411 .tn-elem[data-elem-id="1747307675864"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 75px;
    left: 30px;
    width: 269px;
    height: auto;
  }
  #rec1086334411 .tn-elem[data-elem-id="1747307675864"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1748612042955"] {
  color: #ffffff;
  z-index: 12;
  top: -6px;
  left: calc(50% - 600px + 74px);
  width: 12px;
  height: auto;
}
#rec1086334411 .tn-elem[data-elem-id="1748612042955"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: -6px;
    left: calc(50% - 480px + 4px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: -6px;
    left: calc(50% - 320px + 4px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: 5px;
    left: calc(50% - 240px + 5px);
    height: auto;
  }
  #rec1086334411 .tn-elem[data-elem-id="1748612042955"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: 6px;
    left: 4px;
    height: auto;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1748612049828"] {
  color: #ffffff;
  z-index: 15;
  top: 248px;
  left: calc(50% - 600px + 573px);
  width: 12px;
  height: auto;
}
#rec1086334411 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 230px;
    left: calc(50% - 480px + 504px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 280px;
    left: calc(50% - 320px + 303px);
    width: 13px;
    height: auto;
  }
  #rec1086334411 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 196px;
    left: calc(50% - 240px + 463px);
    width: 12px;
    height: auto;
  }
  #rec1086334411 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 0.6;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 266px;
    left: 303px;
    height: auto;
  }
}
#rec1086334411 .tn-elem[data-elem-id="1748517615588"] {
  z-index: 16;
  top: 10px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 255px;
}
#rec1086334411 .tn-elem[data-elem-id="1748517615588"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086334411 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 10px;
    left: calc(50% - 480px + 550px);
    width: 410px;
    height: 244px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086334411 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 329px);
    width: 300px;
    height: 287px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086334411 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 18px;
    left: calc(50% - 240px + 674px);
    width: 460px;
    height: 249px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086334411 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 18px;
    left: 674px;
    width: 300px;
    height: 262px;
  }
}

/* ---- assets/inline/css/index-e7ee7ba631c5.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-250cd10ba79d.css ---- */
#rec1038917196 .t396__artboard {
  height: 299px;
  background-color: #000000;
}
#rec1038917196 .t396__filter {
  height: 299px;
}
#rec1038917196 .t396__carrier {
  height: 299px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .t396__artboard,
  #rec1038917196 .t396__filter,
  #rec1038917196 .t396__carrier {
    height: 275px;
  }
  #rec1038917196 .t396__filter {
  }
  #rec1038917196 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .t396__artboard,
  #rec1038917196 .t396__filter,
  #rec1038917196 .t396__carrier {
    height: 665px;
  }
  #rec1038917196 .t396__filter {
  }
  #rec1038917196 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .t396__artboard,
  #rec1038917196 .t396__filter,
  #rec1038917196 .t396__carrier {
    height: 492px;
  }
  #rec1038917196 .t396__filter {
  }
  #rec1038917196 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .t396__artboard,
  #rec1038917196 .t396__filter,
  #rec1038917196 .t396__carrier {
    height: 1295px;
  }
  #rec1038917196 .t396__filter {
  }
  #rec1038917196 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: -1px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 185px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: -1px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    width: 139px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    width: 139px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    line-height: 1;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747300672649"] {
  z-index: 3;
  top: 58px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1038917196 .tn-elem[data-elem-id="1747300672649"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 58px;
    left: calc(50% - 480px + 10px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 10px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 41px;
    left: calc(50% - 240px + 10px);
    width: 218px;
    height: 218px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 35px;
    left: 14px;
    width: 300px;
    height: 300px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747301686516"] {
  color: transparent;
  background-image: linear-gradient(
    0.26turn,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  text-align: center;
  z-index: 3;
  top: 161px;
  left: calc(50% - 600px + 96px);
  width: 208px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.26turn,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 159px;
    left: calc(50% - 480px + 46px);
    width: 143px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 149px;
    left: calc(50% - 320px + 59px);
    width: 194px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 126px;
    left: calc(50% - 240px + 46px);
    width: 144px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 140px;
    left: 40px;
    width: 198px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] {
    text-align: left;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 20px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747307081956"] {
  color: #000000;
  z-index: 3;
  top: 211px;
  left: calc(50% - 600px + 99px);
  width: 211px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 211px;
    left: calc(50% - 480px + 25px);
    width: 179px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 211px;
    left: calc(50% - 320px + 34px);
    width: 243px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 29px);
    width: 180px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 200px;
    left: 40px;
    width: 247px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747306816540"] {
  z-index: 3;
  top: 84px;
  left: calc(50% - 600px + 120px);
  width: 50px;
  height: 50px;
}
#rec1038917196 .tn-elem[data-elem-id="1747306816540"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 84px;
    left: calc(50% - 480px + 87px);
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 78px;
    left: calc(50% - 320px + 50px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 61px;
    left: calc(50% - 240px + 40px);
    width: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 61px;
    left: 40px;
    width: 51px;
    height: 51px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747301018731"] {
  z-index: 3;
  top: 58px;
  left: calc(50% - 600px + 347px);
  width: 240px;
  height: 240px;
}
#rec1038917196 .tn-elem[data-elem-id="1747301018731"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 58px;
    left: calc(50% - 480px + 252px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 338px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 41px;
    left: calc(50% - 240px + 253px);
    width: 218px;
    height: 218px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 675px;
    left: 14px;
    width: 300px;
    height: 300px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747307127833"] {
  color: #000000;
  z-index: 3;
  top: 211px;
  left: calc(50% - 600px + 362px);
  width: 213px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 210px;
    left: calc(50% - 480px + 267px);
    width: 193px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 211px;
    left: calc(50% - 320px + 353px);
    width: 262px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 265px);
    width: 194px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 840px;
    left: 40px;
    width: 243px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747306996972"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 161px;
  left: calc(50% - 600px + 376px);
  width: 181px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 159px;
    left: calc(50% - 480px + 286px);
    width: 146px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 151px;
    left: calc(50% - 320px + 384px);
    width: 198px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 126px;
    left: calc(50% - 240px + 287px);
    width: 147px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 780px;
    left: 40px;
    width: 202px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] {
    text-align: left;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 20px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
  z-index: 3;
  top: 84px;
  left: calc(50% - 600px + 387px);
  width: 50px;
  height: 50px;
}
#rec1038917196 .tn-elem[data-elem-id="1747306938582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 84px;
    left: calc(50% - 480px + 329px);
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 78px;
    left: calc(50% - 320px + 378px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 61px;
    left: calc(50% - 240px + 283px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 701px;
    left: 40px;
    width: 51px;
    height: 51px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747301030509"] {
  z-index: 3;
  top: 58px;
  left: calc(50% - 600px + 614px);
  width: 240px;
  height: 240px;
}
#rec1038917196 .tn-elem[data-elem-id="1747301030509"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 58px;
    left: calc(50% - 480px + 494px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 370px;
    left: calc(50% - 320px + 10px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 274px;
    left: calc(50% - 240px + 10px);
    width: 218px;
    height: 218px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 355px;
    left: 14px;
    width: 300px;
    height: 300px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747307214822"] {
  color: #000000;
  z-index: 3;
  top: 211px;
  left: calc(50% - 600px + 634px);
  width: 221px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 210px;
    left: calc(50% - 480px + 509px);
    width: 193px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 543px;
    left: calc(50% - 320px + 25px);
    width: 262px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 404px;
    left: calc(50% - 240px + 21px);
    width: 195px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 540px;
    left: 40px;
    width: 268px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747307011903"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 151px;
  left: calc(50% - 600px + 628px);
  width: 212px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 165px;
    left: calc(50% - 480px + 516px);
    width: 153px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 473px;
    left: calc(50% - 320px + 52px);
    width: 208px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 359px;
    left: calc(50% - 240px + 41px);
    width: 155px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 460px;
    left: 40px;
    width: 213px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] {
    text-align: left;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 20px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
  z-index: 3;
  top: 84px;
  left: calc(50% - 600px + 654px);
  width: 50px;
  height: 50px;
}
#rec1038917196 .tn-elem[data-elem-id="1747306952954"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 90px;
    left: calc(50% - 480px + 520px);
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 400px;
    left: calc(50% - 320px + 50px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 294px;
    left: calc(50% - 240px + 40px);
    width: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 381px;
    left: 36px;
    width: 51px;
    height: 51px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747301037908"] {
  z-index: 3;
  top: 58px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1038917196 .tn-elem[data-elem-id="1747301037908"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 58px;
    left: calc(50% - 480px + 735px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 370px;
    left: calc(50% - 320px + 337px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 274px;
    left: calc(50% - 240px + 253px);
    width: 218px;
    height: 218px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 995px;
    left: 14px;
    width: 300px;
    height: 300px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
  z-index: 3;
  top: 84px;
  left: calc(50% - 600px + 921px);
  width: 50px;
  height: 50px;
}
#rec1038917196 .tn-elem[data-elem-id="1747306970522"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 84px;
    left: calc(50% - 480px + 812px);
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 400px;
    left: calc(50% - 320px + 377px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 294px;
    left: calc(50% - 240px + 283px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 1021px;
    left: 40px;
    width: 51px;
    height: 51px;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747307260660"] {
  color: #000000;
  z-index: 3;
  top: 211px;
  left: calc(50% - 600px + 902px);
  width: 213px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 205px;
    left: calc(50% - 480px + 750px);
    width: 189px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 543px;
    left: calc(50% - 320px + 358px);
    width: 249px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 404px;
    left: calc(50% - 240px + 269px);
    width: 185px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 1160px;
    left: 40px;
    width: 254px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 0.9;
    background-size: cover;
  }
}
#rec1038917196 .tn-elem[data-elem-id="1747307038148"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 161px;
  left: calc(50% - 600px + 895px);
  width: 212px;
  height: auto;
}
#rec1038917196 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 159px;
    left: calc(50% - 480px + 782px);
    width: 120px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 473px;
    left: calc(50% - 320px + 401px);
    width: 163px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 359px;
    left: calc(50% - 240px + 301px);
    width: 121px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 1100px;
    left: 40px;
    width: 193px;
    height: auto;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] {
    text-align: left;
  }
  #rec1038917196 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 20px;
    line-height: 0.9;
    background-size: cover;
  }
}

/* ---- assets/inline/css/index-c9f7d32fc507.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-a7a482dbb3ff.css ---- */
#rec1065451616 .t396__artboard {
  height: 470px;
  background-color: #000000;
  overflow: visible !important;
}
#rec1065451616 .t396__filter {
  height: 470px;
}
#rec1065451616 .t396__carrier {
  height: 470px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1065451616 .t396__artboard,
  #rec1065451616 .t396__filter,
  #rec1065451616 .t396__carrier {
    height: 444px;
  }
  #rec1065451616 .t396__filter {
  }
  #rec1065451616 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1065451616 .t396__artboard,
  #rec1065451616 .t396__filter,
  #rec1065451616 .t396__carrier {
    height: 374px;
  }
  #rec1065451616 .t396__filter {
  }
  #rec1065451616 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1065451616 .t396__artboard,
  #rec1065451616 .t396__filter,
  #rec1065451616 .t396__carrier {
    height: 374px;
  }
  #rec1065451616 .t396__filter {
  }
  #rec1065451616 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1065451616 .t396__artboard,
  #rec1065451616 .t396__filter,
  #rec1065451616 .t396__carrier {
    height: 383px;
  }
  #rec1065451616 .t396__filter {
  }
  #rec1065451616 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
  z-index: 3;
  top: 22px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 451px;
}
#rec1065451616 .tn-elem[data-elem-id="1736531538406"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
    display: table;
    top: 9px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 10px);
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
    display: table;
    top: 9px;
    left: calc(50% - 240px + 10px);
    width: 461px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065451616 .tn-elem[data-elem-id="1736531538406"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 301px;
    height: 451px;
  }
}
#rec1065451616 .tn-elem[data-elem-id="1748621694120"] {
  z-index: 4;
  top: 456px;
  left: calc(50% - 600px + 0px);
  width: 1300px;
  height: 17px;
}
#rec1065451616 .tn-elem[data-elem-id="1748621694120"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621694120"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621694120"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621694120"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621694120"] {
    display: table;
  }
}
#rec1065451616 .tn-elem[data-elem-id="1748621731965"] {
  color: #ffffff;
  z-index: 5;
  top: 22px !important;
  left: calc(50% - 600px + 80px) !important;
  width: 12px;
  height: auto;
  transform: none !important;
}
#rec1065451616 .tn-elem[data-elem-id="1748621731965"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621731965"] {
    display: table;
    top: 9px !important;
    left: calc(50% - 480px + 10px) !important;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621731965"] {
    display: table;
    top: 9px !important;
    left: calc(50% - 320px + 10px) !important;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621731965"] {
    display: table;
    top: 9px !important;
    left: calc(50% - 240px + 10px) !important;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621731965"] {
    display: table;
    top: 1px !important;
    left: 10px !important;
    height: auto;
  }
}
#rec1065451616 .tn-elem[data-elem-id="1748621743536"] {
  color: #ffffff;
  z-index: 6;
  top: 473px !important;
  left: calc(50% - 600px + 1120px) !important;
  width: 12px;
  height: auto;
}
#rec1065451616 .tn-elem[data-elem-id="1748621743536"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621743536"] {
    display: table;
    top: 460px !important;
    left: calc(50% - 480px + 950px) !important;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621743536"] {
    display: table;
    top: 460px !important;
    left: calc(50% - 320px + 630px) !important;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621743536"] {
    display: table;
    top: 460px !important;
    left: calc(50% - 240px + 471px) !important;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1065451616 .tn-elem[data-elem-id="1748621743536"] {
    display: table;
    top: 452px !important;
    left: 311px !important;
    height: auto;
  }
}

/* ---- assets/inline/css/index-accc566ac296.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-382f947dcf4b.css ---- */
#rec1051508891 .t396__artboard {
  height: 695px;
  background-color: #000000;
}
#rec1051508891 .t396__filter {
  height: 695px;
}
#rec1051508891 .t396__carrier {
  height: 695px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .t396__artboard,
  #rec1051508891 .t396__filter,
  #rec1051508891 .t396__carrier {
  }
  #rec1051508891 .t396__filter {
  }
  #rec1051508891 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .t396__artboard,
  #rec1051508891 .t396__filter,
  #rec1051508891 .t396__carrier {
    height: 960px;
  }
  #rec1051508891 .t396__artboard {
    background-color: #000000;
  }
  #rec1051508891 .t396__filter {
  }
  #rec1051508891 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .t396__artboard,
  #rec1051508891 .t396__filter,
  #rec1051508891 .t396__carrier {
    height: 1670px;
  }
  #rec1051508891 .t396__artboard {
    background-color: #000000;
  }
  #rec1051508891 .t396__filter {
  }
  #rec1051508891 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .t396__artboard,
  #rec1051508891 .t396__filter,
  #rec1051508891 .t396__carrier {
    height: 1073px;
  }
  #rec1051508891 .t396__artboard {
    background-color: #000000;
  }
  #rec1051508891 .t396__filter {
  }
  #rec1051508891 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429165382"] {
  z-index: 3;
  top: 290px;
  left: calc(50% - 600px + 370px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429165382"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429165382"] {
    display: table;
    top: 272px;
    left: calc(50% - 480px + 271px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429165382"] {
    display: table;
    top: 267px;
    left: calc(50% - 320px + 268px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429165382"] {
    display: table;
    top: 993px;
    left: calc(50% - 240px + 1088px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429165382"] {
    display: table;
    top: 563px;
    left: 1108px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429852512"] {
  z-index: 4;
  top: 634px;
  left: calc(50% - 600px + 370px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429852512"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429852512"] {
    display: table;
    top: 583px;
    left: calc(50% - 480px + 271px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429852512"] {
    display: table;
    top: 897px;
    left: calc(50% - 320px + 272px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429852512"] {
    display: table;
    top: 876px;
    left: calc(50% - 240px + 392px);
    width: 154px;
    height: 154px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743429852512"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429852512"] {
    display: table;
    top: 540px;
    left: 233px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743493001305"] {
  z-index: 5;
  top: 2px;
  left: calc(50% - 600px + 1508px);
  width: 100px;
  height: 100px;
}
#rec1051508891 .tn-elem[data-elem-id="1743493001305"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493001305"] {
    display: table;
    top: 307px;
    left: calc(50% - 480px + 1421px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493001305"] {
    display: table;
    top: 764px;
    left: calc(50% - 320px + 814px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493001305"] {
    display: table;
    top: 1203px;
    left: calc(50% - 240px + -64px);
    width: 154px;
    height: 154px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743493001305"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493001305"] {
    display: table;
    top: 750px;
    left: -66px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743493004015"] {
  z-index: 6;
  top: 2px;
  left: calc(50% - 600px + 1642px);
  width: 100px;
  height: 100px;
}
#rec1051508891 .tn-elem[data-elem-id="1743493004015"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493004015"] {
    display: table;
    top: 453px;
    left: calc(50% - 480px + 1894px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493004015"] {
    display: table;
    top: 881px;
    left: calc(50% - 320px + 868px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493004015"] {
    display: table;
    top: 878px;
    left: calc(50% - 240px + -64px);
    width: 154px;
    height: 154px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743493004015"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493004015"] {
    display: table;
    top: 540px;
    left: -66px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743493005182"] {
  z-index: 7;
  top: 2px;
  left: calc(50% - 600px + 1784px);
  width: 100px;
  height: 100px;
}
#rec1051508891 .tn-elem[data-elem-id="1743493005182"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493005182"] {
    display: table;
    top: 353px;
    left: calc(50% - 480px + 1728px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493005182"] {
    display: table;
    top: 713px;
    left: calc(50% - 320px + 941px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493005182"] {
    display: table;
    top: 1202px;
    left: calc(50% - 240px + 393px);
    width: 154px;
    height: 154px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743493005182"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743493005182"] {
    display: table;
    top: 750px;
    left: 233px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429895424"] {
  z-index: 8;
  top: -55px;
  left: calc(50% - 600px + 370px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429895424"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743429895424"] .tn-atom {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429895424"] {
    display: table;
    top: -40px;
    left: calc(50% - 480px + 271px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429895424"] {
    display: table;
    top: -48px;
    left: calc(50% - 320px + 268px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429895424"] {
    display: table;
    top: 619px;
    left: calc(50% - 240px + 393px);
    width: 154px;
    height: 154px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743429895424"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429895424"] {
    display: table;
    top: 381px;
    left: 233px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430044851"] {
  z-index: 9;
  top: 2px;
  left: calc(50% - 600px + 24px);
  width: 115px;
  height: 115px;
}
#rec1051508891 .tn-elem[data-elem-id="1743430044851"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743430044851"] .tn-atom {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430044851"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + -41px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430044851"] {
    display: table;
    top: 4px;
    left: calc(50% - 320px + -41px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430044851"] {
    display: table;
    top: 4px;
    left: calc(50% - 240px + -64px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430044851"] {
    display: table;
    top: 4px;
    left: -64px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430142732"] {
  z-index: 10;
  top: -53px;
  left: calc(50% - 600px + 1005px);
  width: 115px;
  height: 115px;
}
#rec1051508891 .tn-elem[data-elem-id="1743430142732"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743430142732"] .tn-atom {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430142732"] {
    display: table;
    top: -39px;
    left: calc(50% - 480px + 843px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430142732"] {
    display: table;
    top: -48px;
    left: calc(50% - 320px + 525px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430142732"] {
    display: table;
    top: -73px;
    left: calc(50% - 240px + 316px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430142732"] {
    display: table;
    top: -72px;
    left: 156px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430168244"] {
  z-index: 11;
  top: 577px;
  left: calc(50% - 600px + 1058px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743430168244"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743430168244"] .tn-atom {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  transform: rotate(270deg);
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430168244"] {
    display: table;
    top: 531px;
    left: calc(50% - 480px + 894px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430168244"] {
    display: table;
    top: 213px;
    left: calc(50% - 320px + 577px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430168244"] {
    display: table;
    top: 722px;
    left: calc(50% - 240px + 845px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430168244"] {
    display: table;
    top: 292px;
    left: 865px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430093144"] {
  z-index: 12;
  top: 290px;
  left: calc(50% - 600px + 82px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743430093144"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430093144"] {
    display: table;
    top: 272px;
    left: calc(50% - 480px + 10px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430093144"] {
    display: table;
    top: 844px;
    left: calc(50% - 320px + 578px);
    width: 105px;
    height: 105px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430093144"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430093144"] {
    display: table;
    top: 1496px;
    left: calc(50% - 240px + 390px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430093144"] {
    display: table;
    top: 917px;
    left: 232px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430124163"] {
  z-index: 13;
  top: 634px;
  left: calc(50% - 600px + 82px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743430124163"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430124163"] {
    display: table;
    top: 583px;
    left: calc(50% - 480px + 10px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430124163"] {
    display: table;
    top: 897px;
    left: calc(50% - 320px + 10px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430124163"] {
    display: table;
    top: 1572px;
    left: calc(50% - 240px + 10px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430124163"] {
    display: table;
    top: 993px;
    left: 10px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429922562"] {
  z-index: 14;
  top: -55px;
  left: calc(50% - 600px + 714px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429922562"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743429922562"] .tn-atom {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429922562"] {
    display: table;
    top: -40px;
    left: calc(50% - 480px + 583px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429922562"] {
    display: table;
    top: 266px;
    left: calc(50% - 320px + -42px);
  }
  #rec1051508891 .tn-elem[data-elem-id="1743429922562"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429922562"] {
    display: table;
    top: 264px;
    left: calc(50% - 240px + -65px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429922562"] {
    display: table;
    top: 185px;
    left: -65px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429944362"] {
  z-index: 15;
  top: 290px;
  left: calc(50% - 600px + 1058px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429944362"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743429944362"] .tn-atom {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  transform: rotate(270deg);
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429944362"] {
    display: table;
    top: 272px;
    left: calc(50% - 480px + 894px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429944362"] {
    display: table;
    top: 268px;
    left: calc(50% - 320px + 843px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429944362"] {
    display: table;
    top: 264px;
    left: calc(50% - 240px + 393px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429944362"] {
    display: table;
    top: 185px;
    left: 232px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429876975"] {
  z-index: 16;
  top: 634px;
  left: calc(50% - 600px + 714px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429876975"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429876975"] {
    display: table;
    top: 583px;
    left: calc(50% - 480px + 583px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429876975"] {
    display: table;
    top: 583px;
    left: calc(50% - 320px + -42px);
  }
  #rec1051508891 .tn-elem[data-elem-id="1743429876975"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429876975"] {
    display: table;
    top: 619px;
    left: calc(50% - 240px + -64px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429876975"] {
    display: table;
    top: 381px;
    left: -66px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743429226518"] {
  z-index: 17;
  top: 290px;
  left: calc(50% - 600px + 714px);
  width: 115px;
  height: 116px;
}
#rec1051508891 .tn-elem[data-elem-id="1743429226518"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429226518"] {
    display: table;
    top: 272px;
    left: calc(50% - 480px + 583px);
    width: 105px;
    height: 105px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429226518"] {
    display: table;
    top: 583px;
    left: calc(50% - 320px + 268px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429226518"] {
    display: table;
    top: 1226px;
    left: calc(50% - 240px + 1274px);
    width: 154px;
    height: 154px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743429226518"] {
    display: table;
    top: 796px;
    left: 1294px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743428927976"] {
  z-index: 18;
  top: 368px;
  left: calc(50% - 600px + 791px);
  width: 306px;
  height: 306px;
}
#rec1051508891 .tn-elem[data-elem-id="1743428927976"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428927976"] {
    display: table;
    top: 342px;
    left: calc(50% - 480px + 652px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428927976"] {
    display: table;
    top: 656px;
    left: calc(50% - 320px + 341px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428927976"] {
    display: table;
    top: 1293px;
    left: calc(50% - 240px + 25px);
    width: 430px;
    height: 340px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428927976"] {
    display: table;
    top: 841px;
    left: 24px;
    width: 273px;
    height: 215px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430357879"] {
  color: #000000;
  z-index: 19;
  top: 392px;
  left: calc(50% - 600px + 816px);
  width: 264px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430357879"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 25px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] {
    display: table;
    top: 364px;
    left: calc(50% - 480px + 675px);
    width: 229px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] {
    display: table;
    top: 677px;
    left: calc(50% - 320px + 364px);
    width: px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] {
    display: table;
    top: 1318px;
    left: calc(50% - 240px + 70px);
    width: 320px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] .tn-atom {
    font-size: 35px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] {
    display: table;
    top: 861px;
    left: 44px;
    width: 243px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430357879"] .tn-atom {
    font-size: 25px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1748342790658"] {
  z-index: 21;
  top: 585px;
  left: calc(50% - 600px + 819px);
  width: 250px;
  height: 60px;
}
@media (min-width: 1200px) {
  #rec1051508891
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748342790658"] {
    opacity: 0;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1748342790658"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1748342790658"] {
    display: table;
    top: 539px;
    left: calc(50% - 480px + 674px);
    width: 230px;
    height: 56px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1748342790658"] {
    display: table;
    top: 855px;
    left: calc(50% - 320px + 367px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1748342790658"] {
    display: table;
    top: 1514px;
    left: calc(50% - 240px + 70px);
    width: 340px;
    height: 74px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1748342790658"] {
    display: table;
    top: 981px;
    left: 44px;
    width: 233px;
    height: 55px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430495050"] {
  color: #ffffff;
  text-align: center;
  z-index: 22;
  top: 585px;
  left: calc(50% - 600px + 819px);
  width: 250px;
  height: 60px;
}
#rec1051508891 .tn-elem[data-elem-id="1743430495050"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  text-transform: uppercase;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051508891 .tn-elem[data-elem-id="1743430495050"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
    border-color: #000000;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] {
    display: block;
    top: 539px;
    left: calc(50% - 480px + 675px);
    width: 230px;
    height: 56px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] {
    display: block;
    top: 855px;
    left: calc(50% - 320px + 367px);
    width: 232px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] {
    display: block;
    top: 1514px;
    left: calc(50% - 240px + 70px);
    width: 339px;
    height: 74px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] {
    display: block;
    top: 981px;
    left: 44px;
    width: 233px;
    height: 55px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430495050"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1749212961811"] {
  z-index: 25;
  top: 368px;
  left: calc(50% - 600px + 447px);
  width: 306px;
  height: 306px;
}
#rec1051508891 .tn-elem[data-elem-id="1749212961811"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1749212961811"] {
    display: table;
    top: 342px;
    left: calc(50% - 480px + 342px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1749212961811"] {
    display: table;
    top: 342px;
    left: calc(50% - 320px + 342px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1749212961811"] {
    display: table;
    top: 343px;
    left: calc(50% - 240px + 480px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1749212961811"] {
    display: table;
    top: 343px;
    left: 480px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743428919024"] {
  z-index: 26;
  top: 368px;
  left: calc(50% - 600px + 98px);
  width: 306px;
  height: 306px;
}
#rec1051508891 .tn-elem[data-elem-id="1743428919024"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428919024"] {
    display: table;
    top: 342px;
    left: calc(50% - 480px + 25px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428919024"] {
    display: table;
    top: 339px;
    left: calc(50% - 320px + 24px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428919024"] {
    display: table;
    top: 712px;
    left: calc(50% - 240px + 25px);
    width: 430px;
    height: 227px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428919024"] {
    display: table;
    top: 471px;
    left: 23px;
    width: 273px;
    height: 133px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430334897"] {
  color: #000000;
  z-index: 27;
  top: 392px;
  left: calc(50% - 600px + 123px);
  width: 146px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430334897"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 25px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] {
    display: table;
    top: 364px;
    left: calc(50% - 480px + 48px);
    width: 170px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] {
    display: table;
    top: 360px;
    left: calc(50% - 320px + 47px);
    width: px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] {
    display: table;
    top: 757px;
    left: calc(50% - 240px + 70px);
    width: 251px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] .tn-atom {
    font-size: 35px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] {
    display: table;
    top: 491px;
    left: 43px;
    width: 150px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430334897"] .tn-atom {
    font-size: 25px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430416363"] {
  color: #000000;
  z-index: 28;
  top: 585px;
  left: calc(50% - 600px + 123px);
  width: 250px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430416363"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] {
    display: table;
    top: 539px;
    left: calc(50% - 480px + 48px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] {
    display: table;
    top: 514px;
    left: calc(50% - 320px + 47px);
    width: px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] {
    display: table;
    top: 849px;
    left: calc(50% - 240px + 70px);
    width: 336px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] {
    display: table;
    top: 536px;
    left: 43px;
    width: 241px;
    height: 48px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430416363"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743428874313"] {
  z-index: 29;
  top: 23px;
  left: calc(50% - 600px + 791px);
  width: 306px;
  height: 306px;
}
#rec1051508891 .tn-elem[data-elem-id="1743428874313"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428874313"] {
    display: table;
    top: 30px;
    left: calc(50% - 480px + 653px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428874313"] {
    display: table;
    top: 656px;
    left: calc(50% - 320px + 25px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428874313"] {
    display: table;
    top: 967px;
    left: calc(50% - 240px + 25px);
    width: 430px;
    height: 298px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428874313"] {
    display: table;
    top: 631px;
    left: 23px;
    width: 273px;
    height: 183px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430260687"] {
  color: #000000;
  z-index: 30;
  top: 48px;
  left: calc(50% - 600px + 816px);
  width: 188px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430260687"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 25px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] {
    display: table;
    top: 53px;
    left: calc(50% - 480px + 676px);
    width: 172px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] {
    display: table;
    top: 677px;
    left: calc(50% - 320px + 48px);
    width: 172px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] {
    display: table;
    top: 992px;
    left: calc(50% - 240px + 70px);
    width: 254px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] .tn-atom {
    font-size: 35px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] {
    display: table;
    top: 651px;
    left: 43px;
    width: 178px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430260687"] .tn-atom {
    font-size: 25px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430927787"] {
  color: #000000;
  z-index: 31;
  top: 205px;
  left: calc(50% - 600px + 816px);
  width: 250px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430927787"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 676px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] {
    display: table;
    top: 845px;
    left: calc(50% - 320px + 48px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] {
    display: table;
    top: 1160px;
    left: calc(50% - 240px + 70px);
    width: 335px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] {
    display: table;
    top: 746px;
    left: 45px;
    width: 238px;
    height: 48px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430927787"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743428864984"] {
  z-index: 32;
  top: 23px;
  left: calc(50% - 600px + 447px);
  width: 306px;
  height: 306px;
}
#rec1051508891 .tn-elem[data-elem-id="1743428864984"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428864984"] {
    display: table;
    top: 30px;
    left: calc(50% - 480px + 342px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428864984"] {
    display: table;
    top: 23px;
    left: calc(50% - 320px + 339px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428864984"] {
    display: table;
    top: 355px;
    left: calc(50% - 240px + 25px);
    width: 430px;
    height: 329px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428864984"] {
    display: table;
    top: 275px;
    left: 23px;
    width: 273px;
    height: 170px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430857344"] {
  color: #000000;
  z-index: 33;
  top: 48px;
  left: calc(50% - 600px + 472px);
  width: 188px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430857344"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 25px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] {
    display: table;
    top: 53px;
    left: calc(50% - 480px + 365px);
    width: 170px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] {
    display: table;
    top: 44px;
    left: calc(50% - 320px + 362px);
    width: px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] {
    display: table;
    top: 380px;
    left: calc(50% - 240px + 70px);
    width: 251px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] .tn-atom {
    font-size: 35px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] {
    display: table;
    top: 295px;
    left: 43px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430857344"] .tn-atom {
    font-size: 25px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743430900776"] {
  color: #000000;
  z-index: 34;
  top: 205px;
  left: calc(50% - 600px + 472px);
  width: 250px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743430900776"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 365px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] {
    display: table;
    top: 175px;
    left: calc(50% - 320px + 362px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] {
    display: table;
    top: 579px;
    left: calc(50% - 240px + 70px);
    width: 336px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] {
    display: table;
    top: 365px;
    left: 43px;
    width: 232px;
    height: 60px;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743430900776"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743428847488"] {
  z-index: 35;
  top: 23px;
  left: calc(50% - 600px + 102px);
  width: 306px;
  height: 306px;
}
#rec1051508891 .tn-elem[data-elem-id="1743428847488"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428847488"] {
    display: table;
    top: 30px;
    left: calc(50% - 480px + 30px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428847488"] {
    display: table;
    top: 23px;
    left: calc(50% - 320px + 26px);
    width: 276px;
    height: 276px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428847488"] {
    display: table;
    top: 20px;
    left: calc(50% - 240px + 25px);
    width: 430px;
    height: 307px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743428847488"] {
    display: table;
    top: 18px;
    left: 23px;
    width: 273px;
    height: 232px;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743431190750"] {
  color: #000000;
  z-index: 36;
  top: 48px;
  left: calc(50% - 600px + 127px);
  width: 255px;
  height: auto;
}
#rec1051508891 .tn-elem[data-elem-id="1743431190750"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 25px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] {
    display: table;
    top: 53px;
    left: calc(50% - 480px + 53px);
    width: 221px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] {
    display: table;
    top: 44px;
    left: calc(50% - 320px + 49px);
    width: px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] {
    display: table;
    top: 45px;
    left: calc(50% - 240px + 70px);
    width: 309px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] .tn-atom {
    font-size: 35px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] {
    display: table;
    top: 38px;
    left: 43px;
    width: 254px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431190750"] .tn-atom {
    font-size: 25px;
    background-size: cover;
  }
}
#rec1051508891 .tn-elem[data-elem-id="1743431250366"] {
  color: #000000;
  z-index: 37;
  top: 205px;
  left: calc(50% - 600px + 127px);
  width: 250px;
  height: 72px;
}
#rec1051508891 .tn-elem[data-elem-id="1743431250366"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 53px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] {
    display: table;
    top: 175px;
    left: calc(50% - 320px + 49px);
    width: 227px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] {
    display: table;
    top: 207px;
    left: calc(50% - 240px + 70px);
    width: 343px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] {
    display: table;
    top: 158px;
    left: 43px;
    width: 230px;
    height: auto;
  }
  #rec1051508891 .tn-elem[data-elem-id="1743431250366"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/index-85d5fd03b9be.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-4bef8b567f6e.css ---- */
#rec1031581486 .t396__artboard {
  height: 678px;
  background-color: #000000;
}
#rec1031581486 .t396__filter {
  height: 678px;
}
#rec1031581486 .t396__carrier {
  height: 678px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .t396__artboard,
  #rec1031581486 .t396__filter,
  #rec1031581486 .t396__carrier {
    height: 603px;
  }
  #rec1031581486 .t396__filter {
  }
  #rec1031581486 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .t396__artboard,
  #rec1031581486 .t396__filter,
  #rec1031581486 .t396__carrier {
    height: 1206px;
  }
  #rec1031581486 .t396__filter {
  }
  #rec1031581486 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .t396__artboard,
  #rec1031581486 .t396__filter,
  #rec1031581486 .t396__carrier {
    height: 1923px;
  }
  #rec1031581486 .t396__filter {
  }
  #rec1031581486 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .t396__artboard,
  #rec1031581486 .t396__filter,
  #rec1031581486 .t396__carrier {
    height: 1740px;
  }
  #rec1031581486 .t396__filter {
  }
  #rec1031581486 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1747752398389"] {
  z-index: 4;
  top: 33px;
  left: calc(50% - 600px + 80px);
  width: 330px;
  height: 258px;
}
#rec1031581486 .tn-elem[data-elem-id="1747752398389"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: 4px;
    left: calc(50% - 480px + 10px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: -6px;
    left: calc(50% - 320px + 10px);
    width: 289px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: -14px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736239293559"] {
  z-index: 5;
  top: 199px;
  left: calc(50% - 600px + 80px);
  width: 330px;
  height: 477px;
}
#rec1031581486 .tn-elem[data-elem-id="1736239293559"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 179px;
    left: calc(50% - 480px + 10px);
    width: 280px;
    height: 423px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736239293559"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 175px;
    left: calc(50% - 320px + 10px);
    width: 289px;
    height: 437px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 185px;
    left: calc(50% - 240px + 10px);
    width: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 151px;
    left: 10px;
    width: 300px;
    height: 374px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1735309006964"] {
  color: #000000;
  z-index: 6;
  top: 261px;
  left: calc(50% - 600px + 120px);
  width: 275px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 227px;
    left: calc(50% - 480px + 30px);
    width: 259px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 224px;
    left: calc(50% - 320px + 31px);
    width: 267px;
    height: 62px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 250px;
    left: calc(50% - 240px + 90px);
    width: 318px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 218px;
    left: 30px;
    width: 271px;
    height: 45px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1735309849618"] {
  color: #000000;
  z-index: 7;
  top: 210px;
  left: calc(50% - 600px + 120px);
  width: 202px;
  height: 31px;
}
#rec1031581486 .tn-elem[data-elem-id="1735309849618"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 176px;
    left: calc(50% - 480px + 30px);
    width: 218px;
    height: 44px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309849618"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 172px;
    left: calc(50% - 320px + 31px);
    width: 225px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 205px;
    left: calc(50% - 240px + 90px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 180px;
    left: 30px;
    width: 311px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736236837914"] {
  color: #000000;
  z-index: 8;
  top: 65px;
  left: calc(50% - 600px + 120px);
  width: 87px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 100px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 51px;
    left: calc(50% - 480px + 30px);
    width: 87px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 40px;
    left: calc(50% - 320px + 31px);
    width: 90px;
    height: 160px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 82px;
    left: calc(50% - 240px + 90px);
    width: 87px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 49px;
    left: 30px;
    width: 89px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736238074986"] {
  z-index: 9;
  top: 346px;
  left: calc(50% - 600px + 80px);
  width: 330px;
  height: 330px;
}
#rec1031581486 .tn-elem[data-elem-id="1736238074986"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238074986"] {
    display: table;
    top: 322px;
    left: calc(50% - 480px + 10px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238074986"] {
    display: table;
    top: 323px;
    left: calc(50% - 320px + 10px);
    width: 289px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238074986"] {
    display: table;
    top: 323px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 300px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238074986"] {
    display: table;
    top: 283px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736239417419"] {
  z-index: 11;
  top: 199px;
  left: calc(50% - 600px + 435px);
  width: 330px;
  height: 477px;
}
#rec1031581486 .tn-elem[data-elem-id="1736239417419"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 179px;
    left: calc(50% - 480px + 340px);
    width: 280px;
    height: 423px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736239417419"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 175px;
    left: calc(50% - 320px + 341px);
    width: 289px;
    height: 437px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 753px;
    left: calc(50% - 240px + 11px);
    width: 460px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 689px;
    left: 10px;
    width: 300px;
    height: 386px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1747752573499"] {
  z-index: 12;
  top: 33px;
  left: calc(50% - 600px + 435px);
  width: 330px;
  height: 258px;
}
#rec1031581486 .tn-elem[data-elem-id="1747752573499"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: 4px;
    left: calc(50% - 480px + 340px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: -6px;
    left: calc(50% - 320px + 341px);
    width: 289px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: 554px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: 538px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1735309135900"] {
  color: #000000;
  z-index: 13;
  top: 261px;
  left: calc(50% - 600px + 475px);
  width: 255px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 227px;
    left: calc(50% - 480px + 360px);
    width: 231px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 224px;
    left: calc(50% - 320px + 363px);
    width: 238px;
    height: 62px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 844px;
    left: calc(50% - 240px + 90px);
    width: 371px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 756px;
    left: 30px;
    width: 271px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736237354228"] {
  color: #000000;
  z-index: 14;
  top: 210px;
  left: calc(50% - 600px + 475px);
  width: 219px;
  height: 31px;
}
#rec1031581486 .tn-elem[data-elem-id="1736237354228"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 182px;
    left: calc(50% - 480px + 360px);
    width: auto;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237354228"] {
    text-align: left;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237354228"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 172px;
    left: calc(50% - 320px + 363px);
    width: 211px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 789px;
    left: calc(50% - 240px + 90px);
    width: 211px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 718px;
    left: 30px;
    width: 211px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736238148106"] {
  z-index: 15;
  top: 346px;
  left: calc(50% - 600px + 435px);
  width: 330px;
  height: 330px;
}
#rec1031581486 .tn-elem[data-elem-id="1736238148106"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238148106"] {
    display: table;
    top: 322px;
    left: calc(50% - 480px + 340px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238148106"] {
    display: table;
    top: 323px;
    left: calc(50% - 320px + 341px);
    width: 289px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238148106"] {
    display: table;
    top: 928px;
    left: calc(50% - 240px + 11px);
    width: 460px;
    height: 300px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238148106"] {
    display: table;
    top: 821px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736237289253"] {
  color: #000000;
  z-index: 16;
  top: 65px;
  left: calc(50% - 600px + 475px);
  width: 87px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 100px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 51px;
    left: calc(50% - 480px + 360px);
    width: 87px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 40px;
    left: calc(50% - 320px + 363px);
    width: 90px;
    height: 160px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 646px;
    left: calc(50% - 240px + 90px);
    width: 88px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 587px;
    left: 30px;
    width: 87px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1747752581807"] {
  z-index: 18;
  top: 33px;
  left: calc(50% - 600px + 790px);
  width: 330px;
  height: 258px;
}
#rec1031581486 .tn-elem[data-elem-id="1747752581807"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 4px;
    left: calc(50% - 480px + 670px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 576px;
    left: calc(50% - 320px + 11px);
    width: 289px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 1160px;
    left: calc(50% - 240px + 11px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 1076px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736239428204"] {
  z-index: 19;
  top: 199px;
  left: calc(50% - 600px + 790px);
  width: 330px;
  height: 477px;
}
#rec1031581486 .tn-elem[data-elem-id="1736239428204"] .tn-atom {
  border-width: 1px;
  border-radius: 5px 5px 5px 5px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 179px;
    left: calc(50% - 480px + 670px);
    width: 280px;
    height: 423px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736239428204"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 766px;
    left: calc(50% - 320px + 11px);
    width: 289px;
    height: 437px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 1359px;
    left: calc(50% - 240px + 10px);
    width: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 1227px;
    left: 10px;
    width: 300px;
    height: 386px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736237970522"] {
  color: #000000;
  z-index: 20;
  top: 261px;
  left: calc(50% - 600px + 830px);
  width: 254px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 227px;
    left: calc(50% - 480px + 690px);
    width: 264px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 817px;
    left: calc(50% - 320px + 33px);
    width: 264px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 1450px;
    left: calc(50% - 240px + 90px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 1294px;
    left: 30px;
    width: 271px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736237506627"] {
  color: #000000;
  z-index: 21;
  top: 210px;
  left: calc(50% - 600px + 830px);
  width: 208px;
  height: 31px;
}
#rec1031581486 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 176px;
    left: calc(50% - 480px + 690px);
    width: 208px;
    height: 44px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 765px;
    left: calc(50% - 320px + 33px);
    width: 208px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 1395px;
    left: calc(50% - 240px + 90px);
    width: 208px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 1256px;
    left: 30px;
    width: 236px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736237473197"] {
  color: #000000;
  z-index: 22;
  top: 65px;
  left: calc(50% - 600px + 830px);
  width: 87px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 100px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 51px;
    left: calc(50% - 480px + 690px);
    width: 87px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 633px;
    left: calc(50% - 320px + 33px);
    width: 87px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 1252px;
    left: calc(50% - 240px + 90px);
    width: 87px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 1125px;
    left: 30px;
    width: 87px;
    height: auto;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1736238164050"] {
  z-index: 23;
  top: 346px;
  left: calc(50% - 600px + 790px);
  width: 330px;
  height: 330px;
}
#rec1031581486 .tn-elem[data-elem-id="1736238164050"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238164050"] {
    display: table;
    top: 322px;
    left: calc(50% - 480px + 670px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238164050"] {
    display: table;
    top: 916px;
    left: calc(50% - 320px + 10px);
    width: 289px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238164050"] {
    display: table;
    top: 1534px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 300px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1736238164050"] {
    display: table;
    top: 1360px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1747900997963"] {
  z-index: 24;
  top: 594px;
  left: calc(50% - 600px + 120px);
  width: 260px;
  height: 47px;
}
@media (min-width: 1200px) {
  #rec1031581486
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747900997963"] {
    opacity: 0;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1747900997963"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 340px;
    left: calc(50% - 480px + -561px);
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 340px;
    left: calc(50% - 320px + -561px);
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 340px;
    left: calc(50% - 240px + -561px);
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 1660px;
    left: -289px;
    width: 260px;
    height: 20px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1735311801781"] {
  color: #ffffff;
  text-align: center;
  z-index: 25;
  top: 594px;
  left: calc(50% - 600px + 120px);
  width: 320px;
  height: 62px;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  border-radius: 0px 0px 0px 0px;
}
#rec1031581486 .tn-elem[data-elem-id="1735311801781"] .tn-atom {
  color: #ffffff;
  font-size: 16px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0.3s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1031581486 .tn-elem[data-elem-id="1735311801781"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1031581486 .tn-elem[data-elem-id="1735311801781"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735311801781"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 536px;
    left: calc(50% - 480px + 30px);
    width: 300px;
    height: 58px;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 545px;
    left: calc(50% - 320px + 29px);
    width: 280px;
    height: 55px;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 1864px;
    left: calc(50% - 240px + 10px);
    width: 459px;
    height: 58px;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 1680px;
    left: 10px;
    width: 300px;
    height: 58px;
  }
}
#rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 200, 200, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 26;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 726px;
  height: auto;
}
#rec1031581486 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 200, 200, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + 36px);
    width: auto;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + 13px);
    width: 455px;
    height: auto;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    font-size: 16px;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: 5px;
    width: 291px;
    height: 30px;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] {
    text-align: left;
  }
  #rec1031581486 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/index-46da384b3445.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-0c15c52fb5fb.css ---- */
#rec1110238761 .t396__artboard {
  height: 280px;
  background-color: #000000;
}
#rec1110238761 .t396__filter {
  height: 280px;
}
#rec1110238761 .t396__carrier {
  height: 280px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1110238761 .t396__artboard,
  #rec1110238761 .t396__filter,
  #rec1110238761 .t396__carrier {
  }
  #rec1110238761 .t396__filter {
  }
  #rec1110238761 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1110238761 .t396__artboard,
  #rec1110238761 .t396__filter,
  #rec1110238761 .t396__carrier {
    height: 130px;
  }
  #rec1110238761 .t396__filter {
  }
  #rec1110238761 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1110238761 .t396__artboard,
  #rec1110238761 .t396__filter,
  #rec1110238761 .t396__carrier {
  }
  #rec1110238761 .t396__filter {
  }
  #rec1110238761 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1110238761 .t396__artboard,
  #rec1110238761 .t396__filter,
  #rec1110238761 .t396__carrier {
    height: 90px;
  }
  #rec1110238761 .t396__filter {
  }
  #rec1110238761 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1110238761 .tn-elem[data-elem-id="1747914619161"] {
  color: #ffffff;
  z-index: 3;
  top: -69px;
  left: calc(50% - 600px + 73px);
  width: 1048px;
  height: auto;
}
#rec1110238761 .tn-elem[data-elem-id="1747914619161"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 270px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] {
    display: table;
    top: -69px;
    left: calc(50% - 480px + 5px);
    width: 945px;
    height: auto;
  }
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] .tn-atom {
    font-size: 270px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] {
    display: table;
    top: -43px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: auto;
  }
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] .tn-atom {
    font-size: 140px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] {
    display: table;
    top: -36px;
    height: auto;
  }
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] {
    display: table;
    top: -13px;
    width: 300px;
    height: auto;
  }
  #rec1110238761 .tn-elem[data-elem-id="1747914619161"] .tn-atom {
    font-size: 75px;
    background-size: cover;
  }
}
#rec1110238761 .tn-elem[data-elem-id="1747915152609"] {
  z-index: 4;
  top: -55px;
  left: calc(50% - 600px + 1121px);
  width: 295px;
  height: 461px;
}
#rec1110238761 .tn-elem[data-elem-id="1747915152609"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1110238761 .tn-elem[data-elem-id="1747915152609"] {
    display: table;
    top: -77px;
    left: calc(50% - 480px + 950px);
  }
}
@media screen and (max-width: 959px) {
  #rec1110238761 .tn-elem[data-elem-id="1747915152609"] {
    display: table;
    top: -134px;
    left: calc(50% - 320px + 630px);
  }
}
@media screen and (max-width: 639px) {
  #rec1110238761 .tn-elem[data-elem-id="1747915152609"] {
    display: table;
    left: calc(50% - 240px + 470px);
  }
}
@media screen and (max-width: 479px) {
  #rec1110238761 .tn-elem[data-elem-id="1747915152609"] {
    display: table;
    top: -157px;
    left: 310px;
  }
}

/* ---- assets/inline/css/index-7078917030de.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-3e0f65150fa5.css ---- */
#rec1190205346 .t396__artboard {
  height: 493px;
  background-color: #000000;
}
#rec1190205346 .t396__filter {
  height: 493px;
}
#rec1190205346 .t396__carrier {
  height: 493px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .t396__artboard,
  #rec1190205346 .t396__filter,
  #rec1190205346 .t396__carrier {
    height: 427px;
  }
  #rec1190205346 .t396__filter {
  }
  #rec1190205346 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .t396__artboard,
  #rec1190205346 .t396__filter,
  #rec1190205346 .t396__carrier {
    height: 630px;
  }
  #rec1190205346 .t396__filter {
  }
  #rec1190205346 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .t396__artboard,
  #rec1190205346 .t396__filter,
  #rec1190205346 .t396__carrier {
    height: 428px;
  }
  #rec1190205346 .t396__filter {
  }
  #rec1190205346 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .t396__artboard,
  #rec1190205346 .t396__filter,
  #rec1190205346 .t396__carrier {
    height: 646px;
  }
  #rec1190205346 .t396__filter {
  }
  #rec1190205346 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 553px;
  height: auto;
}
#rec1190205346 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 553px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 10px);
    width: 402px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 289px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] {
    text-align: left;
  }
  #rec1190205346 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471251594"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 292px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 200px;
}
#rec1190205346 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190205346 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 247px;
    left: calc(50% - 480px + 490px);
    width: 460px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 453px;
    left: calc(50% - 320px + 10px);
    width: 380px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 318px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 269px;
    left: 10px;
    width: 300px;
    height: 122px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471251630"] {
  color: #000000;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 660px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471251630"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 530px);
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 493px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 338px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 289px;
    left: 30px;
    width: 205px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471251679"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 660px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471251679"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 530px);
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 493px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 338px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 289px;
    left: 30px;
    width: 205px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682728874"] {
  color: #000000;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 660px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
#rec1190205346 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 535px);
    width: 302px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 544px;
    left: calc(50% - 320px + 55px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 371px;
    left: calc(50% - 240px + 30px);
    width: 178px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 326px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683748511"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 660px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753683748511"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 535px);
    width: 302px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 544px;
    left: calc(50% - 320px + 55px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 371px;
    left: calc(50% - 240px + 30px);
    width: 178px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 326px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471178299"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 292px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 200px;
}
#rec1190205346 .tn-elem[data-elem-id="1751471178299"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190205346 .tn-elem[data-elem-id="1751471178299"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178299"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 247px;
    left: calc(50% - 480px + 10px);
    width: 460px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 257px;
    left: calc(50% - 320px + 10px);
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 189px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 152px;
    left: 10px;
    width: 300px;
    height: 107px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471178299"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471178334"] {
  color: #000000;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471178334"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471178334"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 50px);
    width: 148px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 209px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471178334"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 172px;
    left: 30px;
    width: 202px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471178334"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471178376"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471178376"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471178376"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 50px);
    width: 148px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 209px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471178376"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 172px;
    left: 30px;
    width: 202px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471178376"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683709848"] {
  color: #000000;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
#rec1190205346 .tn-elem[data-elem-id="1753683709848"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 50px);
    width: 231px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 242px;
    left: calc(50% - 240px + 30px);
    width: 186px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683709848"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 209px;
    left: 30px;
    width: 142px;
    height: 30px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683709848"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682380625"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682380625"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682380625"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 50px);
    width: 231px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 242px;
    left: calc(50% - 240px + 30px);
    width: 186px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682380625"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 209px;
    left: 30px;
    width: 142px;
    height: 30px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682380625"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471010517"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 800px);
  width: 320px;
  height: 200px;
}
#rec1190205346 .tn-elem[data-elem-id="1751471010517"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190205346 .tn-elem[data-elem-id="1751471010517"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010517"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 51px;
    left: calc(50% - 480px + 650px);
    width: 300px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 257px;
    left: calc(50% - 320px + 330px);
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 190px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 528px;
    left: 10px;
    width: 300px;
    height: 117px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471010517"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471010553"] {
  color: #000000;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 840px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471010553"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471010553"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 690px);
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 370px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 210px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471010553"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 548px;
    left: 30px;
    width: 191px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471010553"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471010583"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 840px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471010583"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751471010583"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 690px);
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 370px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 210px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471010583"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 548px;
    left: 30px;
    width: 191px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751471010583"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683665772"] {
  color: #000000;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 840px);
  width: 266px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753683665772"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683665772"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 690px);
    width: 246px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 370px);
    width: 270px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 243px;
    left: calc(50% - 240px + 270px);
    width: 189px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683665772"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 585px;
    left: 30px;
    width: 147px;
    height: 40px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683665772"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682559755"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 840px);
  width: 266px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682559755"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682559755"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 690px);
    width: 241px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 370px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 243px;
    left: calc(50% - 240px + 270px);
    width: 189px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682559755"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 585px;
    left: 30px;
    width: 147px;
    height: 40px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682559755"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470912220"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 440px);
  width: 320px;
  height: 200px;
}
#rec1190205346 .tn-elem[data-elem-id="1751470912220"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190205346 .tn-elem[data-elem-id="1751470912220"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912220"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 51px;
    left: calc(50% - 480px + 330px);
    width: 300px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 61px;
    left: calc(50% - 320px + 330px);
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 61px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 401px;
    left: 10px;
    width: 300px;
    height: 117px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470912220"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470912252"] {
  color: #000000;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 480px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470912252"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470912252"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 364px);
    width: 158px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470912252"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 421px;
    left: 30px;
    width: 216px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470912252"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470912287"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 480px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470912287"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470912287"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 364px);
    width: 158px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470912287"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 421px;
    left: 30px;
    width: 216px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470912287"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683404420"] {
  color: #000000;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 480px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753683404420"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683404420"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 364px);
    width: 249px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 270px);
    width: 191px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683404420"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 458px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683404420"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682339259"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 480px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682339259"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682339259"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 364px);
    width: 249px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 270px);
    width: 191px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682339259"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 458px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682339259"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470067651"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 80px);
  width: 320px;
  height: 200px;
}
#rec1190205346 .tn-elem[data-elem-id="1751470067651"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190205346 .tn-elem[data-elem-id="1751470067651"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190205346 .tn-elem[data-elem-id="1751470067651"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 51px;
    left: calc(50% - 480px + 10px);
    width: 300px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 61px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 61px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 35px;
    left: 10px;
    width: 300px;
    height: 107px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470067651"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753683030072"] {
  color: #000000;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
#rec1190205346 .tn-elem[data-elem-id="1753683030072"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 50px);
    width: 236px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 30px);
    width: 172px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683030072"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 92px;
    left: 30px;
    width: 141px;
    height: 30px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753683030072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682816755"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682816755"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753682816755"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 50px);
    width: 236px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 30px);
    width: 165px;
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682816755"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 92px;
    left: 30px;
    width: 141px;
    height: 30px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753682816755"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470301852"] {
  color: #000000;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470301852"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470301852"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 50px);
    width: 145px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470301852"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 55px;
    left: 30px;
    width: 198px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470301852"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470317581"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190205346
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470317581"] {
    opacity: 0;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1751470317581"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 50px);
    width: 145px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470317581"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 55px;
    left: 30px;
    width: 198px;
    height: 27px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1751470317581"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753773344448"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1616px);
  width: 100px;
  height: 100px;
}
#rec1190205346 .tn-elem[data-elem-id="1753773344448"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
    top: -166px;
    left: calc(50% - 480px + -1616px);
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
    top: 38px;
    left: 209px;
  }
  #rec1190205346 .tn-elem[data-elem-id="1753773344448"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753773713425"] {
  z-index: 3;
  top: 71px;
  left: calc(50% - 600px + -1653px);
  width: 100px;
  height: 100px;
}
#rec1190205346 .tn-elem[data-elem-id="1753773713425"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
    top: 156px;
    left: 209px;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753779601894"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1467px);
  width: 100px;
  height: 100px;
}
#rec1190205346 .tn-elem[data-elem-id="1753779601894"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
    top: 281px;
    left: 209px;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753779770967"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1329px);
  width: 100px;
  height: 100px;
}
#rec1190205346 .tn-elem[data-elem-id="1753779770967"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
    top: 410px;
    left: 209px;
  }
}
#rec1190205346 .tn-elem[data-elem-id="1753779889566"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1197px);
  width: 100px;
  height: 100px;
}
#rec1190205346 .tn-elem[data-elem-id="1753779889566"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190205346 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
    top: 533px;
    left: 209px;
  }
}

/* ---- assets/inline/css/index-18e5f4e2a301.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-fc16ef68c582.css ---- */
#rec1033862741 .t396__artboard {
  height: 40px;
  background-color: #000000;
}
#rec1033862741 .t396__filter {
  height: 40px;
}
#rec1033862741 .t396__carrier {
  height: 40px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1033862741 .t396__artboard,
  #rec1033862741 .t396__filter,
  #rec1033862741 .t396__carrier {
  }
  #rec1033862741 .t396__filter {
  }
  #rec1033862741 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1033862741 .t396__artboard,
  #rec1033862741 .t396__filter,
  #rec1033862741 .t396__carrier {
  }
  #rec1033862741 .t396__filter {
  }
  #rec1033862741 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1033862741 .t396__artboard,
  #rec1033862741 .t396__filter,
  #rec1033862741 .t396__carrier {
  }
  #rec1033862741 .t396__filter {
  }
  #rec1033862741 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1033862741 .t396__artboard,
  #rec1033862741 .t396__filter,
  #rec1033862741 .t396__carrier {
    height: 20px;
  }
  #rec1033862741 .t396__filter {
  }
  #rec1033862741 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1033862741 .tn-elem[data-elem-id="1747395034293"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 5px;
  left: calc(50% - 600px + 80px);
  width: 157px;
  height: auto;
}
#rec1033862741 .tn-elem[data-elem-id="1747395034293"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    top: -1px;
    left: 10px;
    width: 427px;
    height: auto;
  }
  #rec1033862741 .tn-elem[data-elem-id="1747395034293"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/index-10ff089d7672.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-43b9f58cd15a.css ---- */
#rec1033875646 .t396__artboard {
  height: 330px;
  background-color: #000000;
  overflow: auto;
}
#rec1033875646 .t396__filter {
  height: 330px;
}
#rec1033875646 .t396__carrier {
  height: 330px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .t396__artboard,
  #rec1033875646 .t396__filter,
  #rec1033875646 .t396__carrier {
    height: 298px;
  }
  #rec1033875646 .t396__filter {
  }
  #rec1033875646 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .t396__artboard,
  #rec1033875646 .t396__filter,
  #rec1033875646 .t396__carrier {
  }
  #rec1033875646 .t396__filter {
  }
  #rec1033875646 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .t396__artboard,
  #rec1033875646 .t396__filter,
  #rec1033875646 .t396__carrier {
    height: 279px;
  }
  #rec1033875646 .t396__filter {
  }
  #rec1033875646 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .t396__artboard,
  #rec1033875646 .t396__filter,
  #rec1033875646 .t396__carrier {
    height: 279px;
  }
  #rec1033875646 .t396__filter {
  }
  #rec1033875646 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 4;
  top: 277px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 10px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 9px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 9px);
    width: 68px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 258px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 5;
  top: 254px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 10px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 9px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 9px);
    width: 83px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: 10px;
    width: 83px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 7;
  top: 2px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 9;
  top: 277px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 250px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 250px);
    width: 168px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: 250px;
    width: 98px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736350073097"] {
  color: #ffffff;
  z-index: 10;
  top: 254px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 250px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 250px);
    width: 224px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: 250px;
    width: 97px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 12;
  top: 2px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 250px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 14;
  top: 277px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 490px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 490px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 500px);
    width: 60px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 257px;
    left: 490px;
    width: 60px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748356113901"] {
  color: #ffffff;
  z-index: 15;
  top: 254px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 490px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 490px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 500px);
    width: 83px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 236px;
    left: 490px;
    width: 83px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 17;
  top: 2px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 500px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: 490px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 19;
  top: 277px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 732px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 730px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 740px);
    width: 85px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 258px;
    left: 730px;
    width: 85px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736350076558"] {
  color: #ffffff;
  z-index: 20;
  top: 254px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 732px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 730px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 740px);
    width: 80px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 236px;
    left: 730px;
    width: 80px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 22;
  top: 2px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 740px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: 730px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736856318023"] {
  color: #f8f8f8;
  z-index: 24;
  top: 277px;
  left: calc(50% - 600px + 1147px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736856318023"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 970px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 970px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 980px);
    width: 63px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] .tn-atom {
    font-size: 8px;
    line-height: 1.55;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] {
    display: table;
    top: 258px;
    left: 970px;
    width: 63px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856318023"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736856277966"] {
  color: #ffffff;
  z-index: 25;
  top: 254px;
  left: calc(50% - 600px + 1147px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736856277966"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 970px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 970px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 980px);
    width: 104px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] {
    display: table;
    top: 236px;
    left: 970px;
    width: 104px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736856277966"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748622748774"] {
  z-index: 27;
  top: 2px;
  left: calc(50% - 600px + 1147px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1748622748774"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622748774"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 970px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622748774"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 970px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622748774"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 980px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622748774"] {
    display: table;
    top: 1px;
    left: 970px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736352221639"] {
  color: #f8f8f8;
  z-index: 29;
  top: 277px;
  left: calc(50% - 600px + 1414px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736352221639"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 1210px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 1210px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 1220px);
    width: 66px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] {
    display: table;
    top: 258px;
    left: 1210px;
    width: 66px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352221639"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736352197385"] {
  color: #ffffff;
  z-index: 30;
  top: 254px;
  left: calc(50% - 600px + 1414px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736352197385"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 1210px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 1210px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 1220px);
    width: 113px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] {
    display: table;
    top: 236px;
    left: 1210px;
    width: 113px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736352197385"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749201150302"] {
  z-index: 32;
  top: 2px;
  left: calc(50% - 600px + 1414px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1749201150302"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201150302"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 1210px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201150302"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 1210px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201150302"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 1220px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201150302"] {
    display: table;
    top: 1px;
    left: 1210px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736353078511"] {
  color: #f8f8f8;
  z-index: 34;
  top: 277px;
  left: calc(50% - 600px + 1680px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736353078511"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 1450px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 1450px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 1460px);
    width: 90px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] {
    display: table;
    top: 258px;
    left: 1450px;
    width: 90px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078511"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736353078504"] {
  color: #ffffff;
  z-index: 35;
  top: 254px;
  left: calc(50% - 600px + 1680px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736353078504"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 1450px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 1450px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 1460px);
    width: 84px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] {
    display: table;
    top: 236px;
    left: 1450px;
    width: 84px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353078504"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749201224782"] {
  z-index: 37;
  top: 2px;
  left: calc(50% - 600px + 1680px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1749201224782"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201224782"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 1450px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201224782"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 1450px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201224782"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 1460px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201224782"] {
    display: table;
    top: 1px;
    left: 1450px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736353994300"] {
  color: #f8f8f8;
  z-index: 39;
  top: 277px;
  left: calc(50% - 600px + 1946px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736353994300"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 1690px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 1690px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 1700px);
    width: 81px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] .tn-atom {
    font-size: 8px;
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] {
    display: table;
    top: 258px;
    left: 1690px;
    width: 81px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994300"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
  color: #ffffff;
  z-index: 40;
  top: 254px;
  left: calc(50% - 600px + 1946px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736353994307"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 1690px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 1690px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 1700px);
    width: 81px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
    color: #eb1414;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] .tn-atom {
    color: #eb1414;
    font-size: 10px;
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
    display: table;
    top: 236px;
    left: 1690px;
    width: 81px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] {
    color: #eb1414;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736353994307"] .tn-atom {
    color: #eb1414;
    font-size: 10px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749201838491"] {
  z-index: 42;
  top: 2px;
  left: calc(50% - 600px + 1946px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1749201838491"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201838491"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 1690px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201838491"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 1690px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201838491"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 1700px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201838491"] {
    display: table;
    top: 1px;
    left: 1690px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736354611943"] {
  color: #f8f8f8;
  z-index: 44;
  top: 277px;
  left: calc(50% - 600px + 2213px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736354611943"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 1930px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 1930px);
    width: 168px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 1940px);
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] {
    display: table;
    top: 258px;
    left: 1930px;
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611943"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1736354611936"] {
  color: #ffffff;
  z-index: 45;
  top: 254px;
  left: calc(50% - 600px + 2213px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1736354611936"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 1930px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 1930px);
    width: 224px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 1940px);
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] {
    display: table;
    top: 236px;
    left: 1930px;
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1736354611936"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749201855308"] {
  z-index: 47;
  top: 2px;
  left: calc(50% - 600px + 2213px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1749201855308"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201855308"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 1930px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201855308"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 1930px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201855308"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 1940px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749201855308"] {
    display: table;
    top: 1px;
    left: 1930px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749467121734"] {
  color: #f8f8f8;
  z-index: 49;
  top: 277px;
  left: calc(50% - 600px + 2480px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1749467121734"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] {
    display: table;
    top: 264px;
    left: calc(50% - 480px + 2170px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] {
    display: table;
    top: 264px;
    left: calc(50% - 320px + 2174px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 2184px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] {
    display: table;
    top: 258px;
    left: 2170px;
    width: 155px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121734"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749467121786"] {
  color: #eb1414;
  z-index: 50;
  top: 254px;
  left: calc(50% - 600px + 2480px);
  width: auto;
  height: auto;
}
#rec1033875646 .tn-elem[data-elem-id="1749467121786"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] {
    display: table;
    top: 236px;
    left: calc(50% - 480px + 2170px);
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] {
    display: table;
    top: 236px;
    left: calc(50% - 320px + 2174px);
    width: 224px;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 2184px);
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] {
    display: table;
    top: 236px;
    left: 2170px;
    width: auto;
    height: auto;
  }
  #rec1033875646 .tn-elem[data-elem-id="1749467121786"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749466610759"] {
  z-index: 52;
  top: 2px;
  left: calc(50% - 600px + 2480px);
  width: 240px;
  height: 240px;
}
#rec1033875646 .tn-elem[data-elem-id="1749466610759"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749466610759"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 2170px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749466610759"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 2174px);
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749466610759"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 2184px);
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749466610759"] {
    display: table;
    top: 1px;
    left: 2170px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1748622593978"] {
  z-index: 53;
  top: 22px;
  left: calc(50% - 600px + -355px);
  width: 255px;
  height: 236px;
}
#rec1033875646 .tn-elem[data-elem-id="1748622593978"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593978"] {
    display: table;
    top: 24px;
    left: calc(50% - 480px + -334px);
    width: 302px;
    height: 237px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593978"] {
    display: table;
    left: calc(50% - 320px + -302px);
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593978"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1748622593978"] {
    display: table;
    top: 0px;
    height: 268px;
  }
}
#rec1033875646 .tn-elem[data-elem-id="1749207221725"] {
  z-index: 55;
  top: 242px;
  left: calc(50% - 600px + 80px);
  width: 2640px;
  height: 12px;
}
#rec1033875646 .tn-elem[data-elem-id="1749207221725"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1033875646 .tn-elem[data-elem-id="1749207221725"] {
    display: table;
    top: 221px;
    left: calc(50% - 480px + 0px);
    width: 2390px;
    height: 7px;
  }
}
@media screen and (max-width: 959px) {
  #rec1033875646 .tn-elem[data-elem-id="1749207221725"] {
    display: table;
    top: 221px;
    width: 2394px;
    height: 15px;
  }
}
@media screen and (max-width: 639px) {
  #rec1033875646 .tn-elem[data-elem-id="1749207221725"] {
    display: table;
    left: calc(50% - 240px + 9px);
    width: 2395px;
  }
}
@media screen and (max-width: 479px) {
  #rec1033875646 .tn-elem[data-elem-id="1749207221725"] {
    display: table;
    top: 221px;
    left: 10px;
    width: 2380px;
    height: 10px;
  }
}

/* ---- assets/inline/css/index-c2856c2a0cb4.css ---- */
.img-glitch {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    box-shadow 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}
.img-glitch:hover {
  box-shadow: none;
  transform: translate(-1px, -1px);
}
.img-glitch img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: 0.2s ease-in-out;
  filter: none !important;
}
.img-glitch::before,
.img-glitch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  border-radius: 0;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.img-glitch:hover img {
  animation: glitch-zoom 0.3s ease-in-out;
}
.img-glitch:hover::before {
  background-image: var(--glitch-img);
  opacity: 1;
  animation: glitch-rgb-1 0.4s ease-in-out;
}
.img-glitch:hover::after {
  background-image: var(--glitch-img);
  opacity: 1;
  animation: glitch-rgb-2 0.4s ease-in-out;
}
@keyframes glitch-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03) rotate(0.5deg);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes glitch-rgb-1 {
  0% {
    transform: translate(0, 0);
    clip-path: inset(0 0 65% 0);
  }
  50% {
    transform: translate(-8px, -2px);
    clip-path: inset(0 0 65% 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes glitch-rgb-2 {
  0% {
    transform: translate(0, 0);
    clip-path: inset(65% 0 0 0);
  }
  50% {
    transform: translate(6px, 3px);
    clip-path: inset(65% 0 0 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ---- assets/inline/css/index-5889d52c40ee.css ---- */
#rec1034674901 .t396__artboard {
  height: 40px;
  background-color: #000000;
  overflow: visible;
}
#rec1034674901 .t396__filter {
  height: 40px;
}
#rec1034674901 .t396__carrier {
  height: 40px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1034674901 .t396__artboard,
  #rec1034674901 .t396__filter,
  #rec1034674901 .t396__carrier {
    height: 40px;
  }
  #rec1034674901 .t396__filter {
  }
  #rec1034674901 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1034674901 .t396__artboard,
  #rec1034674901 .t396__filter,
  #rec1034674901 .t396__carrier {
  }
  #rec1034674901 .t396__filter {
  }
  #rec1034674901 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1034674901 .t396__artboard,
  #rec1034674901 .t396__filter,
  #rec1034674901 .t396__carrier {
  }
  #rec1034674901 .t396__filter {
  }
  #rec1034674901 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1034674901 .t396__artboard,
  #rec1034674901 .t396__filter,
  #rec1034674901 .t396__carrier {
    height: 20px;
  }
  #rec1034674901 .t396__filter {
  }
  #rec1034674901 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1034674901 .tn-elem[data-elem-id="1748532714394"] {
  z-index: 3;
  top: -38px;
  left: calc(50% - 600px + -113px);
  width: 193px;
  height: 116px;
}
#rec1034674901 .tn-elem[data-elem-id="1748532714394"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532714394"] {
    display: table;
    top: -57px;
    left: calc(50% - 480px + -182px);
  }
}
@media screen and (max-width: 959px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532714394"] {
    display: table;
    top: -57px;
    left: calc(50% - 320px + -182px);
  }
}
@media screen and (max-width: 639px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532714394"] {
    display: table;
    top: -47px;
    left: calc(50% - 240px + -182px);
  }
}
@media screen and (max-width: 479px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532714394"] {
    display: table;
    left: -183px;
  }
}
#rec1034674901 .tn-elem[data-elem-id="1748532752562"] {
  z-index: 4;
  top: -38px;
  left: calc(50% - 600px + 1180px);
  width: 193px;
  height: 116px;
}
#rec1034674901 .tn-elem[data-elem-id="1748532752562"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532752562"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532752562"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532752562"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1034674901 .tn-elem[data-elem-id="1748532752562"] {
    display: table;
  }
}

/* ---- assets/inline/css/index-a778022eb28c.css ---- */
#rec1033875646 {
  cursor: -webkit-grab;
  cursor: grab;
}

/* Добавляем стили для ползунка прокрутки */
#rec1033875646 .dragscroll::-webkit-scrollbar {
  width: 5px; /* Ширина ползунка */
}

#rec1033875646 .dragscroll::-webkit-scrollbar-thumb {
  background-color: #eb1414; /* Цвет ползунка */
  border-radius: 0px; /* Скругление */
  width: 60px; /* Уменьшение длины ползунка */
  margin: 0 auto; /* Центрация ползунка */
}

#rec1033875646 .dragscroll::-webkit-scrollbar-track {
  background: transparent; /* Фоновый цвет трека */
}

/* Центрация полосы прокрутки для ПК */
#rec1033875646 .dragscroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Устанавливаем цвет ползунка для iPhone */
@media (max-width: 768px) {
  #rec1033875646 .dragscroll::-webkit-scrollbar-thumb {
    background-color: #eb1414; /* Цвет ползунка для iPhone */
  }
}

/* ---- assets/inline/css/index-36406bcd3348.css ---- */
#rec1043197791 .t396__artboard {
  height: 400px;
  background-color: #000000;
}
#rec1043197791 .t396__filter {
  height: 400px;
}
#rec1043197791 .t396__carrier {
  height: 400px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .t396__artboard,
  #rec1043197791 .t396__filter,
  #rec1043197791 .t396__carrier {
  }
  #rec1043197791 .t396__filter {
  }
  #rec1043197791 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .t396__artboard,
  #rec1043197791 .t396__filter,
  #rec1043197791 .t396__carrier {
    height: 360px;
  }
  #rec1043197791 .t396__filter {
  }
  #rec1043197791 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .t396__artboard,
  #rec1043197791 .t396__filter,
  #rec1043197791 .t396__carrier {
    height: 660px;
  }
  #rec1043197791 .t396__filter {
  }
  #rec1043197791 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .t396__artboard,
  #rec1043197791 .t396__filter,
  #rec1043197791 .t396__carrier {
    height: 549px;
  }
  #rec1043197791 .t396__filter {
  }
  #rec1043197791 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1734444925865"] {
  color: #a5a5a5;
  z-index: 3;
  top: 82px;
  left: calc(50% - 600px + 761px);
  width: 299px;
  height: auto;
}
#rec1043197791 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 590px);
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 60px;
    left: calc(50% - 320px + 329px);
    width: 268px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 57px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 59px;
    width: 295px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1747748205706"] {
  z-index: 4;
  top: 158px;
  left: calc(50% - 600px + 760px);
  width: 360px;
  height: auto;
}
#rec1043197791 .tn-elem[data-elem-id="1747748205706"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 590px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 113px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 122px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 105px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1747996074770"] {
  z-index: 5;
  top: 373px;
  left: calc(50% - 600px + 1100px);
  width: 100px;
  height: 100px;
}
#rec1043197791 .tn-elem[data-elem-id="1747996074770"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1043197791 .tn-elem[data-elem-id="1747996074770"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 370px;
    left: calc(50% - 480px + 929px);
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 332px;
    left: calc(50% - 320px + 607px);
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 345px;
    left: calc(50% - 240px + 442px);
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 328px;
    left: 285px;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1734444979691"] {
  color: #ffffff;
  z-index: 6;
  top: 3px;
  left: calc(50% - 600px + 761px);
  width: 346px;
  height: auto;
}
#rec1043197791 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 47px;
    left: calc(50% - 480px + 590px);
    width: 273px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 3px;
    left: calc(50% - 320px + 329px);
    width: 283px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 2px;
    left: 10px;
    width: 280px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1747839805877"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 7;
  top: 16px;
  left: calc(50% - 600px + 420px);
  width: 352px;
  height: 300px;
}
#rec1043197791 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 150px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 289px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: -18px;
    left: calc(50% - 320px + 10px);
    width: 265px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 345px;
    left: calc(50% - 240px + 244px);
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 306px;
    left: 136px;
    height: auto;
  }
  #rec1043197791 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
    font-size: 100px;
    background-size: cover;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1747747827856"] {
  z-index: 8;
  top: -129px;
  left: calc(50% - 600px + 74px);
  width: 640px;
  height: 640px;
}
#rec1043197791 .tn-elem[data-elem-id="1747747827856"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1043197791 .tn-elem[data-elem-id="1747747827856"] .tn-atom {
  -webkit-transform: rotate(359deg);
  -moz-transform: rotate(359deg);
  transform: rotate(359deg);
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: -67px;
    left: calc(50% - 480px + 10px);
    width: 545px;
    height: 545px;
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 30px;
    left: calc(50% - 320px + 7px);
    width: 417px;
    height: 417px;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 286px;
    left: calc(50% - 240px + 6px);
    width: 470px;
    height: 470px;
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 310px;
    left: 10px;
    width: 300px;
    height: 296px;
  }
}
#rec1043197791 .tn-elem[data-elem-id="1747750359607"] {
  z-index: 10;
  top: 189px;
  left: calc(50% - 600px + 80px);
  width: 270px;
  height: 270px;
}
#rec1043197791 .tn-elem[data-elem-id="1747750359607"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1043197791 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    left: calc(50% - 480px + 10px);
  }
}
@media screen and (max-width: 959px) {
  #rec1043197791 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 187px;
    left: calc(50% - 320px + 10px);
    width: 221px;
    height: 221px;
  }
}
@media screen and (max-width: 639px) {
  #rec1043197791 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 487px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1043197791 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 429px;
    left: 10px;
    width: 150px;
    height: 150px;
  }
}

/* ---- assets/inline/css/index-979b2d6d0a9e.css ---- */
#rec1043197791 [data-elem-id="1747748205706"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791 [data-elem-id="1747748205706"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791 [data-elem-id="1747748205706"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791 [data-elem-id="1747748205706"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791
  [data-elem-id="1747748205706"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791 [data-elem-id="1747748205706"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791 [data-elem-id="1747748205706"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1043197791 [data-elem-id="1747748205706"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/index-dd45a2e595b1.css ---- */
#rec1043197791 [data-elem-id="1747748205706"] .t-input-block input[type="text"],
#rec1043197791 [data-elem-id="1747748205706"] .t-input-block input[type="tel"],
#rec1043197791 [data-elem-id="1747748205706"] .t-input-block input[type="url"],
#rec1043197791
  [data-elem-id="1747748205706"]
  .t-input-block
  input[type="email"],
#rec1043197791
  [data-elem-id="1747748205706"]
  .t-input-block
  .t-input-phonemask__select,
#rec1043197791 [data-elem-id="1747748205706"] .t-input-block textarea,
#rec1043197791 [data-elem-id="1747748205706"] .t-input-block select,
#rec1043197791 [data-elem-id="1747748205706"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/index-dae9c5b20a4c.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-ce621b4f9a98.css ---- */
#rec1124518471 .t396__artboard {
  height: 280px;
  background-color: #000000;
}
#rec1124518471 .t396__filter {
  height: 280px;
}
#rec1124518471 .t396__carrier {
  height: 280px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .t396__artboard,
  #rec1124518471 .t396__filter,
  #rec1124518471 .t396__carrier {
  }
  #rec1124518471 .t396__filter {
  }
  #rec1124518471 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .t396__artboard,
  #rec1124518471 .t396__filter,
  #rec1124518471 .t396__carrier {
  }
  #rec1124518471 .t396__filter {
  }
  #rec1124518471 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .t396__artboard,
  #rec1124518471 .t396__filter,
  #rec1124518471 .t396__carrier {
  }
  #rec1124518471 .t396__filter {
  }
  #rec1124518471 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .t396__artboard,
  #rec1124518471 .t396__filter,
  #rec1124518471 .t396__carrier {
    height: 720px;
  }
  #rec1124518471 .t396__filter {
  }
  #rec1124518471 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747731093258"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 80px);
  width: 313px;
  height: 257px;
}
#rec1124518471 .tn-elem[data-elem-id="1747731093258"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 11px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 11px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 11px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 1px;
    left: 11px;
    width: 300px;
    height: 217px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1748338987570"] {
  z-index: 3;
  top: 17px;
  left: calc(50% - 600px + 131px);
  width: 257px;
  height: 257px;
}
#rec1124518471 .tn-elem[data-elem-id="1748338987570"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 60px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 240px + 60px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 6px;
    left: 87px;
    width: 220px;
    height: 220px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747843115036"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747843115036"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747843115036"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 168px;
    left: 32px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823555"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747641823555"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1124518471
  .tn-elem[data-elem-id="1747641823555"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 168px;
    left: 31px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823584"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 125px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823584"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 56px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 56px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 56px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 173px;
    left: 36px;
    width: 20px;
    height: 20px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899376007"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899376007"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899376007"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823558"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1124518471
  .tn-elem[data-elem-id="1747641823558"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823566"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 165px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823566"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 96px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 96px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 96px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 173px;
    left: 77px;
    width: 20px;
    height: 20px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899501429"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899501429"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899501429"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 168px;
    left: 112px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823578"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1124518471
  .tn-elem[data-elem-id="1747641823578"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 168px;
    left: 112px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823581"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 205px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823581"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 136px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 136px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 136px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 173px;
    left: 117px;
    width: 20px;
    height: 20px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1751014255987"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751014255987"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1751014255987"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1751014256015"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
#rec1124518471 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1124518471
  .tn-elem[data-elem-id="1751014256015"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1124518471 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1751014256062"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 245px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1124518471 .tn-elem[data-elem-id="1751014256062"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 176px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 176px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 173px;
    left: 157px;
    width: 20px;
    height: 20px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899420191"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899420191"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899420191"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823560"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1124518471
  .tn-elem[data-elem-id="1747641823560"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823571"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 285px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823571"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 216px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 216px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 216px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 173px;
    left: 197px;
    width: 20px;
    height: 20px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899484196"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1124518471
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899484196"] {
    opacity: 0;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747899484196"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 168px;
    left: 232px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823563"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1124518471
  .tn-elem[data-elem-id="1747641823563"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 168px;
    left: 232px;
    width: 30px;
    height: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823575"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 325px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823575"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 256px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 256px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 173px;
    left: 237px;
    width: 20px;
    height: 20px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823552"] {
  color: #000000;
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 130px);
  width: 254px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823552"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 132px;
    left: 40px;
    height: auto;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823549"] {
  color: #000000;
  z-index: 3;
  top: 174px;
  left: calc(50% - 600px + 130px);
  width: 89px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823549"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 118px;
    left: 40px;
    height: auto;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823545"] {
  color: #000000;
  z-index: 3;
  top: 129px;
  left: calc(50% - 600px + 130px);
  width: 221px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 480px + 59px);
    width: 221px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823545"] {
    text-align: left;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 96px;
    left: 40px;
    width: 215px;
    height: auto;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823541"] {
  z-index: 3;
  top: 126px;
  left: calc(50% - 600px + 120px);
  width: 1px;
  height: 60px;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823541"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 88px;
    left: 30px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823537"] {
  color: #000000;
  z-index: 3;
  top: 101px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 56px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823533"] {
  color: #000000;
  z-index: 3;
  top: 89px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 44px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747641823526"] {
  color: #000000;
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 120px);
  width: 168px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 480px + 51px);
    width: 168px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 21px;
    left: 31px;
    width: 511px;
    height: 18px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747751061223"] {
  z-index: 3;
  top: 244px;
  left: calc(50% - 600px + 7px);
  width: 100px;
  height: 100px;
}
#rec1124518471 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + -62px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 320px + -62px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 240px + -62px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 198px;
    left: 4px;
    width: 13px;
    height: 29px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1748339984293"] {
  z-index: 3;
  top: -54px;
  left: calc(50% - 600px + 360px);
  width: 25px;
  height: 100px;
}
#rec1124518471 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124518471 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 480px + 289px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 320px + 289px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 240px + 289px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -59px;
    left: 294px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747646631107"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 420px);
  width: 700px;
  height: 257px;
}
#rec1124518471 .tn-elem[data-elem-id="1747646631107"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 351px);
    width: 600px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 351px);
    width: 279px;
    height: 257px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 330px);
    width: 140px;
    height: 257px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 241px;
    left: 10px;
    width: 300px;
    height: 474px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747380721710"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 893px);
  width: 67px;
  height: 20px;
}
#rec1124518471 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 824px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 361px);
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 156px;
    left: calc(50% - 240px + 344px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 595px;
    left: 30px;
    width: 67px;
    height: 20px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382989615"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 459px);
  width: auto;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 390px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 395px);
    width: 60px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 263px;
    left: 126px;
    width: 67px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] {
    text-align: left;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747383077128"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 620px);
  width: 142px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 551px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 28px;
    left: calc(50% - 320px + 362px);
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 16px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 485px;
    left: 30px;
    width: 142px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747381853075"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 621px);
  width: 67px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 552px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 363px);
    width: 86px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 372px;
    left: 31px;
    width: 86px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382286729"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 460px);
  width: auto;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 391px);
    width: 66px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] {
    text-align: left;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 344px);
    width: 47px;
    height: 20px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 263px;
    left: 30px;
    width: 107px;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747380743405"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 459px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 396px);
    width: 30px;
    height: 30px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 290px;
    left: 126px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747383336368"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747383336368"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 511px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747384448888"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 629px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 511px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747384605122"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 705px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 71px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 511px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1748420444611"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 821px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1748420444611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 715px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 396px;
    left: 540px;
    width: 50px;
    height: 50px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747381124322"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 893px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 824px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 345px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 626px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747381888387"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747381888387"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 402px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382048808"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747382048808"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 708px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 402px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382213646"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747382213646"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 628px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 402px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747381231017"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 962px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747381231017"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 891px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 425px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 626px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747381773374"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 1030px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747381773374"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 824px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 385px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 626px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382850582"] {
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1124518471 .tn-elem[data-elem-id="1747382850582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 81px;
    left: calc(50% - 320px + 707px);
    width: 17px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 504px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 241px;
    left: 539px;
    width: 17px;
    height: 75px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747384632790"] {
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1124518471 .tn-elem[data-elem-id="1747384632790"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 530px);
    width: 1px;
    height: 145px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 530px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 241px;
    left: 394px;
    width: 1px;
    height: 145px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382870795"] {
  z-index: 3;
  top: 61px;
  left: calc(50% - 600px + 854px);
  width: 1px;
  height: 75px;
}
#rec1124518471 .tn-elem[data-elem-id="1747382870795"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 61px;
    left: calc(50% - 480px + 785px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 289px;
    left: calc(50% - 320px + 680px);
    width: 75px;
    height: 15px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 254px;
    left: calc(50% - 240px + 490px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 340px;
    left: 394px;
    width: 75px;
    height: 15px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1747382302775"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 460px);
  width: 50px;
  height: 50px;
}
#rec1124518471 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 391px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1124518471 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 344px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 290px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1748613066534"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 1114px);
  width: 13px;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 480px + 944px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 263px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 236px;
    left: 4px;
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1124518471 .tn-elem[data-elem-id="1748613058267"] {
  color: #ffffff;
  z-index: 3;
  top: 12px !important;
  left: calc(50% - 600px + 414px);
  width: auto;
  height: auto;
}
#rec1124518471 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1px !important;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 1px !important;
    left: calc(50% - 480px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 13px !important;
    left: calc(50% - 320px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 11px !important;
    left: calc(50% - 240px + 324px);
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 21px !important;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124518471 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 713px !important;
    left: 303px;
    width: auto;
    height: auto;
  }
  #rec1124518471 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}

/* ---- assets/inline/css/index-ebe5d6ca96dd.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/index-5a33da63a005.css ---- */
#rec1039094686 .t396__artboard {
  height: 50px;
  background-color: #000000;
}
#rec1039094686 .t396__filter {
  height: 50px;
}
#rec1039094686 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .t396__artboard,
  #rec1039094686 .t396__filter,
  #rec1039094686 .t396__carrier {
  }
  #rec1039094686 .t396__filter {
  }
  #rec1039094686 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .t396__artboard,
  #rec1039094686 .t396__filter,
  #rec1039094686 .t396__carrier {
  }
  #rec1039094686 .t396__filter {
  }
  #rec1039094686 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .t396__artboard,
  #rec1039094686 .t396__filter,
  #rec1039094686 .t396__carrier {
  }
  #rec1039094686 .t396__filter {
  }
  #rec1039094686 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .t396__artboard,
  #rec1039094686 .t396__filter,
  #rec1039094686 .t396__carrier {
  }
  #rec1039094686 .t396__filter {
  }
  #rec1039094686 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1748340397359"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -875px);
  width: 2951px;
  height: 51px;
}
#rec1039094686 .tn-elem[data-elem-id="1748340397359"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347211"] {
  color: #eb1414;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 140px);
  width: 55px;
  height: 30px;
  pointer-events: none;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  color: #eb1414;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 108px);
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 78px);
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 87px;
    left: 362px;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347209"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 196px);
  width: 55px;
  height: 30px;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"] .tn-atom:hover {
  }
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 164px);
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 134px);
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 126px);
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 87px;
    left: 418px;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347206"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 261px);
  width: 55px;
  height: 30px;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347206"] .tn-atom:hover {
  }
  #rec1039094686 .tn-elem[data-elem-id="1747646347206"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 217px);
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 187px);
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 179px);
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 87px;
    left: 471px;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347204"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 319px);
  width: 55px;
  height: 30px;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347204"] .tn-atom:hover {
  }
  #rec1039094686 .tn-elem[data-elem-id="1747646347204"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 278px);
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 248px);
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 240px);
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 87px;
    left: 532px;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347213"] {
  z-index: 10;
  top: 9px;
  left: calc(50% - 600px + 708px);
  width: 1px;
  height: 30px;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347213"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 480px + 699px);
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 359px);
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 210px);
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 83px;
    left: 349px;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347200"] {
  color: #ffffff;
  z-index: 11;
  top: 20px;
  left: calc(50% - 600px + 420px);
  width: 246px;
  height: auto;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 19px;
    left: calc(50% - 480px + 411px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 18px;
    left: calc(50% - 320px + 90px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 70px);
    width: 130px;
    height: 20px;
  }
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 15px;
    left: 70px;
    width: 243px;
    height: auto;
  }
  #rec1039094686 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1747646347196"] {
  z-index: 12;
  top: 8px;
  left: calc(50% - 600px + 80px);
  width: 35px;
  height: 35px;
}
#rec1039094686 .tn-elem[data-elem-id="1747646347196"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 480px + 80px);
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 80px);
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: 10px;
  }
}
#rec1039094686 .tn-elem[data-elem-id="1748341987415"] {
  color: #ffffff;
  z-index: 13;
  top: 17px;
  left: calc(50% - 600px + 729px);
  width: 402px;
  height: auto;
}
#rec1039094686 .tn-elem[data-elem-id="1748341987415"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 230px);
    width: 239px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1039094686 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: 720px;
    height: auto;
  }
}

/* ---- assets/inline/css/index-51d19327adcf.css ---- */
#rec1051896271 .t396__artboard {
  height: 600px;
  background-color: #000000;
}
#rec1051896271 .t396__filter {
  height: 600px;
}
#rec1051896271 .t396__carrier {
  height: 600px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .t396__artboard,
  #rec1051896271 .t396__filter,
  #rec1051896271 .t396__carrier {
    height: 598px;
  }
  #rec1051896271 .t396__filter {
  }
  #rec1051896271 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .t396__artboard,
  #rec1051896271 .t396__filter,
  #rec1051896271 .t396__carrier {
    height: 596px;
  }
  #rec1051896271 .t396__filter {
  }
  #rec1051896271 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .t396__artboard,
  #rec1051896271 .t396__filter,
  #rec1051896271 .t396__carrier {
    height: 1170px;
  }
  #rec1051896271 .t396__filter {
  }
  #rec1051896271 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .t396__artboard,
  #rec1051896271 .t396__filter,
  #rec1051896271 .t396__carrier {
    height: 969px;
  }
  #rec1051896271 .t396__filter {
  }
  #rec1051896271 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750159627036"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1051896271 .tn-elem[data-elem-id="1750159627036"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.4;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271
  .tn-elem[data-elem-id="1750159627036"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 387px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070505"] {
  color: #a5a5a5;
  z-index: 3;
  top: 111px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 153px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 118px;
    left: calc(50% - 320px + 10px);
    width: 305px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 133px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 113px;
    width: 272px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070500"] {
  color: #ffffff;
  z-index: 3;
  top: 63px;
  left: calc(50% - 600px + 180px);
  width: 348px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 90px);
    width: 337px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 10px);
    width: 320px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 73px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 73px;
    left: 10px;
    width: 302px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750157527506"] {
  z-index: 3;
  top: 175px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1750157527506"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 90px);
    width: 360px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 198px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 163px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750160611890"] {
  z-index: 3;
  top: 394px;
  left: calc(50% - 600px + 522px);
  width: 100px;
  height: 100px;
}
#rec1051896271 .tn-elem[data-elem-id="1750160611890"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1750160611890"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 408px;
    left: calc(50% - 480px + 429px);
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 405px;
    left: calc(50% - 320px + 290px);
    width: 43px;
    height: 10px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 430px;
    left: calc(50% - 240px + 447px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 397px;
    left: 285px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070358"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070358"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070358"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070358"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070358"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070358"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070358"] {
    display: table;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070387"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070387"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070387"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070387"] .tn-atom:hover {
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070387"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070387"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070387"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070387"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070387"] {
    display: block;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070412"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 385px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070412"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070412"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 335px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070412"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 265px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070412"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 315px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070412"] {
    display: table;
    top: 514px;
    left: 241px;
    width: 25px;
    height: 25px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070375"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070375"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070375"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070375"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070375"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070375"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070375"] {
    display: table;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070383"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070383"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070383"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070383"] .tn-atom:hover {
  }
  #rec1051896271 .tn-elem[data-elem-id="1748004070383"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070383"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070383"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070383"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070383"] {
    display: block;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070395"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 435px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070395"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070395"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 395px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070395"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 215px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070395"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 255px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070395"] {
    display: table;
    top: 514px;
    left: 196px;
    width: 25px;
    height: 25px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070371"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070371"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070371"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070371"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070371"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070371"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070371"] {
    display: table;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070390"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070390"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070390"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070390"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070390"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070390"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070390"] {
    display: block;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070400"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 235px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070400"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070400"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 155px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070400"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 65px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070400"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 75px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070400"] {
    display: table;
    top: 514px;
    left: 61px;
    width: 25px;
    height: 25px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070367"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070367"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070367"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070367"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070367"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070367"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070367"] {
    display: table;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070393"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070393"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070393"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070393"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070393"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070393"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070393"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070393"] {
    display: block;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750157073058"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 185px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1051896271 .tn-elem[data-elem-id="1750157073058"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157073058"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 95px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157073058"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 15px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157073058"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 15px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750157073058"] {
    display: table;
    top: 514px;
    left: 16px;
    width: 25px;
    height: 25px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1751014881461"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751014881461"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1751014881461"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881461"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881461"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881461"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881461"] {
    display: table;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1751014881493"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
#rec1051896271 .tn-elem[data-elem-id="1751014881493"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1751014881493"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881493"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881493"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881493"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881493"] {
    display: block;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1751014881535"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 335px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1051896271 .tn-elem[data-elem-id="1751014881535"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881535"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 275px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881535"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 165px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881535"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 195px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1751014881535"] {
    display: table;
    top: 514px;
    left: 151px;
    width: 25px;
    height: 25px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070362"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070362"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070362"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070362"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070362"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070362"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070362"] {
    display: table;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070380"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070380"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070380"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070380"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070380"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070380"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070380"] {
    display: block;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070408"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 285px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070408"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070408"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 215px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070408"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 115px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070408"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 135px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070408"] {
    display: table;
    top: 514px;
    left: 106px;
    width: 25px;
    height: 25px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070422"] {
  text-align: center;
  z-index: 3;
  top: 26px;
  left: calc(50% - 600px + 1087px);
  width: 33px;
  height: 33px;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070422"] .tn-atom {
  color: transparent;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1051896271 .tn-elem[data-elem-id="1748004070422"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070422"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 36px;
    left: calc(50% - 480px + 837px);
    width: 33px;
    height: 33px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 15px;
    left: calc(50% - 320px + 592px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 20px;
    left: calc(50% - 240px + 437px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 20px;
    left: 277px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070451"] {
  z-index: 3;
  top: 30px;
  left: calc(50% - 600px + 1091px);
  width: 25px;
  height: 25px;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1051896271
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070451"] {
    opacity: 0;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748004070451"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 841px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 19px;
    left: calc(50% - 320px + 596px);
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 24px;
    left: calc(50% - 240px + 441px);
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 24px;
    left: 281px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750156000035"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1051896271 .tn-elem[data-elem-id="1750156000035"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 397px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750156263178"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 40px;
}
#rec1051896271 .tn-elem[data-elem-id="1750156263178"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 510px);
    width: 360px;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 330px);
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 1100px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 60px;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 884px;
    left: 10px;
    width: 300px;
    height: 40px;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1748005476602"] {
  color: #ffffff;
  z-index: 3;
  top: 540px;
  left: calc(50% - 600px + 595px);
  width: 412px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 538px;
    left: calc(50% - 480px + 520px);
    width: 335px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 512px;
    left: calc(50% - 320px + 341px);
    width: 274px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 1113px;
    left: calc(50% - 240px + 20px);
    width: 437px;
    height: 21px;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 894px;
    left: 25px;
    width: 270px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750156388955"] {
  color: #ffffff;
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 574px);
  width: 13px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1750156388955"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 96px;
    left: calc(50% - 480px + 504px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 53px;
    left: calc(50% - 320px + 324px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 4px);
    width: auto;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1750156388955"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 559px;
    left: 4px;
    width: 11px;
    height: auto;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1750156400603"] {
  color: #ffffff;
  z-index: 3;
  top: 484px;
  left: calc(50% - 600px + 1013px);
  width: 13px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1750156400603"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 481px;
    left: calc(50% - 480px + 862px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 467px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 1063px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1750156400603"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 858px;
    left: 303px;
    width: 11px;
    height: auto;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1737033572689"] {
  color: #ffffff;
  z-index: 3;
  top: 440px;
  left: calc(50% - 600px + 180px);
  width: 306px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 455px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 434px;
    left: calc(50% - 320px + 10px);
    width: 306px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 458px;
    left: calc(50% - 240px + 10px);
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 423px;
    left: 10px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] {
    color: #ffffff;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    color: #ffffff;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1051896271 .tn-elem[data-elem-id="1737033572684"] {
  color: #ffffff;
  z-index: 3;
  top: 472px;
  left: calc(50% - 600px + 180px);
  width: 346px;
  height: auto;
}
#rec1051896271 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 485px;
    left: calc(50% - 480px + 90px);
    width: 272px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 464px;
    left: calc(50% - 320px + 10px);
    width: 276px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 490px;
    width: 409px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 453px;
    left: 10px;
    width: 274px;
    height: auto;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] {
    color: #ffffff;
  }
  #rec1051896271 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    color: #ffffff;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/index-aef8f7f5369a.css ---- */
#rec1051896271 [data-elem-id="1750157527506"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271 [data-elem-id="1750157527506"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271 [data-elem-id="1750157527506"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271 [data-elem-id="1750157527506"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271
  [data-elem-id="1750157527506"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271 [data-elem-id="1750157527506"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271 [data-elem-id="1750157527506"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1051896271 [data-elem-id="1750157527506"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/index-999588b63a9e.css ---- */
#rec1051896271 [data-elem-id="1750157527506"] .t-input-block input[type="text"],
#rec1051896271 [data-elem-id="1750157527506"] .t-input-block input[type="tel"],
#rec1051896271 [data-elem-id="1750157527506"] .t-input-block input[type="url"],
#rec1051896271
  [data-elem-id="1750157527506"]
  .t-input-block
  input[type="email"],
#rec1051896271
  [data-elem-id="1750157527506"]
  .t-input-block
  .t-input-phonemask__select,
#rec1051896271 [data-elem-id="1750157527506"] .t-input-block textarea,
#rec1051896271 [data-elem-id="1750157527506"] .t-input-block select,
#rec1051896271 [data-elem-id="1750157527506"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/index-dc2fd1155612.css ---- */
#rec1049268251 .t-menu__link-item {
  -webkit-transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}
#rec1049268251 .t-menu__link-item.t-active:not(.t978__menu-link) {
  color: #eb1414 !important;
  opacity: 1 !important;
}
#rec1049268251 .t-menu__link-item:not(.t-active):not(.tooltipstered):hover {
  color: #eb1414 !important;
}
#rec1049268251
  .t-menu__link-item:not(.t-active):not(.tooltipstered):focus-visible {
  color: #eb1414 !important;
}
@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
  #rec1049268251 .t-menu__link-item,
  #rec1049268251 .t-menu__link-item.t-active {
    opacity: 1 !important;
  }
}

/* ---- assets/inline/css/index-aca4b73228c2.css ---- */
#rec1063362721 .t-btnflex.t-btnflex_type_button {
  color: #ffffff;
  background-color: #000000;
  border-style: solid !important;
  border-color: #ffffff !important;
  --border-width: 1px;
  border-radius: 0px;
  box-shadow: none !important;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
}
@media (hover: hover) {
  #rec1063362721
    .t-btnflex.t-btnflex_type_button:not(.t-animate_no-hover):hover {
    color: #000000 !important;
    border-color: #000000 !important;
    background-color: #ffffff !important;
  }
  #rec1063362721
    .t-btnflex.t-btnflex_type_button:not(.t-animate_no-hover):focus-visible {
    color: #000000 !important;
    border-color: #000000 !important;
    background-color: #ffffff !important;
  }
}

/* ---- assets/inline/css/index-e37304dd638f.css ---- */
#rec1063362721 .t-btnflex.t-btnflex_type_button2 {
  color: #000000;
  border-style: none !important;
  border-radius: 0px;
  box-shadow: none !important;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
}
@media (hover: hover) {
  #rec1063362721
    .t-btnflex.t-btnflex_type_button2:not(.t-animate_no-hover):hover {
    color: #000000 !important;
    border-color: #000000 !important;
    background-color: #ffffff !important;
  }
  #rec1063362721
    .t-btnflex.t-btnflex_type_button2:not(.t-animate_no-hover):focus-visible {
    color: #000000 !important;
    border-color: #000000 !important;
    background-color: #ffffff !important;
  }
}

/* ---- assets/inline/css/index-a0445e71f68f.css ---- */
#rec1063362721 .t972__title,
#rec1063362721 .t972__text {
  font-family: Unbounded;
}
#rec1063362721
  .t972__toggle-input:checked
  + .t972__toggle-container
  .t972__toggle-mark {
  background-color: #1f5bff;
}
#rec1063362721
  .t972__toggle-input:checked
  + .t972__toggle-container
  .t972__toggle-background {
  background-color: #1f5bff;
}
#rec1063362721 .t972__category-enabled {
  color: #1f5bff;
}
#rec1063362721 .t972__category-enabled_always {
  color: #1f5bff;
}
@media screen and (max-width: 640px) {
  #rec1063362721 .t972.t972_widgetview {
    left: unset !important;
    right: 10px !important;
    align-items: flex-end;
  }
  #rec1063362721 .t972:not(.t972_widgetview) {
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
  }
  #rec1063362721 .t972__settings,
  #rec1063362721 .t972__banner {
    max-height: calc(100vh - 2 * 10px) !important;
  }
}

/* ---- assets/inline/css/index-4f6df6d02bcd.css ---- */
body::-webkit-scrollbar {
  width: 19px;
  height: 19px;
  background-color: #000000;
}
body::-webkit-scrollbar-track {
  background-color: #000000;
}
body::-webkit-scrollbar-thumb {
  background-color: #eb1414;
  border-radius: 2px;
  border: 2px solid #000000;
  background-clip: padding-box;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff;
}
@supports (-moz-appearance: none) {
  :root,
  body {
    scrollbar-width: auto;
    scrollbar-color: #eb1414 #000000;
  }
}
:root,
body {
  -ms-scrollbar-track-color: #000000;
  -ms-scrollbar-highlight-color: #000000;
  -ms-scrollbar-shadow-color: #000000;
  -ms-scrollbar-3dlight-color: #000000;
  -ms-scrollbar-darkshadow-color: #000000;
  -ms-scrollbar-face-color: #eb1414;
}

/* ---- assets/inline/css/aboutus_index-0036d50cc499.css ---- */
.t-sbs-anim_started #sbs-1065483946-1748255447993 {
  animation: sbs-1065483946-1748255447993 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1065483946-1748255447993 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(30px);
  }
}

.t-sbs-anim_started #sbs-1124278386-1748015917462 {
  animation: sbs-1124278386-1748015917462 11s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124278386-1748015917462 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  9.09% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

.t-sbs-anim_started #sbs-1112976071-1747900790020 {
  animation: sbs-1112976071-1747900790020 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1112976071-1747900790020 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(4px);
  }
}

#rec1112976071
  [data-elem-id="1747900790020"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1751471251679 {
  animation: sbs-1190588381-1751471251679 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1751471251679 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190588381
  [data-elem-id="1751471251679"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1753683748511 {
  animation: sbs-1190588381-1753683748511 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1753683748511 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190588381
  [data-elem-id="1753683748511"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1751471178376 {
  animation: sbs-1190588381-1751471178376 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1751471178376 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190588381
  [data-elem-id="1751471178376"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1753682380625 {
  animation: sbs-1190588381-1753682380625 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1753682380625 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190588381
  [data-elem-id="1753682380625"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1751471010583 {
  animation: sbs-1190588381-1751471010583 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1751471010583 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190588381
  [data-elem-id="1751471010583"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1753682559755 {
  animation: sbs-1190588381-1753682559755 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1753682559755 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190588381
  [data-elem-id="1753682559755"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1751470912287 {
  animation: sbs-1190588381-1751470912287 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1751470912287 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190588381
  [data-elem-id="1751470912287"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1753682339259 {
  animation: sbs-1190588381-1753682339259 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1753682339259 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190588381
  [data-elem-id="1753682339259"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1753682816755 {
  animation: sbs-1190588381-1753682816755 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1753682816755 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

#rec1190588381
  [data-elem-id="1753682816755"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1190588381-1751470317581 {
  animation: sbs-1190588381-1751470317581 0.1s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1190588381-1751470317581 {
  0% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}

#rec1190588381
  [data-elem-id="1751470317581"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1086365596-1749218978996 {
  animation: sbs-1086365596-1749218978996 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1086365596-1749218978996 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.8, 0.8);
  }
}

#rec1086365596
  [data-elem-id="1749218978996"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1086660176-1749546361576 {
  animation: sbs-1086660176-1749546361576 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1086660176-1749546361576 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.8, 0.8);
  }
}

#rec1086660176
  [data-elem-id="1749546361576"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1086656541-1749218978996 {
  animation: sbs-1086656541-1749218978996 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1086656541-1749218978996 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.8, 0.8);
  }
}

#rec1086656541
  [data-elem-id="1749218978996"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555336-1747843115036 {
  animation: sbs-1179555336-1747843115036 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555336-1747843115036 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555336
  [data-elem-id="1747843115036"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555336-1747899376007 {
  animation: sbs-1179555336-1747899376007 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555336-1747899376007 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555336
  [data-elem-id="1747899376007"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555336-1747899501429 {
  animation: sbs-1179555336-1747899501429 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555336-1747899501429 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555336
  [data-elem-id="1747899501429"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555336-1751014255987 {
  animation: sbs-1179555336-1751014255987 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555336-1751014255987 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555336
  [data-elem-id="1751014255987"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555336-1747899420191 {
  animation: sbs-1179555336-1747899420191 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555336-1747899420191 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555336
  [data-elem-id="1747899420191"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555336-1747899484196 {
  animation: sbs-1179555336-1747899484196 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555336-1747899484196 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555336
  [data-elem-id="1747899484196"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1753253778864 {
  animation: sbs-1131002046-1753253778864 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1753253778864 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131002046
  [data-elem-id="1753253778864"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1753253778835 {
  animation: sbs-1131002046-1753253778835 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1753253778835 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131002046
  [data-elem-id="1753253778835"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1753253778806 {
  animation: sbs-1131002046-1753253778806 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1753253778806 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131002046
  [data-elem-id="1753253778806"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1753253778777 {
  animation: sbs-1131002046-1753253778777 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1753253778777 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131002046
  [data-elem-id="1753253778777"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1753253778743 {
  animation: sbs-1131002046-1753253778743 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1753253778743 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131002046
  [data-elem-id="1753253778743"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1753253778696 {
  animation: sbs-1131002046-1753253778696 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1753253778696 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131002046
  [data-elem-id="1753253778696"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131002046-1748004070451 {
  animation: sbs-1131002046-1748004070451 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131002046-1748004070451 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.78, 0.78);
  }
}

#rec1131002046
  [data-elem-id="1748004070451"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/* ---- assets/inline/css/aboutus_index-6601c8e58d59.css ---- */
.t-input-group.js-error-control-box .t-input-phonemask {
  border: 0 !important;
}
.t-input_pvis.t-input-phonemask__wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.t-input-phonemask__wrap {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
.t-input .t-input-phonemask,
.t-input-phonemask {
  height: auto;
  padding: 0;
  background-color: transparent;
}
.t-input-phonemask__options-wrap {
  display: none;
  z-index: 99999999;
  position: fixed;
  min-width: 410px;
  max-height: 200px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
}
.t-input-phonemask__options-wrap.t-input-phonemask__options-wrap_open {
  display: block;
}
.t-input-phonemask__options-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 8px 10px;
  font-family: sans-serif;
  font-size: 14px;
  color: #000 !important;
  cursor: pointer;
}
.t-input-phonemask__options-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.t-input-phonemask__options-item.t-input-phonemask__options-item_chosen,
.t-input-phonemask__options-item:hover {
  background-color: #eee;
}
.t-input-phonemask__select {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 5px;
  margin-left: 0;
  font-size: 16px;
  cursor: pointer;
}
.t-input-phonemask__select-triangle {
  position: relative;
  margin-left: 6px;
  border-style: solid;
  border-width: 5px 4px 0;
  border-color: #9a9a9a transparent transparent;
}
.t-input-phonemask__select-code {
  white-space: nowrap;
}
.t-input-phonemask__options-code,
.t-input-phonemask__select-code {
  margin-left: 10px;
}
.t-input-phonemask__options-flag,
.t-input-phonemask__select-flag {
  width: 18px;
  min-width: 18px;
  height: 13px;
  background-color: #c5c5c5;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.t-input-phonemask__options-flag {
  margin-left: 8px;
}
.t-input-phonemask__options-wrap::-webkit-scrollbar {
  width: 8px;
  height: 15px;
}
.t-input-phonemask__options-wrap::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #c2c9d2;
}
@media screen and (max-width: 640px) {
  .t-input-phonemask__options-wrap {
    min-width: auto;
  }
}
.t-input-phonemask__options-flag,
.t-input-phonemask__select-flag {
  background-image: url(../assets/img/icons/flags7.png);
  background-repeat: no-repeat;
  display: inline-block;
}
.t-input-phonemask__options-flag_np,
.t-input-phonemask__select-flag[data-phonemask-flag="np"] {
  width: 16px;
  min-width: 16px;
}
.t-input-phonemask__options-flag_ad,
.t-input-phonemask__select-flag[data-phonemask-flag="ad"] {
  background-position: -5px -5px;
}
.t-input-phonemask__options-flag_ae,
.t-input-phonemask__select-flag[data-phonemask-flag="ae"] {
  background-position: -33px -5px;
}
.t-input-phonemask__options-flag_af,
.t-input-phonemask__select-flag[data-phonemask-flag="af"] {
  background-position: -61px -5px;
}
.t-input-phonemask__options-flag_ag,
.t-input-phonemask__select-flag[data-phonemask-flag="ag"] {
  background-position: -89px -5px;
}
.t-input-phonemask__options-flag_al,
.t-input-phonemask__select-flag[data-phonemask-flag="al"] {
  background-position: -117px -5px;
}
.t-input-phonemask__options-flag_am,
.t-input-phonemask__select-flag[data-phonemask-flag="am"] {
  background-position: -145px -5px;
}
.t-input-phonemask__options-flag_ao,
.t-input-phonemask__select-flag[data-phonemask-flag="ao"] {
  background-position: -173px -5px;
}
.t-input-phonemask__options-flag_ar,
.t-input-phonemask__select-flag[data-phonemask-flag="ar"] {
  background-position: -201px -5px;
}
.t-input-phonemask__options-flag_at,
.t-input-phonemask__select-flag[data-phonemask-flag="at"] {
  background-position: -229px -5px;
}
.t-input-phonemask__options-flag_au,
.t-input-phonemask__select-flag[data-phonemask-flag="au"] {
  background-position: -257px -5px;
}
.t-input-phonemask__options-flag_az,
.t-input-phonemask__select-flag[data-phonemask-flag="az"] {
  background-position: -285px -5px;
}
.t-input-phonemask__options-flag_ba,
.t-input-phonemask__select-flag[data-phonemask-flag="ba"] {
  background-position: -313px -5px;
}
.t-input-phonemask__options-flag_bb,
.t-input-phonemask__select-flag[data-phonemask-flag="bb"] {
  background-position: -5px -28px;
}
.t-input-phonemask__options-flag_bd,
.t-input-phonemask__select-flag[data-phonemask-flag="bd"] {
  background-position: -33px -28px;
}
.t-input-phonemask__options-flag_be,
.t-input-phonemask__select-flag[data-phonemask-flag="be"] {
  background-position: -61px -28px;
}
.t-input-phonemask__options-flag_bf,
.t-input-phonemask__select-flag[data-phonemask-flag="bf"] {
  background-position: -89px -28px;
}
.t-input-phonemask__options-flag_bg,
.t-input-phonemask__select-flag[data-phonemask-flag="bg"] {
  background-position: -117px -28px;
}
.t-input-phonemask__options-flag_bh,
.t-input-phonemask__select-flag[data-phonemask-flag="bh"] {
  background-position: -145px -28px;
}
.t-input-phonemask__options-flag_bi,
.t-input-phonemask__select-flag[data-phonemask-flag="bi"] {
  background-position: -173px -28px;
}
.t-input-phonemask__options-flag_bj,
.t-input-phonemask__select-flag[data-phonemask-flag="bj"] {
  background-position: -201px -28px;
}
.t-input-phonemask__options-flag_bm,
.t-input-phonemask__select-flag[data-phonemask-flag="bm"] {
  background-position: -229px -28px;
}
.t-input-phonemask__options-flag_bn,
.t-input-phonemask__select-flag[data-phonemask-flag="bn"] {
  background-position: -257px -28px;
}
.t-input-phonemask__options-flag_bo,
.t-input-phonemask__select-flag[data-phonemask-flag="bo"] {
  background-position: -285px -28px;
}
.t-input-phonemask__options-flag_bq,
.t-input-phonemask__select-flag[data-phonemask-flag="bq"] {
  background-position: -89px -258px;
}
.t-input-phonemask__options-flag_br,
.t-input-phonemask__select-flag[data-phonemask-flag="br"] {
  background-position: -313px -28px;
}
.t-input-phonemask__options-flag_bs,
.t-input-phonemask__select-flag[data-phonemask-flag="bs"] {
  background-position: -5px -51px;
}
.t-input-phonemask__options-flag_bt,
.t-input-phonemask__select-flag[data-phonemask-flag="bt"] {
  background-position: -33px -51px;
}
.t-input-phonemask__options-flag_bw,
.t-input-phonemask__select-flag[data-phonemask-flag="bw"] {
  background-position: -61px -51px;
}
.t-input-phonemask__options-flag_by,
.t-input-phonemask__select-flag[data-phonemask-flag="by"] {
  background-position: -89px -51px;
}
.t-input-phonemask__options-flag_bz,
.t-input-phonemask__select-flag[data-phonemask-flag="bz"] {
  background-position: -117px -51px;
}
.t-input-phonemask__options-flag_ca,
.t-input-phonemask__select-flag[data-phonemask-flag="ca"] {
  background-position: -145px -51px;
}
.t-input-phonemask__options-flag_ky,
.t-input-phonemask__select-flag[data-phonemask-flag="ky"] {
  background-position: -367px -28px;
}
.t-input-phonemask__options-flag_cd,
.t-input-phonemask__select-flag[data-phonemask-flag="cd"] {
  background-position: -173px -51px;
}
.t-input-phonemask__options-flag_cf,
.t-input-phonemask__select-flag[data-phonemask-flag="cf"] {
  background-position: -201px -51px;
}
.t-input-phonemask__options-flag_cg,
.t-input-phonemask__select-flag[data-phonemask-flag="cg"] {
  background-position: -229px -51px;
}
.t-input-phonemask__options-flag_ch,
.t-input-phonemask__select-flag[data-phonemask-flag="ch"] {
  background-position: -257px -51px;
}
.t-input-phonemask__options-flag_ci,
.t-input-phonemask__select-flag[data-phonemask-flag="ci"] {
  background-position: -285px -51px;
}
.t-input-phonemask__options-flag_ck,
.t-input-phonemask__select-flag[data-phonemask-flag="ck"] {
  background-position: -313px -51px;
}
.t-input-phonemask__options-flag_cl,
.t-input-phonemask__select-flag[data-phonemask-flag="cl"] {
  background-position: -5px -74px;
}
.t-input-phonemask__options-flag_cm,
.t-input-phonemask__select-flag[data-phonemask-flag="cm"] {
  background-position: -33px -74px;
}
.t-input-phonemask__options-flag_cn,
.t-input-phonemask__select-flag[data-phonemask-flag="cn"] {
  background-position: -61px -74px;
}
.t-input-phonemask__options-flag_co,
.t-input-phonemask__select-flag[data-phonemask-flag="co"] {
  background-position: -89px -74px;
}
.t-input-phonemask__options-flag_cr,
.t-input-phonemask__select-flag[data-phonemask-flag="cr"] {
  background-position: -117px -74px;
}
.t-input-phonemask__options-flag_cu,
.t-input-phonemask__select-flag[data-phonemask-flag="cu"] {
  background-position: -145px -74px;
}
.t-input-phonemask__options-flag_cv,
.t-input-phonemask__select-flag[data-phonemask-flag="cv"] {
  background-position: -173px -74px;
}
.t-input-phonemask__options-flag_cz,
.t-input-phonemask__select-flag[data-phonemask-flag="cz"] {
  background-position: -229px -74px;
}
.t-input-phonemask__options-flag_cy,
.t-input-phonemask__select-flag[data-phonemask-flag="cy"] {
  background-position: -201px -74px;
}
.t-input-phonemask__options-flag_de,
.t-input-phonemask__select-flag[data-phonemask-flag="de"] {
  background-position: -257px -74px;
}
.t-input-phonemask__options-flag_dj,
.t-input-phonemask__select-flag[data-phonemask-flag="dj"] {
  background-position: -285px -74px;
}
.t-input-phonemask__options-flag_dk,
.t-input-phonemask__select-flag[data-phonemask-flag="dk"] {
  background-position: -313px -74px;
}
.t-input-phonemask__options-flag_dm,
.t-input-phonemask__select-flag[data-phonemask-flag="dm"] {
  background-position: -5px -97px;
}
.t-input-phonemask__options-flag_do,
.t-input-phonemask__select-flag[data-phonemask-flag="do"] {
  background-position: -33px -97px;
}
.t-input-phonemask__options-flag_dz,
.t-input-phonemask__select-flag[data-phonemask-flag="dz"] {
  background-position: -61px -97px;
}
.t-input-phonemask__options-flag_ec,
.t-input-phonemask__select-flag[data-phonemask-flag="ec"] {
  background-position: -89px -97px;
}
.t-input-phonemask__options-flag_ee,
.t-input-phonemask__select-flag[data-phonemask-flag="ee"] {
  background-position: -117px -97px;
}
.t-input-phonemask__options-flag_eg,
.t-input-phonemask__select-flag[data-phonemask-flag="eg"] {
  background-position: -145px -97px;
}
.t-input-phonemask__options-flag_eh,
.t-input-phonemask__select-flag[data-phonemask-flag="eh"] {
  background-position: -173px -97px;
}
.t-input-phonemask__options-flag_er,
.t-input-phonemask__select-flag[data-phonemask-flag="er"] {
  background-position: -201px -97px;
}
.t-input-phonemask__options-flag_es,
.t-input-phonemask__select-flag[data-phonemask-flag="es"] {
  background-position: -229px -97px;
}
.t-input-phonemask__options-flag_et,
.t-input-phonemask__select-flag[data-phonemask-flag="et"] {
  background-position: -257px -97px;
}
.t-input-phonemask__options-flag_fi,
.t-input-phonemask__select-flag[data-phonemask-flag="fi"] {
  background-position: -285px -97px;
}
.t-input-phonemask__options-flag_fj,
.t-input-phonemask__select-flag[data-phonemask-flag="fj"] {
  background-position: -313px -97px;
}
.t-input-phonemask__options-flag_fm,
.t-input-phonemask__select-flag[data-phonemask-flag="fm"] {
  background-position: -5px -120px;
}
.t-input-phonemask__options-flag_fr,
.t-input-phonemask__select-flag[data-phonemask-flag="fr"] {
  background-position: -33px -120px;
}
.t-input-phonemask__options-flag_ga,
.t-input-phonemask__select-flag[data-phonemask-flag="ga"] {
  background-position: -61px -120px;
}
.t-input-phonemask__options-flag_gb,
.t-input-phonemask__select-flag[data-phonemask-flag="gb"] {
  background-position: -89px -120px;
}
.t-input-phonemask__options-flag_gd,
.t-input-phonemask__select-flag[data-phonemask-flag="gd"] {
  background-position: -117px -120px;
}
.t-input-phonemask__options-flag_ge,
.t-input-phonemask__select-flag[data-phonemask-flag="ge"] {
  background-position: -145px -120px;
}
.t-input-phonemask__options-flag_gh,
.t-input-phonemask__select-flag[data-phonemask-flag="gh"] {
  background-position: -173px -120px;
}
.t-input-phonemask__options-flag_gm,
.t-input-phonemask__select-flag[data-phonemask-flag="gm"] {
  background-position: -201px -120px;
}
.t-input-phonemask__options-flag_gn,
.t-input-phonemask__select-flag[data-phonemask-flag="gn"] {
  background-position: -229px -120px;
}
.t-input-phonemask__options-flag_gq,
.t-input-phonemask__select-flag[data-phonemask-flag="gq"] {
  background-position: -257px -120px;
}
.t-input-phonemask__options-flag_gr,
.t-input-phonemask__select-flag[data-phonemask-flag="gr"] {
  background-position: -285px -120px;
}
.t-input-phonemask__options-flag_gt,
.t-input-phonemask__select-flag[data-phonemask-flag="gt"] {
  background-position: -313px -120px;
}
.t-input-phonemask__options-flag_gw,
.t-input-phonemask__select-flag[data-phonemask-flag="gw"] {
  background-position: -5px -143px;
}
.t-input-phonemask__options-flag_gy,
.t-input-phonemask__select-flag[data-phonemask-flag="gy"] {
  background-position: -33px -143px;
}
.t-input-phonemask__options-flag_hk,
.t-input-phonemask__select-flag[data-phonemask-flag="hk"] {
  background-position: -61px -143px;
}
.t-input-phonemask__options-flag_hn,
.t-input-phonemask__select-flag[data-phonemask-flag="hn"] {
  background-position: -89px -143px;
}
.t-input-phonemask__options-flag_hr,
.t-input-phonemask__select-flag[data-phonemask-flag="hr"] {
  background-position: -117px -143px;
}
.t-input-phonemask__options-flag_ht,
.t-input-phonemask__select-flag[data-phonemask-flag="ht"] {
  background-position: -145px -143px;
}
.t-input-phonemask__options-flag_hu,
.t-input-phonemask__select-flag[data-phonemask-flag="hu"] {
  background-position: -173px -143px;
}
.t-input-phonemask__options-flag_id,
.t-input-phonemask__select-flag[data-phonemask-flag="id"] {
  background-position: -201px -143px;
}
.t-input-phonemask__options-flag_ie,
.t-input-phonemask__select-flag[data-phonemask-flag="ie"] {
  background-position: -229px -143px;
}
.t-input-phonemask__options-flag_il,
.t-input-phonemask__select-flag[data-phonemask-flag="il"] {
  background-position: -257px -143px;
}
.t-input-phonemask__options-flag_in,
.t-input-phonemask__select-flag[data-phonemask-flag="in"] {
  background-position: -285px -143px;
}
.t-input-phonemask__options-flag_iq,
.t-input-phonemask__select-flag[data-phonemask-flag="iq"] {
  background-position: -313px -143px;
}
.t-input-phonemask__options-flag_ir,
.t-input-phonemask__select-flag[data-phonemask-flag="ir"] {
  background-position: -5px -166px;
}
.t-input-phonemask__options-flag_is,
.t-input-phonemask__select-flag[data-phonemask-flag="is"] {
  background-position: -33px -166px;
}
.t-input-phonemask__options-flag_it,
.t-input-phonemask__select-flag[data-phonemask-flag="it"] {
  background-position: -61px -166px;
}
.t-input-phonemask__options-flag_jm,
.t-input-phonemask__select-flag[data-phonemask-flag="jm"] {
  background-position: -89px -166px;
}
.t-input-phonemask__options-flag_jo,
.t-input-phonemask__select-flag[data-phonemask-flag="jo"] {
  background-position: -117px -166px;
}
.t-input-phonemask__options-flag_jp,
.t-input-phonemask__select-flag[data-phonemask-flag="jp"] {
  background-position: -145px -166px;
}
.t-input-phonemask__options-flag_ke,
.t-input-phonemask__select-flag[data-phonemask-flag="ke"] {
  background-position: -173px -166px;
}
.t-input-phonemask__options-flag_kg,
.t-input-phonemask__select-flag[data-phonemask-flag="kg"] {
  background-position: -201px -166px;
}
.t-input-phonemask__options-flag_kh,
.t-input-phonemask__select-flag[data-phonemask-flag="kh"] {
  background-position: -229px -166px;
}
.t-input-phonemask__options-flag_ki,
.t-input-phonemask__select-flag[data-phonemask-flag="ki"] {
  background-position: -257px -166px;
}
.t-input-phonemask__options-flag_km,
.t-input-phonemask__select-flag[data-phonemask-flag="km"] {
  background-position: -285px -166px;
}
.t-input-phonemask__options-flag_kn,
.t-input-phonemask__select-flag[data-phonemask-flag="kn"] {
  background-position: -313px -166px;
}
.t-input-phonemask__options-flag_kp,
.t-input-phonemask__select-flag[data-phonemask-flag="kp"] {
  background-position: -5px -189px;
}
.t-input-phonemask__options-flag_kr,
.t-input-phonemask__select-flag[data-phonemask-flag="kr"] {
  background-position: -33px -189px;
}
.t-input-phonemask__options-flag_ks,
.t-input-phonemask__select-flag[data-phonemask-flag="ks"] {
  background-position: -61px -189px;
}
.t-input-phonemask__options-flag_kw,
.t-input-phonemask__select-flag[data-phonemask-flag="kw"] {
  background-position: -89px -189px;
}
.t-input-phonemask__options-flag_kz,
.t-input-phonemask__select-flag[data-phonemask-flag="kz"] {
  background-position: -117px -189px;
}
.t-input-phonemask__options-flag_la,
.t-input-phonemask__select-flag[data-phonemask-flag="la"] {
  background-position: -145px -189px;
}
.t-input-phonemask__options-flag_lb,
.t-input-phonemask__select-flag[data-phonemask-flag="lb"] {
  background-position: -173px -189px;
}
.t-input-phonemask__options-flag_lc,
.t-input-phonemask__select-flag[data-phonemask-flag="lc"] {
  background-position: -201px -189px;
}
.t-input-phonemask__options-flag_li,
.t-input-phonemask__select-flag[data-phonemask-flag="li"] {
  background-position: -229px -189px;
}
.t-input-phonemask__options-flag_lk,
.t-input-phonemask__select-flag[data-phonemask-flag="lk"] {
  background-position: -257px -189px;
}
.t-input-phonemask__options-flag_lr,
.t-input-phonemask__select-flag[data-phonemask-flag="lr"] {
  background-position: -285px -189px;
}
.t-input-phonemask__options-flag_ls,
.t-input-phonemask__select-flag[data-phonemask-flag="ls"] {
  background-position: -313px -189px;
}
.t-input-phonemask__options-flag_lt,
.t-input-phonemask__select-flag[data-phonemask-flag="lt"] {
  background-position: -5px -212px;
}
.t-input-phonemask__options-flag_lu,
.t-input-phonemask__select-flag[data-phonemask-flag="lu"] {
  background-position: -33px -212px;
}
.t-input-phonemask__options-flag_lv,
.t-input-phonemask__select-flag[data-phonemask-flag="lv"] {
  background-position: -61px -212px;
}
.t-input-phonemask__options-flag_ly,
.t-input-phonemask__select-flag[data-phonemask-flag="ly"] {
  background-position: -89px -212px;
}
.t-input-phonemask__options-flag_ma,
.t-input-phonemask__select-flag[data-phonemask-flag="ma"] {
  background-position: -117px -212px;
}
.t-input-phonemask__options-flag_mc,
.t-input-phonemask__select-flag[data-phonemask-flag="mc"] {
  background-position: -145px -212px;
}
.t-input-phonemask__options-flag_md,
.t-input-phonemask__select-flag[data-phonemask-flag="md"] {
  background-position: -173px -212px;
}
.t-input-phonemask__options-flag_me,
.t-input-phonemask__select-flag[data-phonemask-flag="me"] {
  background-position: -201px -212px;
}
.t-input-phonemask__options-flag_mg,
.t-input-phonemask__select-flag[data-phonemask-flag="mg"] {
  background-position: -229px -212px;
}
.t-input-phonemask__options-flag_mh,
.t-input-phonemask__select-flag[data-phonemask-flag="mh"] {
  background-position: -257px -212px;
}
.t-input-phonemask__options-flag_mk,
.t-input-phonemask__select-flag[data-phonemask-flag="mk"] {
  background-position: -285px -212px;
}
.t-input-phonemask__options-flag_ml,
.t-input-phonemask__select-flag[data-phonemask-flag="ml"] {
  background-position: -313px -212px;
}
.t-input-phonemask__options-flag_mm,
.t-input-phonemask__select-flag[data-phonemask-flag="mm"] {
  background-position: -5px -235px;
}
.t-input-phonemask__options-flag_mn,
.t-input-phonemask__select-flag[data-phonemask-flag="mn"] {
  background-position: -33px -235px;
}
.t-input-phonemask__options-flag_mo,
.t-input-phonemask__select-flag[data-phonemask-flag="mo"] {
  background-position: -61px -235px;
}
.t-input-phonemask__options-flag_mr,
.t-input-phonemask__select-flag[data-phonemask-flag="mr"] {
  background-position: -89px -235px;
}
.t-input-phonemask__options-flag_mt,
.t-input-phonemask__select-flag[data-phonemask-flag="mt"] {
  background-position: -117px -235px;
}
.t-input-phonemask__options-flag_mu,
.t-input-phonemask__select-flag[data-phonemask-flag="mu"] {
  background-position: -145px -235px;
}
.t-input-phonemask__options-flag_mv,
.t-input-phonemask__select-flag[data-phonemask-flag="mv"] {
  background-position: -173px -235px;
}
.t-input-phonemask__options-flag_mw,
.t-input-phonemask__select-flag[data-phonemask-flag="mw"] {
  background-position: -201px -235px;
}
.t-input-phonemask__options-flag_mb,
.t-input-phonemask__select-flag[data-phonemask-flag="mb"] {
  background-position: -229px -235px;
}
.t-input-phonemask__options-flag_mx,
.t-input-phonemask__select-flag[data-phonemask-flag="mx"] {
  background-position: -229px -235px;
}
.t-input-phonemask__options-flag_my,
.t-input-phonemask__select-flag[data-phonemask-flag="my"] {
  background-position: -257px -235px;
}
.t-input-phonemask__options-flag_mz,
.t-input-phonemask__select-flag[data-phonemask-flag="mz"] {
  background-position: -285px -235px;
}
.t-input-phonemask__options-flag_na,
.t-input-phonemask__select-flag[data-phonemask-flag="na"] {
  background-position: -313px -235px;
}
.t-input-phonemask__options-flag_ne,
.t-input-phonemask__select-flag[data-phonemask-flag="ne"] {
  background-position: -5px -258px;
}
.t-input-phonemask__options-flag_ng,
.t-input-phonemask__select-flag[data-phonemask-flag="ng"] {
  background-position: -33px -258px;
}
.t-input-phonemask__options-flag_ni,
.t-input-phonemask__select-flag[data-phonemask-flag="ni"] {
  background-position: -61px -258px;
}
.t-input-phonemask__options-flag_nl,
.t-input-phonemask__select-flag[data-phonemask-flag="nl"] {
  background-position: -89px -258px;
}
.t-input-phonemask__options-flag_no,
.t-input-phonemask__select-flag[data-phonemask-flag="no"] {
  background-position: -117px -258px;
}
.t-input-phonemask__options-flag_np,
.t-input-phonemask__select-flag[data-phonemask-flag="np"] {
  background-position: -341px -5px;
}
.t-input-phonemask__options-flag_nr,
.t-input-phonemask__select-flag[data-phonemask-flag="nr"] {
  background-position: -145px -258px;
}
.t-input-phonemask__options-flag_nu,
.t-input-phonemask__select-flag[data-phonemask-flag="nu"] {
  background-position: -173px -258px;
}
.t-input-phonemask__options-flag_nc,
.t-input-phonemask__select-flag[data-phonemask-flag="nc"] {
  background-position: -229px -350px;
}
.t-input-phonemask__options-flag_nz,
.t-input-phonemask__select-flag[data-phonemask-flag="nz"] {
  background-position: -201px -258px;
}
.t-input-phonemask__options-flag_om,
.t-input-phonemask__select-flag[data-phonemask-flag="om"] {
  background-position: -229px -258px;
}
.t-input-phonemask__options-flag_pa,
.t-input-phonemask__select-flag[data-phonemask-flag="pa"] {
  background-position: -257px -258px;
}
.t-input-phonemask__options-flag_pe,
.t-input-phonemask__select-flag[data-phonemask-flag="pe"] {
  background-position: -285px -258px;
}
.t-input-phonemask__options-flag_pg,
.t-input-phonemask__select-flag[data-phonemask-flag="pg"] {
  background-position: -313px -258px;
}
.t-input-phonemask__options-flag_ph,
.t-input-phonemask__select-flag[data-phonemask-flag="ph"] {
  background-position: -5px -281px;
}
.t-input-phonemask__options-flag_pk,
.t-input-phonemask__select-flag[data-phonemask-flag="pk"] {
  background-position: -33px -281px;
}
.t-input-phonemask__options-flag_pl,
.t-input-phonemask__select-flag[data-phonemask-flag="pl"] {
  background-position: -61px -281px;
}
.t-input-phonemask__options-flag_ps,
.t-input-phonemask__select-flag[data-phonemask-flag="ps"] {
  background-position: -89px -281px;
}
.t-input-phonemask__options-flag_pt,
.t-input-phonemask__select-flag[data-phonemask-flag="pt"] {
  background-position: -117px -281px;
}
.t-input-phonemask__options-flag_pw,
.t-input-phonemask__select-flag[data-phonemask-flag="pw"] {
  background-position: -145px -281px;
}
.t-input-phonemask__options-flag_py,
.t-input-phonemask__select-flag[data-phonemask-flag="py"] {
  background-position: -173px -281px;
}
.t-input-phonemask__options-flag_qa,
.t-input-phonemask__select-flag[data-phonemask-flag="qa"] {
  background-position: -201px -281px;
}
.t-input-phonemask__options-flag_ro,
.t-input-phonemask__select-flag[data-phonemask-flag="ro"] {
  background-position: -229px -281px;
}
.t-input-phonemask__options-flag_rs,
.t-input-phonemask__select-flag[data-phonemask-flag="rs"] {
  background-position: -257px -281px;
}
.t-input-phonemask__options-flag_ru,
.t-input-phonemask__select-flag[data-phonemask-flag="ru"] {
  background-position: -285px -281px;
}
.t-input-phonemask__options-flag_rw,
.t-input-phonemask__select-flag[data-phonemask-flag="rw"] {
  background-position: -313px -281px;
}
.t-input-phonemask__options-flag_sa,
.t-input-phonemask__select-flag[data-phonemask-flag="sa"] {
  background-position: -5px -304px;
}
.t-input-phonemask__options-flag_sb,
.t-input-phonemask__select-flag[data-phonemask-flag="sb"] {
  background-position: -33px -304px;
}
.t-input-phonemask__options-flag_sc,
.t-input-phonemask__select-flag[data-phonemask-flag="sc"] {
  background-position: -61px -304px;
}
.t-input-phonemask__options-flag_sd,
.t-input-phonemask__select-flag[data-phonemask-flag="sd"] {
  background-position: -89px -304px;
}
.t-input-phonemask__options-flag_se,
.t-input-phonemask__select-flag[data-phonemask-flag="se"] {
  background-position: -117px -304px;
}
.t-input-phonemask__options-flag_sg,
.t-input-phonemask__select-flag[data-phonemask-flag="sg"] {
  background-position: -145px -304px;
}
.t-input-phonemask__options-flag_si,
.t-input-phonemask__select-flag[data-phonemask-flag="si"] {
  background-position: -173px -304px;
}
.t-input-phonemask__options-flag_sk,
.t-input-phonemask__select-flag[data-phonemask-flag="sk"] {
  background-position: -201px -304px;
}
.t-input-phonemask__options-flag_sl,
.t-input-phonemask__select-flag[data-phonemask-flag="sl"] {
  background-position: -229px -304px;
}
.t-input-phonemask__options-flag_sm,
.t-input-phonemask__select-flag[data-phonemask-flag="sm"] {
  background-position: -257px -304px;
}
.t-input-phonemask__options-flag_sn,
.t-input-phonemask__select-flag[data-phonemask-flag="sn"] {
  background-position: -285px -304px;
}
.t-input-phonemask__options-flag_so,
.t-input-phonemask__select-flag[data-phonemask-flag="so"] {
  background-position: -313px -304px;
}
.t-input-phonemask__options-flag_sr,
.t-input-phonemask__select-flag[data-phonemask-flag="sr"] {
  background-position: -5px -327px;
}
.t-input-phonemask__options-flag_ss,
.t-input-phonemask__select-flag[data-phonemask-flag="ss"] {
  background-position: -33px -327px;
}
.t-input-phonemask__options-flag_st,
.t-input-phonemask__select-flag[data-phonemask-flag="st"] {
  background-position: -61px -327px;
}
.t-input-phonemask__options-flag_sv,
.t-input-phonemask__select-flag[data-phonemask-flag="sv"] {
  background-position: -89px -327px;
}
.t-input-phonemask__options-flag_sy,
.t-input-phonemask__select-flag[data-phonemask-flag="sy"] {
  background-position: -117px -327px;
}
.t-input-phonemask__options-flag_sz,
.t-input-phonemask__select-flag[data-phonemask-flag="sz"] {
  background-position: -145px -327px;
}
.t-input-phonemask__options-flag_td,
.t-input-phonemask__select-flag[data-phonemask-flag="td"] {
  background-position: -173px -327px;
}
.t-input-phonemask__options-flag_tg,
.t-input-phonemask__select-flag[data-phonemask-flag="tg"] {
  background-position: -201px -327px;
}
.t-input-phonemask__options-flag_th,
.t-input-phonemask__select-flag[data-phonemask-flag="th"] {
  background-position: -229px -327px;
}
.t-input-phonemask__options-flag_tj,
.t-input-phonemask__select-flag[data-phonemask-flag="tj"] {
  background-position: -257px -327px;
}
.t-input-phonemask__options-flag_tl,
.t-input-phonemask__select-flag[data-phonemask-flag="tl"] {
  background-position: -285px -327px;
}
.t-input-phonemask__options-flag_tm,
.t-input-phonemask__select-flag[data-phonemask-flag="tm"] {
  background-position: -313px -327px;
}
.t-input-phonemask__options-flag_tn,
.t-input-phonemask__select-flag[data-phonemask-flag="tn"] {
  background-position: -367px -5px;
}
.t-input-phonemask__options-flag_to,
.t-input-phonemask__select-flag[data-phonemask-flag="to"] {
  background-position: -341px -28px;
}
.t-input-phonemask__options-flag_tr,
.t-input-phonemask__select-flag[data-phonemask-flag="tr"] {
  background-position: -341px -51px;
}
.t-input-phonemask__options-flag_tt,
.t-input-phonemask__select-flag[data-phonemask-flag="tt"] {
  background-position: -341px -74px;
}
.t-input-phonemask__options-flag_tv,
.t-input-phonemask__select-flag[data-phonemask-flag="tv"] {
  background-position: -341px -97px;
}
.t-input-phonemask__options-flag_tw,
.t-input-phonemask__select-flag[data-phonemask-flag="tw"] {
  background-position: -341px -120px;
}
.t-input-phonemask__options-flag_tz,
.t-input-phonemask__select-flag[data-phonemask-flag="tz"] {
  background-position: -341px -143px;
}
.t-input-phonemask__options-flag_ua,
.t-input-phonemask__select-flag[data-phonemask-flag="ua"] {
  background-position: -341px -166px;
}
.t-input-phonemask__options-flag_ug,
.t-input-phonemask__select-flag[data-phonemask-flag="ug"] {
  background-position: -341px -189px;
}
.t-input-phonemask__options-flag_us,
.t-input-phonemask__select-flag[data-phonemask-flag="us"] {
  background-position: -341px -212px;
}
.t-input-phonemask__options-flag_uy,
.t-input-phonemask__select-flag[data-phonemask-flag="uy"] {
  background-position: -341px -235px;
}
.t-input-phonemask__options-flag_uz,
.t-input-phonemask__select-flag[data-phonemask-flag="uz"] {
  background-position: -341px -258px;
}
.t-input-phonemask__options-flag_va,
.t-input-phonemask__select-flag[data-phonemask-flag="va"] {
  background-position: -341px -281px;
}
.t-input-phonemask__options-flag_vc,
.t-input-phonemask__select-flag[data-phonemask-flag="vc"] {
  background-position: -341px -304px;
}
.t-input-phonemask__options-flag_ve,
.t-input-phonemask__select-flag[data-phonemask-flag="ve"] {
  background-position: -341px -327px;
}
.t-input-phonemask__options-flag_vn,
.t-input-phonemask__select-flag[data-phonemask-flag="vn"] {
  background-position: -5px -350px;
}
.t-input-phonemask__options-flag_vu,
.t-input-phonemask__select-flag[data-phonemask-flag="vu"] {
  background-position: -33px -350px;
}
.t-input-phonemask__options-flag_ws,
.t-input-phonemask__select-flag[data-phonemask-flag="ws"] {
  background-position: -61px -350px;
}
.t-input-phonemask__options-flag_xk,
.t-input-phonemask__select-flag[data-phonemask-flag="xk"] {
  background-position: -89px -350px;
}
.t-input-phonemask__options-flag_ye,
.t-input-phonemask__select-flag[data-phonemask-flag="ye"] {
  background-position: -117px -350px;
}
.t-input-phonemask__options-flag_za,
.t-input-phonemask__select-flag[data-phonemask-flag="za"] {
  background-position: -145px -350px;
}
.t-input-phonemask__options-flag_zm,
.t-input-phonemask__select-flag[data-phonemask-flag="zm"] {
  background-position: -173px -350px;
}
.t-input-phonemask__options-flag_zw,
.t-input-phonemask__select-flag[data-phonemask-flag="zw"] {
  background-position: -201px -350px;
}

/* ---- assets/inline/css/aboutus_index-947794653784.css ---- */
#rec1065483946 .t396__artboard {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 990;
}
#rec1065483946 .t396__artboard {
  height: 50px;
  background-color: #000000;
  overflow: visible;
}
#rec1065483946 .t396__filter {
  height: 50px;
}
#rec1065483946 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .t396__artboard,
  #rec1065483946 .t396__filter,
  #rec1065483946 .t396__carrier {
  }
  #rec1065483946 .t396__filter {
  }
  #rec1065483946 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .t396__artboard,
  #rec1065483946 .t396__filter,
  #rec1065483946 .t396__carrier {
  }
  #rec1065483946 .t396__filter {
  }
  #rec1065483946 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .t396__artboard,
  #rec1065483946 .t396__filter,
  #rec1065483946 .t396__carrier {
  }
  #rec1065483946 .t396__filter {
  }
  #rec1065483946 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .t396__artboard,
  #rec1065483946 .t396__filter,
  #rec1065483946 .t396__carrier {
  }
  #rec1065483946 .t396__filter {
  }
  #rec1065483946 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1748336375830"] {
  z-index: 3;
  top: -1px;
  left: calc(50% - 600px + -546px);
  width: 2293px;
  height: 50px;
}
#rec1065483946 .tn-elem[data-elem-id="1748336375830"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747235389820"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 402px);
  width: 78px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1747235389820"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1065483946 .tn-elem[data-elem-id="1747235389820"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 240px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1485px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 7px;
    left: 509px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747235476777"] {
  color: #eb1414;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 500px);
  width: 78px;
  height: 30px;
  pointer-events: none;
}
#rec1065483946 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  color: #eb1414;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 325px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1583px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 7px;
    left: 607px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747235487045"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 598px);
  width: 78px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1065483946 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 410px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1681px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 7px;
    left: 705px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1748421568956"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 696px);
  width: 78px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1748421568956"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1065483946 .tn-elem[data-elem-id="1748421568956"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 495px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: -1px;
    left: calc(50% - 320px + 1872px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 17px;
    left: 813px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747235609694"] {
  color: #000000;
  text-align: center;
  z-index: 9;
  top: 10px;
  left: calc(50% - 600px + 994px);
  width: 126px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1065483946 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 824px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 502px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    left: calc(50% - 240px + 343px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: 144px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747236375794"] {
  color: #000000;
  text-align: center;
  z-index: 10;
  top: 11px;
  left: calc(50% - 600px + 949px);
  width: 30px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1065483946 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 480px + 778px);
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 456px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 240px + 297px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 9px;
    left: 392px;
    width: 30px;
    height: 30px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747236894336"] {
  z-index: 11;
  top: 16px;
  left: calc(50% - 600px + 954px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1065483946 .tn-elem[data-elem-id="1747236894336"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 783px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 461px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    left: calc(50% - 240px + 302px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 14px;
    left: 397px;
    width: 20px;
    height: 20px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747236388101"] {
  color: #000000;
  text-align: center;
  z-index: 12;
  top: 11px;
  left: calc(50% - 600px + 904px);
  width: 30px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1065483946 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 480px + 732px);
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 410px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 9px;
    left: 352px;
    width: 30px;
    height: 30px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747823134840"] {
  z-index: 13;
  top: 16px;
  left: calc(50% - 600px + 909px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1065483946 .tn-elem[data-elem-id="1747823134840"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 737px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 415px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 14px;
    left: 357px;
    width: 20px;
    height: 20px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747308725321"] {
  z-index: 15;
  top: 10px;
  left: calc(50% - 600px + 1880px);
  width: 60px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747308725321"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: 438px;
    width: 60px;
    height: 30px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747308857459"] {
  color: #000000;
  text-align: center;
  z-index: 17;
  top: 10px;
  left: calc(50% - 600px + 1880px);
  width: 30px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: 438px;
    width: 30px;
    height: 30px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747326978217"] {
  z-index: 18;
  top: 10px;
  left: calc(50% - 600px + 1842px);
  width: 30px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1747326978217"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
    top: 10px;
    left: 279px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1747225382228"] {
  z-index: 19;
  top: 5px;
  left: calc(50% - 600px + 79px);
  width: 40px;
  height: 40px;
}
#rec1065483946 .tn-elem[data-elem-id="1747225382228"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 480px + 9px);
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    top: 5px;
    left: 10px;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1748255447993"] {
  color: #000000;
  text-align: center;
  z-index: 20;
  top: 8px;
  left: calc(50% - 600px + 1386px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1065483946
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748255447993"] {
    opacity: 0;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1065483946 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1065483946 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1272px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1748255423628"] {
  color: #ffffff;
  text-align: center;
  z-index: 21;
  top: 8px;
  left: calc(50% - 600px + 1386px);
  width: 30px;
  height: 30px;
}
#rec1065483946 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065483946 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1302px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
#rec1065483946 .tn-elem[data-elem-id="1748422363740"] {
  color: #ffffff;
  z-index: 22;
  top: 9px;
  left: calc(50% - 600px + 129px);
  width: 101px;
  height: auto;
}
#rec1065483946 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065483946 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    left: calc(50% - 480px + 69px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065483946 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065483946 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1065483946 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    top: 14px;
    left: 64px;
    width: 66px;
    height: auto;
  }
  #rec1065483946 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-9d2e583a1bbc.css ---- */
#rec1124278386 .t396__artboard {
  height: 550px;
  background-color: #000000;
}
#rec1124278386 .t396__filter {
  height: 550px;
}
#rec1124278386 .t396__carrier {
  height: 550px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .t396__artboard,
  #rec1124278386 .t396__filter,
  #rec1124278386 .t396__carrier {
  }
  #rec1124278386 .t396__filter {
  }
  #rec1124278386 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .t396__artboard,
  #rec1124278386 .t396__filter,
  #rec1124278386 .t396__carrier {
    height: 760px;
  }
  #rec1124278386 .t396__filter {
  }
  #rec1124278386 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .t396__artboard,
  #rec1124278386 .t396__filter,
  #rec1124278386 .t396__carrier {
    height: 790px;
  }
  #rec1124278386 .t396__filter {
  }
  #rec1124278386 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .t396__artboard,
  #rec1124278386 .t396__filter,
  #rec1124278386 .t396__carrier {
    height: 810px;
  }
  #rec1124278386 .t396__filter {
  }
  #rec1124278386 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747232544453"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 630px;
  height: 550px;
}
#rec1124278386 .tn-elem[data-elem-id="1747232544453"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.3;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124278386
  .tn-elem[data-elem-id="1747232544453"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    left: calc(50% - 480px + -242px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + -46px);
    width: 733px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -2px);
    width: 312px;
    height: 406px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: -13px;
    width: 269px;
    height: 331px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1748015917462"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 602px;
  height: 550px;
}
#rec1124278386 .tn-elem.t396__elem--anim-hidden[data-elem-id="1748015917462"] {
  opacity: 0;
}
#rec1124278386 .tn-elem[data-elem-id="1748015917462"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -191px;
    left: calc(50% - 320px + -761px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -10px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1754575389578"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 80px);
  width: 275px;
  height: 275px;
}
#rec1124278386 .tn-elem[data-elem-id="1754575389578"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389578"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 7px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389578"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389578"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 61px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389578"] {
    display: table;
    top: 100px;
    left: 30px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1754575389583"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 90px);
  width: 275px;
  height: 275px;
}
#rec1124278386 .tn-elem[data-elem-id="1754575389583"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389583"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 17px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389583"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 186px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389583"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389583"] {
    display: table;
    top: 100px;
    left: 40px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1754575389587"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 92px);
  width: 275px;
  height: 275px;
}
#rec1124278386 .tn-elem[data-elem-id="1754575389587"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389587"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 19px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389587"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 188px);
    width: 275px;
    height: 275px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389587"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1754575389587"] {
    display: table;
    top: 99px;
    left: 45px;
    width: 184px;
    height: 184px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1748343246927"] {
  z-index: 3;
  top: -26px;
  left: calc(50% - 600px + 421px);
  width: 932px;
  height: 594px;
}
#rec1124278386 .tn-elem[data-elem-id="1748343246927"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: var(--site-bg);
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: -29px;
    left: calc(50% - 480px + 330px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + -71px);
    width: 786px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 405px;
    left: calc(50% - 240px + -143px);
    width: 786px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 329px;
    left: -209px;
    width: 786px;
    height: 437px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747839299921"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 56px;
  left: calc(50% - 600px + 957px);
  width: 247px;
  height: 300px;
}
#rec1124278386 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 140px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 119px;
    left: calc(50% - 480px + 727px);
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 377px;
    left: calc(50% - 320px + 400px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 406px;
    left: calc(50% - 240px + 330px);
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 80px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 508px;
    left: 144px;
    width: 177px;
    height: 200px;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 100px;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1750248542074"] {
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 877px);
  width: 400px;
  height: 400px;
}
#rec1124278386 .tn-elem[data-elem-id="1750248542074"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 95px;
    left: calc(50% - 480px + 630px);
    width: 394px;
    height: 394px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 361px;
    left: calc(50% - 320px + 353px);
    width: 334px;
    height: 334px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 414px;
    left: calc(50% - 240px + 225px);
    width: 315px;
    height: 315px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 481px;
    left: 89px;
    width: 282px;
    height: 282px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747728712611"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1124278386 .tn-elem[data-elem-id="1747728712611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 652px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1748337022311"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1124278386 .tn-elem[data-elem-id="1748337022311"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 662px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747234456600"] {
  z-index: 3;
  top: 457px;
  left: calc(50% - 600px + 421px);
  width: 928px;
  height: 50px;
}
#rec1124278386 .tn-elem[data-elem-id="1747234456600"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    left: calc(50% - 480px + 331px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 677px;
    left: calc(50% - 320px + -40px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 697px;
    left: calc(50% - 240px + -40px);
    width: 928px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 737px;
    left: -220px;
    width: 928px;
    height: 50px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747233003903"] {
  z-index: 3;
  top: 549px;
  left: calc(50% - 600px + -150px);
  width: 1500px;
  height: 1px;
}
#rec1124278386 .tn-elem[data-elem-id="1747233003903"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 548px;
    left: calc(50% - 480px + -240px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 759px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 779px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: -192px;
    left: -470px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747312395611"] {
  z-index: 3;
  top: 609px;
  left: calc(50% - 600px + -140px);
  width: 1500px;
  height: 1px;
}
#rec1124278386 .tn-elem[data-elem-id="1747312395611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    left: calc(50% - 480px + -230px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 1107px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 985px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 809px;
    left: -460px;
    width: 1500px;
    height: 1px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747312777885"] {
  z-index: 3;
  top: 619px;
  left: calc(50% - 600px + -130px);
  width: 1500px;
  height: 1px;
}
#rec1124278386 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    left: calc(50% - 480px + -220px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 977px;
    left: calc(50% - 320px + -260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 11px);
    width: 600px;
    height: 1px;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 169px;
    left: 97px;
    width: 320px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747234780565"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 243px;
  left: calc(50% - 600px + 479px);
  width: 353px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    left: calc(50% - 480px + 389px);
    width: 310px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 501px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 517px;
    left: calc(50% - 240px + 10px);
    width: 265px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 417px;
    left: 10px;
    width: 282px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747301333026"] {
  color: #000000;
  z-index: 3;
  top: 475px;
  left: calc(50% - 600px + 480px);
  width: 608px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    left: calc(50% - 480px + 390px);
    width: 526px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 695px;
    left: calc(50% - 320px + 9px);
    width: 621px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 705px;
    left: calc(50% - 240px + 10px);
    width: 347px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 749px;
    left: 10px;
    width: 242px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297376732"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 480px);
  width: 99px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 390px);
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 10px);
    width: 95px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 550px;
    left: 10px;
    width: 95px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297544627"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 649px);
  width: 193px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 508px);
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 128px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 118px);
    width: 193px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 613px;
    left: 10px;
    width: 193px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297749026"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 793px);
  width: 107px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 630px);
    width: 68px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 250px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 226px);
    width: 68px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 680px;
    left: 10px;
    width: 68px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297358565"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 522px);
  width: 100px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 300;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 420px);
    width: 105px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 40px);
    width: 105px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 519px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297533439"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 690px);
  width: 69px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 538px);
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 158px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 148px);
    width: 105px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 584px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297726676"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 835px);
  width: 42px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 660px);
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 280px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 256px);
    width: 42px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 652px;
    left: 47px;
    width: 42px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747234162072"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 145px;
  left: calc(50% - 600px + 476px);
  width: 218px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    left: calc(50% - 480px + 386px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 403px;
    left: calc(50% - 320px + 9px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 423px;
    left: calc(50% - 240px + 9px);
    width: 218px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 326px;
    left: 9px;
    width: 218px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747312642704"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1200px;
  left: calc(50% - 600px + 780px);
  width: 218px;
  height: auto;
}
#rec1124278386 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    left: calc(50% - 480px + 396px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 112px;
    left: calc(50% - 320px + 871px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 168px;
    left: calc(50% - 240px + 241px);
    width: 305px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 70px;
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 197px;
    left: 138px;
    height: auto;
  }
  #rec1124278386 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747296115209"] {
  z-index: 3;
  top: 224px;
  left: calc(50% - 600px + 480px);
  width: 270px;
  height: 1px;
}
#rec1124278386 .tn-elem[data-elem-id="1747296115209"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 482px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 502px;
    left: calc(50% - 240px + 10px);
    width: 270px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 400px;
    left: 10px;
    width: 218px;
    height: 1px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297312260"] {
  z-index: 3;
  top: 354px;
  left: calc(50% - 600px + 480px);
  width: 32px;
  height: 32px;
}
#rec1124278386 .tn-elem[data-elem-id="1747297312260"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 390px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 10px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 513px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297507029"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 648px);
  width: 32px;
  height: 32px;
}
#rec1124278386 .tn-elem[data-elem-id="1747297507029"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 508px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 128px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 118px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 582px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1747297709612"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 793px);
  width: 32px;
  height: 32px;
}
#rec1124278386 .tn-elem[data-elem-id="1747297709612"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 630px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 226px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 647px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124278386 .tn-elem[data-elem-id="1751631300223"] {
  z-index: 3;
  top: 165px;
  left: calc(50% - 600px + 712px);
  width: 38px;
  height: 38px;
}
#rec1124278386 .tn-elem[data-elem-id="1751631300223"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"] {
    display: table;
    top: 164px;
    left: calc(50% - 480px + 624px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"] {
    display: table;
    top: 423px;
    left: calc(50% - 320px + 242px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"] {
    display: table;
    top: 443px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124278386 .tn-elem[data-elem-id="1751631300223"] {
    display: table;
    top: 344px;
    left: 268px;
    width: 41px;
    height: 41px;
  }
}

/* ---- assets/inline/css/aboutus_index-cc3a3f38f973.css ---- */
#rec1065897206 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1065897206 .t396__filter {
  height: 80px;
}
#rec1065897206 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1065897206 .t396__artboard,
  #rec1065897206 .t396__filter,
  #rec1065897206 .t396__carrier {
  }
  #rec1065897206 .t396__filter {
  }
  #rec1065897206 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1065897206 .t396__artboard,
  #rec1065897206 .t396__filter,
  #rec1065897206 .t396__carrier {
  }
  #rec1065897206 .t396__filter {
  }
  #rec1065897206 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1065897206 .t396__artboard,
  #rec1065897206 .t396__filter,
  #rec1065897206 .t396__carrier {
  }
  #rec1065897206 .t396__filter {
  }
  #rec1065897206 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1065897206 .t396__artboard,
  #rec1065897206 .t396__filter,
  #rec1065897206 .t396__carrier {
  }
  #rec1065897206 .t396__filter {
  }
  #rec1065897206 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1065897206 .tn-elem[data-elem-id="1748507443928"] {
  z-index: 3;
  top: -9px;
  left: calc(50% - 600px + -735px);
  width: 2562px;
  height: 89px;
}
#rec1065897206 .tn-elem[data-elem-id="1748507443928"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
#rec1065897206 .tn-elem[data-elem-id="1748507221481"] {
  z-index: 4;
  top: 0px;
  left: calc(50% - 600px + -350px);
  width: 2556px;
  height: 89px;
}
#rec1065897206 .tn-elem[data-elem-id="1748507221481"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    left: calc(50% - 320px + -354px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065897206 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: -41px;
  }
}

/* ---- assets/inline/css/aboutus_index-f483e9fcf7b7.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-8777e0656ef3.css ---- */
#rec1113058611 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1113058611 .t396__filter {
  height: 80px;
}
#rec1113058611 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1113058611 .t396__artboard,
  #rec1113058611 .t396__filter,
  #rec1113058611 .t396__carrier {
  }
  #rec1113058611 .t396__filter {
  }
  #rec1113058611 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1113058611 .t396__artboard,
  #rec1113058611 .t396__filter,
  #rec1113058611 .t396__carrier {
    height: 160px;
  }
  #rec1113058611 .t396__filter {
  }
  #rec1113058611 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1113058611 .t396__artboard,
  #rec1113058611 .t396__filter,
  #rec1113058611 .t396__carrier {
    height: 120px;
  }
  #rec1113058611 .t396__filter {
  }
  #rec1113058611 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1113058611 .t396__artboard,
  #rec1113058611 .t396__filter,
  #rec1113058611 .t396__carrier {
    height: 100px;
  }
  #rec1113058611 .t396__filter {
  }
  #rec1113058611 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1113058611 .tn-elem[data-elem-id="1750164845792"] {
  z-index: 3;
  top: 19px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 60px;
}
#rec1113058611 .tn-elem[data-elem-id="1750164845792"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113058611 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113058611 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113058611 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113058611 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    top: 27px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1113058611 .tn-elem[data-elem-id="1750165865211"] {
  z-index: 4;
  top: 19px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 60px;
}
#rec1113058611 .tn-elem[data-elem-id="1750165865211"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113058611 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    left: calc(50% - 480px + 490px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113058611 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 87px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113058611 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 67px;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113058611 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 61px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1113058611 .tn-elem[data-elem-id="1750166143073"] {
  color: #4f4a4a;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 560px;
  height: auto;
}
#rec1113058611 .tn-elem[data-elem-id="1750166143073"] .tn-atom {
  vertical-align: middle;
  color: #4f4a4a;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113058611 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113058611 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113058611 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1113058611 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: 10px;
    height: auto;
  }
}

/* ---- assets/inline/css/aboutus_index-d38ac1b2db88.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-f00fc396259e.css ---- */
#rec1112976071 .t396__artboard {
  height: 276px;
  background-color: #000000;
}
#rec1112976071 .t396__filter {
  height: 276px;
}
#rec1112976071 .t396__carrier {
  height: 276px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .t396__artboard,
  #rec1112976071 .t396__filter,
  #rec1112976071 .t396__carrier {
    height: 259px;
  }
  #rec1112976071 .t396__filter {
  }
  #rec1112976071 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .t396__artboard,
  #rec1112976071 .t396__filter,
  #rec1112976071 .t396__carrier {
    height: 309px;
  }
  #rec1112976071 .t396__filter {
  }
  #rec1112976071 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .t396__artboard,
  #rec1112976071 .t396__filter,
  #rec1112976071 .t396__carrier {
    height: 215px;
  }
  #rec1112976071 .t396__filter {
  }
  #rec1112976071 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .t396__artboard,
  #rec1112976071 .t396__filter,
  #rec1112976071 .t396__carrier {
    height: 248px;
  }
  #rec1112976071 .t396__filter {
  }
  #rec1112976071 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747307336675"] {
  z-index: 3;
  top: 10px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 255px;
}
#rec1112976071 .tn-elem[data-elem-id="1747307336675"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 11px;
    left: calc(50% - 480px + 10px);
    height: 236px;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 287px;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 192px;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307336675"] {
    display: table;
    top: 5px;
    left: 10px;
    width: 300px;
    height: 234px;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747900790020"] {
  z-index: 5;
  top: 189px;
  left: calc(50% - 600px + 120px);
  width: 126px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1112976071
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747900790020"] {
    opacity: 0;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747900790020"] .tn-atom {
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 188px;
    left: calc(50% - 480px + 50px);
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 235px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 143px;
    left: calc(50% - 240px + 30px);
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1747900790020"] {
    display: table;
    top: 179px;
    left: 30px;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747315347030"] {
  color: #000000;
  text-align: center;
  z-index: 6;
  top: 189px;
  left: calc(50% - 600px + 120px);
  width: 126px;
  height: 40px;
}
#rec1112976071 .tn-elem[data-elem-id="1747315347030"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1112976071 .tn-elem[data-elem-id="1747315347030"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1112976071 .tn-elem[data-elem-id="1747315347030"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1112976071 .tn-elem[data-elem-id="1747315347030"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 188px;
    left: calc(50% - 480px + 50px);
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 235px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 143px;
    left: calc(50% - 240px + 30px);
    width: 126px;
    height: 40px;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1747315347030"] {
    display: block;
    top: 179px;
    left: 30px;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747307524953"] {
  z-index: 7;
  top: 40px;
  left: calc(50% - 600px + 114px);
  width: 45px;
  height: 45px;
}
#rec1112976071 .tn-elem[data-elem-id="1747307524953"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 39px;
    left: calc(50% - 480px + 44px);
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 40px;
    left: calc(50% - 320px + 25px);
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 20px;
    left: calc(50% - 240px + 25px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307524953"] {
    display: table;
    top: 18px;
    left: 25px;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747307589558"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 8;
  top: 45px;
  left: calc(50% - 600px + 174px);
  width: 218px;
  height: auto;
}
#rec1112976071 .tn-elem[data-elem-id="1747307589558"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 44px;
    left: calc(50% - 480px + 104px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 45px;
    left: calc(50% - 320px + 85px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 25px;
    left: calc(50% - 240px + 71px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"] {
    display: table;
    top: 29px;
    left: 80px;
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1747307589558"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1747307675864"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 9;
  top: 93px;
  left: calc(50% - 600px + 120px);
  width: 423px;
  height: auto;
}
#rec1112976071 .tn-elem[data-elem-id="1747307675864"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 92px;
    left: calc(50% - 480px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 93px;
    left: calc(50% - 320px + 30px);
    width: 282px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 73px;
    left: calc(50% - 240px + 30px);
    width: 412px;
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1747307675864"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1747307675864"] {
    display: table;
    top: 69px;
    left: 30px;
    width: 269px;
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1747307675864"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1748612042955"] {
  color: #ffffff;
  z-index: 10;
  top: -6px;
  left: calc(50% - 600px + 74px);
  width: 12px;
  height: auto;
}
#rec1112976071 .tn-elem[data-elem-id="1748612042955"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: 5px;
    left: calc(50% - 480px + 4px);
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1748612042955"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: 4px;
    left: calc(50% - 320px + 4px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: 5px;
    left: calc(50% - 240px + 5px);
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1748612042955"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612042955"] {
    display: table;
    top: 0px;
    left: 4px;
    height: auto;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1748612049828"] {
  color: #ffffff;
  z-index: 13;
  top: 248px;
  left: calc(50% - 600px + 573px);
  width: 12px;
  height: auto;
}
#rec1112976071 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 240px;
    left: calc(50% - 480px + 503px);
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 290px;
    left: calc(50% - 320px + 303px);
    width: auto;
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 196px;
    left: calc(50% - 240px + 463px);
    width: 12px;
    height: auto;
  }
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 0.6;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1748612049828"] {
    display: table;
    top: 233px;
    left: 303px;
    height: auto;
  }
}
#rec1112976071 .tn-elem[data-elem-id="1748517615588"] {
  z-index: 14;
  top: 10px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 255px;
}
#rec1112976071 .tn-elem[data-elem-id="1748517615588"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112976071 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 11px;
    left: calc(50% - 480px + 540px);
    width: 410px;
    height: 236px;
  }
}
@media screen and (max-width: 959px) {
  #rec1112976071 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 329px);
    width: 300px;
    height: 287px;
  }
}
@media screen and (max-width: 639px) {
  #rec1112976071 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 18px;
    left: calc(50% - 240px + 674px);
    width: 460px;
    height: 249px;
  }
}
@media screen and (max-width: 479px) {
  #rec1112976071 .tn-elem[data-elem-id="1748517615588"] {
    display: table;
    top: 18px;
    left: 674px;
    width: 300px;
    height: 262px;
  }
}

/* ---- assets/inline/css/aboutus_index-659f0107daa4.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-78a16621c2b4.css ---- */
#rec1069091231 .t396__artboard {
  height: 255px;
  background-color: #000000;
}
#rec1069091231 .t396__filter {
  height: 255px;
}
#rec1069091231 .t396__carrier {
  height: 255px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .t396__artboard,
  #rec1069091231 .t396__filter,
  #rec1069091231 .t396__carrier {
    height: 244px;
  }
  #rec1069091231 .t396__filter {
  }
  #rec1069091231 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .t396__artboard,
  #rec1069091231 .t396__filter,
  #rec1069091231 .t396__carrier {
    height: 247px;
  }
  #rec1069091231 .t396__filter {
  }
  #rec1069091231 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .t396__artboard,
  #rec1069091231 .t396__filter,
  #rec1069091231 .t396__carrier {
    height: 527px;
  }
  #rec1069091231 .t396__filter {
  }
  #rec1069091231 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .t396__artboard,
  #rec1069091231 .t396__filter,
  #rec1069091231 .t396__carrier {
    height: 410px;
  }
  #rec1069091231 .t396__filter {
  }
  #rec1069091231 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1736434729837"] {
  z-index: 3;
  top: 7px;
  left: calc(50% - 600px + 80px);
  width: 600px;
  height: 240px;
}
#rec1069091231 .tn-elem[data-elem-id="1736434729837"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729837"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 10px);
    width: 594px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729837"] {
    display: table;
    top: 22px;
    left: calc(50% - 320px + 20px);
    width: 380px;
    height: 220px;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729837"] {
    display: table;
    top: 15px;
    left: calc(50% - 240px + 15px);
    width: 450px;
    height: 260px;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729837"] {
    display: table;
    top: 10px;
    left: 10px;
    width: 300px;
    height: 210px;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1736773804576"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 4;
  top: 89px;
  left: calc(50% - 600px + 120px);
  width: 501px;
  height: auto;
}
#rec1069091231 .tn-elem[data-elem-id="1736773804576"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 40px);
    width: 531px;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] {
    display: table;
    top: 70px;
    left: calc(50% - 320px + 51px);
    width: 340px;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] .tn-atom {
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] {
    display: table;
    top: 115px;
    left: calc(50% - 240px + 45px);
    width: 400px;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] .tn-atom {
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] {
    display: table;
    top: 70px;
    left: 30px;
    width: 262px;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736773804576"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1736434729863"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 5;
  top: 44px;
  left: calc(50% - 600px + 120px);
  width: 445px;
  height: auto;
}
#rec1069091231 .tn-elem[data-elem-id="1736434729863"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] {
    display: table;
    top: 41px;
    left: calc(50% - 480px + 40px);
    width: auto;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] {
    display: table;
    top: 35px;
    left: calc(50% - 320px + 51px);
    width: auto;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] {
    text-align: left;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] {
    display: table;
    top: 65px;
    left: calc(50% - 240px + 45px);
    width: 247px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] {
    display: table;
    top: 30px;
    left: 30px;
    width: auto;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736434729863"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1736776781205"] {
  z-index: 6;
  top: 15px;
  left: calc(50% - 600px + 719px);
  width: 400px;
  height: 230px;
}
#rec1069091231 .tn-elem[data-elem-id="1736776781205"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] {
    display: table;
    top: 2px;
    left: calc(50% - 480px + 650px);
    width: 302px;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] .tn-atom {
    background-size: cover;
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] {
    display: table;
    top: 23px;
    left: calc(50% - 320px + 408px);
    width: 227px;
    height: 199px;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] .tn-atom {
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] {
    display: table;
    top: 352px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 158px;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] .tn-atom {
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] {
    display: table;
    top: 177px;
    left: -584px;
    width: 260px;
    height: 226px;
  }
  #rec1069091231 .tn-elem[data-elem-id="1736776781205"] .tn-atom {
    background-size: cover;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1749479322824"] {
  display: block;
  z-index: 7;
  top: 18px;
  left: calc(50% - 600px + 720px);
  width: 400px;
  height: 225px;
}
#rec1069091231 .tn-elem[data-elem-id="1749479322824"] .tn-atom {
  display: block;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1069091231 .tn-elem[data-elem-id="1749479322824"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-fit: contain;
  height: 100%;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1749479322824"] {
    display: block;
    top: 2px;
    left: calc(50% - 480px + 650px);
    width: 302px;
    height: 225px;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1749479322824"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 415px);
    width: 225px;
    height: 217px;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1749479322824"] {
    display: block;
    top: 294px;
    left: calc(50% - 240px + 45px);
    width: 390px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1749479322824"] {
    display: block;
    top: 240px;
    left: 10px;
    width: 300px;
    height: 170px;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1749125565426"] {
  z-index: 8;
  top: 0px;
  left: calc(50% - 600px + -660px);
  width: 560px;
  height: 429px;
}
#rec1069091231 .tn-elem[data-elem-id="1749125565426"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565426"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565426"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565426"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565426"] {
    display: table;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1749125565429"] {
  z-index: 9;
  top: 7px;
  left: calc(50% - 600px + 720px);
  width: 400px;
  height: 240px;
}
#rec1069091231 .tn-elem[data-elem-id="1749125565429"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565429"] {
    display: table;
    top: 27px;
    left: calc(50% - 480px + 650px);
    width: 302px;
    height: 190px;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565429"] {
    display: table;
    top: 34px;
    left: calc(50% - 320px + 410px);
    width: 220px;
    height: 180px;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565429"] {
    display: table;
    top: 294px;
    left: calc(50% - 240px + 45px);
    width: 390px;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125565429"] {
    display: table;
    top: 233px;
    left: -400px;
    width: 300px;
    height: 170px;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1749125932652"] {
  z-index: 10;
  top: 252px;
  left: calc(50% - 600px + -100px);
  width: 1400px;
  height: 100px;
}
#rec1069091231 .tn-elem[data-elem-id="1749125932652"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125932652"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125932652"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125932652"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1749125932652"] {
    display: table;
    top: 515px;
    left: -797px;
    width: 289px;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1748609933210"] {
  color: #ffffff;
  z-index: 11;
  top: -9px;
  left: calc(50% - 600px + 74px);
  width: 12px;
  height: auto;
}
#rec1069091231 .tn-elem[data-elem-id="1748609933210"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609933210"] {
    display: table;
    top: 3px;
    left: calc(50% - 480px + 5px);
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1748609933210"] .tn-atom {
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609933210"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 14px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609933210"] {
    display: table;
    top: 6px;
    left: calc(50% - 240px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609933210"] {
    display: table;
    top: 1px;
    left: 4px;
    height: auto;
  }
}
#rec1069091231 .tn-elem[data-elem-id="1748609945581"] {
  color: #ffffff;
  z-index: 12;
  top: 231px;
  left: calc(50% - 600px + 673px);
  width: 13px;
  height: auto;
}
#rec1069091231 .tn-elem[data-elem-id="1748609945581"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609945581"] {
    display: table;
    top: 220px;
    left: calc(50% - 480px + 597px);
    width: 12px;
    height: auto;
  }
  #rec1069091231 .tn-elem[data-elem-id="1748609945581"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609945581"] {
    display: table;
    top: 231px;
    left: calc(50% - 320px + 393px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609945581"] {
    display: table;
    top: 264px;
    left: calc(50% - 240px + 458px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1069091231 .tn-elem[data-elem-id="1748609945581"] {
    display: table;
    top: 209px;
    left: 304px;
    height: auto;
  }
}

/* ---- assets/inline/css/aboutus_index-12b4df532c74.css ---- */
.img-glitch {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.img-glitch img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.2s;
}
.img-glitch::before,
.img-glitch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.img-glitch:hover img {
  filter: contrast(1.2) brightness(1.1);
  animation: glitch-zoom 0.2s steps(2, end);
}
.img-glitch:hover::before {
  background-image: var(--glitch-img);
  mix-blend-mode: screen;
  opacity: 1;
  animation: glitch-rgb-1 0.3s steps(3, end);
}
.img-glitch:hover::after {
  background-image: var(--glitch-img);
  mix-blend-mode: lighten;
  opacity: 1;
  animation: glitch-rgb-2 0.3s steps(3, end);
}
@keyframes glitch-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03) rotate(0.5deg);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes glitch-rgb-1 {
  0% {
    transform: translate(0, 0);
    clip-path: inset(0 0 65% 0);
    filter: drop-shadow(-3px 0 red);
  }
  50% {
    transform: translate(-8px, -2px);
    clip-path: inset(0 0 65% 0);
    filter: drop-shadow(-4px 0 red);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes glitch-rgb-2 {
  0% {
    transform: translate(0, 0);
    clip-path: inset(65% 0 0 0);
    filter: drop-shadow(3px 0 blue);
  }
  50% {
    transform: translate(6px, 3px);
    clip-path: inset(65% 0 0 0);
    filter: drop-shadow(5px 0 blue);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ---- assets/inline/css/aboutus_index-fe603fd15f1e.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-35413e4d01c1.css ---- */
#rec1190588381 .t396__artboard {
  height: 493px;
  background-color: #000000;
}
#rec1190588381 .t396__filter {
  height: 493px;
}
#rec1190588381 .t396__carrier {
  height: 493px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .t396__artboard,
  #rec1190588381 .t396__filter,
  #rec1190588381 .t396__carrier {
    height: 427px;
  }
  #rec1190588381 .t396__filter {
  }
  #rec1190588381 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .t396__artboard,
  #rec1190588381 .t396__filter,
  #rec1190588381 .t396__carrier {
    height: 630px;
  }
  #rec1190588381 .t396__filter {
  }
  #rec1190588381 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .t396__artboard,
  #rec1190588381 .t396__filter,
  #rec1190588381 .t396__carrier {
    height: 428px;
  }
  #rec1190588381 .t396__filter {
  }
  #rec1190588381 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .t396__artboard,
  #rec1190588381 .t396__filter,
  #rec1190588381 .t396__carrier {
    height: 646px;
  }
  #rec1190588381 .t396__filter {
  }
  #rec1190588381 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 553px;
  height: auto;
}
#rec1190588381 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 553px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 10px);
    width: 402px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 289px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] {
    text-align: left;
  }
  #rec1190588381 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471251594"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 292px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 200px;
}
#rec1190588381 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190588381 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 247px;
    left: calc(50% - 480px + 490px);
    width: 460px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 453px;
    left: calc(50% - 320px + 10px);
    width: 380px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 318px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] {
    display: block;
    top: 269px;
    left: 10px;
    width: 300px;
    height: 122px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251594"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471251630"] {
  color: #000000;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 660px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471251630"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 530px);
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 493px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 338px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] {
    display: table;
    top: 289px;
    left: 30px;
    width: 205px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251630"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471251679"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 660px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471251679"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 530px);
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 493px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 338px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] {
    display: table;
    top: 289px;
    left: 30px;
    width: 205px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471251679"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682728874"] {
  color: #000000;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 660px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
#rec1190588381 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 535px);
    width: 302px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 544px;
    left: calc(50% - 320px + 55px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 371px;
    left: calc(50% - 240px + 30px);
    width: 178px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] {
    display: table;
    top: 326px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682728874"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683748511"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 660px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753683748511"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 535px);
    width: 302px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 544px;
    left: calc(50% - 320px + 55px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 371px;
    left: calc(50% - 240px + 30px);
    width: 178px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] {
    display: table;
    top: 326px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683748511"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471178299"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 292px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 200px;
}
#rec1190588381 .tn-elem[data-elem-id="1751471178299"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190588381 .tn-elem[data-elem-id="1751471178299"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178299"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 247px;
    left: calc(50% - 480px + 10px);
    width: 460px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 257px;
    left: calc(50% - 320px + 10px);
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 189px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178299"] {
    display: block;
    top: 152px;
    left: 10px;
    width: 300px;
    height: 107px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471178299"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471178334"] {
  color: #000000;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471178334"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471178334"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 50px);
    width: 148px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 209px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471178334"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178334"] {
    display: table;
    top: 172px;
    left: 30px;
    width: 202px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471178334"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471178376"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 332px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471178376"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471178376"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 287px;
    left: calc(50% - 480px + 50px);
    width: 148px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 209px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471178376"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471178376"] {
    display: table;
    top: 172px;
    left: 30px;
    width: 202px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471178376"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683709848"] {
  color: #000000;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
#rec1190588381 .tn-elem[data-elem-id="1753683709848"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 50px);
    width: 231px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 242px;
    left: calc(50% - 240px + 30px);
    width: 186px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683709848"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683709848"] {
    display: table;
    top: 209px;
    left: 30px;
    width: 142px;
    height: 30px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683709848"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682380625"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 407px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682380625"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682380625"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 338px;
    left: calc(50% - 480px + 50px);
    width: 231px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 242px;
    left: calc(50% - 240px + 30px);
    width: 186px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682380625"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682380625"] {
    display: table;
    top: 209px;
    left: 30px;
    width: 142px;
    height: 30px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682380625"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471010517"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 800px);
  width: 320px;
  height: 200px;
}
#rec1190588381 .tn-elem[data-elem-id="1751471010517"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190588381 .tn-elem[data-elem-id="1751471010517"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010517"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 51px;
    left: calc(50% - 480px + 650px);
    width: 300px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 257px;
    left: calc(50% - 320px + 330px);
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 190px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010517"] {
    display: block;
    top: 528px;
    left: 10px;
    width: 300px;
    height: 117px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471010517"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471010553"] {
  color: #000000;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 840px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471010553"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471010553"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 690px);
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 370px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 210px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471010553"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010553"] {
    display: table;
    top: 548px;
    left: 30px;
    width: 191px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471010553"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471010583"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 840px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751471010583"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751471010583"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 690px);
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 297px;
    left: calc(50% - 320px + 370px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 210px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471010583"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751471010583"] {
    display: table;
    top: 548px;
    left: 30px;
    width: 191px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751471010583"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683665772"] {
  color: #000000;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 840px);
  width: 266px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753683665772"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683665772"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 690px);
    width: 246px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 370px);
    width: 270px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 243px;
    left: calc(50% - 240px + 270px);
    width: 189px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683665772"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683665772"] {
    display: table;
    top: 585px;
    left: 30px;
    width: 147px;
    height: 40px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683665772"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682559755"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 840px);
  width: 266px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682559755"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682559755"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 690px);
    width: 241px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 370px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 243px;
    left: calc(50% - 240px + 270px);
    width: 189px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682559755"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682559755"] {
    display: table;
    top: 585px;
    left: 30px;
    width: 147px;
    height: 40px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682559755"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470912220"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 440px);
  width: 320px;
  height: 200px;
}
#rec1190588381 .tn-elem[data-elem-id="1751470912220"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190588381 .tn-elem[data-elem-id="1751470912220"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912220"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 51px;
    left: calc(50% - 480px + 330px);
    width: 300px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 61px;
    left: calc(50% - 320px + 330px);
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 61px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912220"] {
    display: block;
    top: 401px;
    left: 10px;
    width: 300px;
    height: 117px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470912220"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470912252"] {
  color: #000000;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 480px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470912252"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470912252"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 364px);
    width: 158px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470912252"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912252"] {
    display: table;
    top: 421px;
    left: 30px;
    width: 216px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470912252"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470912287"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 480px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470912287"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470912287"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 364px);
    width: 158px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 270px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470912287"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470912287"] {
    display: table;
    top: 421px;
    left: 30px;
    width: 216px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470912287"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683404420"] {
  color: #000000;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 480px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753683404420"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683404420"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 364px);
    width: 249px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 270px);
    width: 191px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683404420"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683404420"] {
    display: table;
    top: 458px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683404420"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682339259"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 480px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682339259"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682339259"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 364px);
    width: 249px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 364px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 270px);
    width: 191px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682339259"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682339259"] {
    display: table;
    top: 458px;
    left: 30px;
    width: 141px;
    height: 40px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682339259"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470067651"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 80px);
  width: 320px;
  height: 200px;
}
#rec1190588381 .tn-elem[data-elem-id="1751470067651"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1190588381 .tn-elem[data-elem-id="1751470067651"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1190588381 .tn-elem[data-elem-id="1751470067651"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 51px;
    left: calc(50% - 480px + 10px);
    width: 300px;
    height: 176px;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 61px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 61px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 109px;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470067651"] {
    display: block;
    top: 35px;
    left: 10px;
    width: 300px;
    height: 107px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470067651"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753683030072"] {
  color: #000000;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
#rec1190588381 .tn-elem[data-elem-id="1753683030072"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 50px);
    width: 236px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 30px);
    width: 172px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683030072"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753683030072"] {
    display: table;
    top: 92px;
    left: 30px;
    width: 141px;
    height: 30px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753683030072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682816755"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 167px;
  left: calc(50% - 600px + 120px);
  width: 253px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753682816755"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753682816755"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 142px;
    left: calc(50% - 480px + 50px);
    width: 236px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 152px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 114px;
    left: calc(50% - 240px + 30px);
    width: 165px;
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682816755"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753682816755"] {
    display: table;
    top: 92px;
    left: 30px;
    width: 141px;
    height: 30px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753682816755"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470301852"] {
  color: #000000;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470301852"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470301852"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 50px);
    width: 145px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470301852"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470301852"] {
    display: table;
    top: 55px;
    left: 30px;
    width: 198px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470301852"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470317581"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 92px;
  left: calc(50% - 600px + 120px);
  width: 155px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1190588381
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751470317581"] {
    opacity: 0;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1751470317581"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 91px;
    left: calc(50% - 480px + 50px);
    width: 145px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 81px;
    left: calc(50% - 240px + 30px);
    height: auto;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470317581"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1751470317581"] {
    display: table;
    top: 55px;
    left: 30px;
    width: 198px;
    height: 27px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1751470317581"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753773344448"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1616px);
  width: 100px;
  height: 100px;
}
#rec1190588381 .tn-elem[data-elem-id="1753773344448"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773344448"] {
    display: table;
    top: 38px;
    left: 209px;
  }
  #rec1190588381 .tn-elem[data-elem-id="1753773344448"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753773713425"] {
  z-index: 3;
  top: 71px;
  left: calc(50% - 600px + -1653px);
  width: 100px;
  height: 100px;
}
#rec1190588381 .tn-elem[data-elem-id="1753773713425"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753773713425"] {
    display: table;
    top: 156px;
    left: 209px;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753779601894"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1467px);
  width: 100px;
  height: 100px;
}
#rec1190588381 .tn-elem[data-elem-id="1753779601894"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779601894"] {
    display: table;
    top: 281px;
    left: 209px;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753779770967"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1329px);
  width: 100px;
  height: 100px;
}
#rec1190588381 .tn-elem[data-elem-id="1753779770967"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779770967"] {
    display: table;
    top: 410px;
    left: 209px;
  }
}
#rec1190588381 .tn-elem[data-elem-id="1753779889566"] {
  z-index: 3;
  top: -166px;
  left: calc(50% - 600px + -1197px);
  width: 100px;
  height: 100px;
}
#rec1190588381 .tn-elem[data-elem-id="1753779889566"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1190588381 .tn-elem[data-elem-id="1753779889566"] {
    display: table;
    top: 533px;
    left: 209px;
  }
}

/* ---- assets/inline/css/aboutus_index-cc616328ad8c.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-33545bc8db21.css ---- */
#rec1123799406 .t396__artboard {
  height: 429px;
  background-color: #000000;
}
#rec1123799406 .t396__filter {
  height: 429px;
}
#rec1123799406 .t396__carrier {
  height: 429px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .t396__artboard,
  #rec1123799406 .t396__filter,
  #rec1123799406 .t396__carrier {
    height: 424px;
  }
  #rec1123799406 .t396__filter {
  }
  #rec1123799406 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .t396__artboard,
  #rec1123799406 .t396__filter,
  #rec1123799406 .t396__carrier {
    height: 930px;
  }
  #rec1123799406 .t396__filter {
  }
  #rec1123799406 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .t396__artboard,
  #rec1123799406 .t396__filter,
  #rec1123799406 .t396__carrier {
    height: 720px;
  }
  #rec1123799406 .t396__filter {
  }
  #rec1123799406 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .t396__artboard,
  #rec1123799406 .t396__filter,
  #rec1123799406 .t396__carrier {
    height: 1692px;
  }
  #rec1123799406 .t396__filter {
  }
  #rec1123799406 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748606935382"] {
  z-index: 3;
  top: 58px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1123799406 .tn-elem[data-elem-id="1748606935382"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748606935382"] {
    display: table;
    top: 50px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748606935382"] {
    display: table;
    top: 61px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748606935382"] {
    display: table;
    top: 47px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748606935382"] {
    display: table;
    top: 44px;
    width: 300px;
    height: 403px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748609378819"] {
  z-index: 5;
  top: 78px;
  left: calc(50% - 600px + 100px);
  width: 200px;
  height: 200px;
}
#rec1123799406 .tn-elem[data-elem-id="1748609378819"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609378819"] {
    display: table;
    top: 67px;
    left: calc(50% - 480px + 27px);
    width: 186px;
    height: 186px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609378819"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 25px);
    width: 270px;
    height: 270px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609378819"] {
    display: table;
    top: 62px;
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609378819"] {
    display: table;
    top: 64px;
    left: 30px;
    width: 260px;
    height: 260px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517142601"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 6;
  top: 328px;
  left: calc(50% - 600px + 80px);
  width: 245px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517142601"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] {
    display: table;
    top: 286px;
    left: calc(50% - 480px + 10px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] {
    display: table;
    top: 371px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] {
    display: table;
    top: 272px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.55;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] {
    display: table;
    top: 334px;
    left: 30px;
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517142601"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 7;
  top: 363px;
  left: calc(50% - 600px + 80px);
  width: 241px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517236820"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    display: table;
    top: 314px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    text-align: left;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    display: table;
    top: 404px;
    left: calc(50% - 320px + 10px);
    width: 270px;
    height: 80px;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    text-align: left;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    letter-spacing: 1.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    display: table;
    top: 300px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    text-align: left;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    display: table;
    top: 367px;
    left: 30px;
    width: 268px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] {
    text-align: left;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517236820"] .tn-atom {
    font-size: 10px;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748607022841"] {
  z-index: 8;
  top: 58px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1123799406 .tn-elem[data-elem-id="1748607022841"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607022841"] {
    display: table;
    top: 50px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607022841"] {
    display: table;
    top: 61px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607022841"] {
    display: table;
    top: 47px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607022841"] {
    display: table;
    top: 467px;
    left: 10px;
    width: 300px;
    height: 403px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748609525066"] {
  z-index: 10;
  top: 78px;
  left: calc(50% - 600px + 366px);
  width: 200px;
  height: 200px;
}
#rec1123799406 .tn-elem[data-elem-id="1748609525066"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609525066"] {
    display: table;
    top: 67px;
    left: calc(50% - 480px + 267px);
    width: 186px;
    height: 186px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609525066"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 345px);
    width: 270px;
    height: 270px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609525066"] {
    display: table;
    top: 62px;
    left: calc(50% - 240px + 265px);
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609525066"] {
    display: table;
    top: 487px;
    left: 30px;
    width: 260px;
    height: 260px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517174353"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 11;
  top: 328px;
  left: calc(50% - 600px + 347px);
  width: 236px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517174353"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] {
    display: table;
    top: 285px;
    left: calc(50% - 480px + 251px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] {
    display: table;
    top: 371px;
    left: calc(50% - 320px + 329px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] {
    display: table;
    top: 272px;
    left: calc(50% - 240px + 250px);
    width: 106px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 1.55;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517174353"] {
    display: table;
    top: 757px;
    left: 30px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517280374"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 12;
  top: 363px;
  left: calc(50% - 600px + 347px);
  width: 241px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517280374"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] {
    display: table;
    top: 313px;
    left: calc(50% - 480px + 251px);
    width: 220px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] {
    display: table;
    top: 404px;
    left: calc(50% - 320px + 330px);
    width: 270px;
    height: 80px;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    letter-spacing: 1.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] {
    display: table;
    top: 300px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] .tn-atom {
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] {
    display: table;
    top: 790px;
    left: 30px;
    width: 278px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517280374"] .tn-atom {
    line-height: 1;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748607056896"] {
  z-index: 13;
  top: 58px;
  left: calc(50% - 600px + 614px);
  width: 240px;
  height: 240px;
}
#rec1123799406 .tn-elem[data-elem-id="1748607056896"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607056896"] {
    display: table;
    top: 50px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607056896"] {
    display: table;
    top: 503px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607056896"] {
    display: table;
    top: 390px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607056896"] {
    display: table;
    top: 890px;
    width: 300px;
    height: 383px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748609550343"] {
  z-index: 15;
  top: 78px;
  left: calc(50% - 600px + 634px);
  width: 200px;
  height: 200px;
}
#rec1123799406 .tn-elem[data-elem-id="1748609550343"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609550343"] {
    display: table;
    top: 67px;
    left: calc(50% - 480px + 507px);
    width: 186px;
    height: 186px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609550343"] {
    display: table;
    top: 518px;
    left: calc(50% - 320px + 25px);
    width: 270px;
    height: 270px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609550343"] {
    display: table;
    top: 405px;
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609550343"] {
    display: table;
    top: 910px;
    left: 30px;
    width: 260px;
    height: 260px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517180282"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 16;
  top: 328px;
  left: calc(50% - 600px + 614px);
  width: 236px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517180282"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] {
    display: table;
    top: 286px;
    left: calc(50% - 480px + 490px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] {
    display: table;
    top: 813px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 10px);
    width: 79px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] .tn-atom {
    font-size: 15px;
    line-height: 1.55;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] {
    display: table;
    top: 1180px;
    left: 30px;
    width: 80px;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517180282"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517293623"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 17;
  top: 363px;
  left: calc(50% - 600px + 614px);
  width: 225px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517293623"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] {
    display: table;
    top: 314px;
    left: calc(50% - 480px + 490px);
    width: 225px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] {
    display: table;
    top: 846px;
    left: calc(50% - 320px + 10px);
    width: 225px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    letter-spacing: 1.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] {
    display: table;
    top: 643px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] .tn-atom {
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] {
    display: table;
    top: 1213px;
    left: 30px;
    width: 274px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517293623"] .tn-atom {
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748607057401"] {
  z-index: 18;
  top: 58px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1123799406 .tn-elem[data-elem-id="1748607057401"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607057401"] {
    display: table;
    top: 50px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607057401"] {
    display: table;
    top: 503px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607057401"] {
    display: table;
    top: 390px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748607057401"] {
    display: table;
    top: 1293px;
    left: 10px;
    width: 300px;
    height: 393px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748609570702"] {
  z-index: 20;
  top: 78px;
  left: calc(50% - 600px + 901px);
  width: 200px;
  height: 200px;
}
#rec1123799406 .tn-elem[data-elem-id="1748609570702"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609570702"] {
    display: table;
    top: 67px;
    left: calc(50% - 480px + 747px);
    width: 186px;
    height: 186px;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609570702"] {
    display: table;
    top: 518px;
    left: calc(50% - 320px + 345px);
    width: 270px;
    height: 270px;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609570702"] {
    display: table;
    top: 405px;
    left: calc(50% - 240px + 265px);
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609570702"] {
    display: table;
    top: 1313px;
    left: 30px;
    width: 260px;
    height: 260px;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517181479"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 21;
  top: 328px;
  left: calc(50% - 600px + 881px);
  width: 236px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517181479"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] {
    display: table;
    top: 286px;
    left: calc(50% - 480px + 730px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] {
    display: table;
    top: 813px;
    left: calc(50% - 320px + 329px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 250px);
    width: 78px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] .tn-atom {
    font-size: 15px;
    line-height: 1.55;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517181479"] {
    display: table;
    top: 1583px;
    left: 30px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748517305091"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 22;
  top: 363px;
  left: calc(50% - 600px + 881px);
  width: 241px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748517305091"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] {
    display: table;
    top: 314px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] {
    display: table;
    top: 846px;
    left: calc(50% - 320px + 330px);
    width: 225px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    letter-spacing: 1px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] {
    display: table;
    top: 643px;
    left: calc(50% - 240px + 250px);
    width: 219px;
    height: 80px;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] {
    display: table;
    top: 1616px;
    left: 30px;
    width: 278px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748517305091"] .tn-atom {
    line-height: 0.9;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603236186"] {
  color: #ffffff;
  z-index: 23;
  top: 42px;
  left: calc(50% - 600px + 74px);
  width: 12px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603236186"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603236186"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 4px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603236186"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603236186"] {
    display: table;
    top: 52px;
    left: calc(50% - 320px + 4px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603236186"] {
    display: table;
    top: 42px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603236186"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603236186"] {
    display: table;
    top: 39px;
    left: 4px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603268699"] {
  color: #ffffff;
  z-index: 24;
  top: 281px;
  left: calc(50% - 600px + 313px);
  width: auto;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603268699"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] {
    display: table;
    top: 260px;
    left: calc(50% - 480px + 223px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] {
    display: table;
    top: 351px;
    left: calc(50% - 320px + 303px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] {
    display: table;
    top: 260px;
    left: calc(50% - 240px + 223px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603268699"] {
    display: table;
    top: 441px;
    left: 303px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603332446"] {
  color: #ffffff;
  z-index: 25;
  top: 281px;
  left: calc(50% - 600px + 580px);
  width: auto;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603332446"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 463px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] {
    display: table;
    top: 52px;
    left: calc(50% - 320px + 324px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] {
    display: table;
    top: 42px;
    left: calc(50% - 240px + 245px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603332446"] {
    display: table;
    top: 462px;
    left: 4px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603341531"] {
  color: #ffffff;
  z-index: 26;
  top: 281px;
  left: calc(50% - 600px + 847px);
  width: auto;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603341531"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 703px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] {
    display: table;
    top: 351px;
    left: calc(50% - 320px + 623px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] {
    display: table;
    top: 260px;
    left: calc(50% - 240px + 463px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603341531"] {
    display: table;
    top: 863px;
    left: 303px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603349457"] {
  color: #ffffff;
  z-index: 27;
  top: 281px;
  left: calc(50% - 600px + 1114px);
  width: auto;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603349457"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 943px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] {
    display: table;
    top: 792px;
    left: calc(50% - 320px + 303px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] {
    display: table;
    top: 385px;
    left: calc(50% - 240px + 4px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603349457"] {
    display: table;
    top: 885px;
    left: 4px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603281556"] {
  color: #ffffff;
  z-index: 28;
  top: 42px;
  left: calc(50% - 600px + 341px);
  width: 25px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603281556"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603281556"] {
    display: table;
    top: 41px;
    left: calc(50% - 480px + 244px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603281556"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603281556"] {
    display: table;
    top: 494px;
    left: calc(50% - 320px + 4px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603281556"] {
    display: table;
    top: 604px;
    left: calc(50% - 240px + 223px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603281556"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603281556"] {
    display: table;
    top: 1267px;
    left: 303px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603290835"] {
  color: #ffffff;
  z-index: 29;
  top: 42px;
  left: calc(50% - 600px + 608px);
  width: 25px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603290835"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 484px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] {
    display: table;
    top: 494px;
    left: calc(50% - 320px + 324px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] {
    display: table;
    top: 385px;
    left: calc(50% - 240px + 244px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603290835"] {
    display: table;
    top: 1288px;
    left: 4px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748603311480"] {
  color: #ffffff;
  z-index: 30;
  top: 42px;
  left: calc(50% - 600px + 874px);
  width: 25px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1748603311480"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 725px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] {
    display: table;
    top: 792px;
    left: calc(50% - 320px + 623px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] {
    display: table;
    top: 604px;
    left: calc(50% - 240px + 463px);
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748603311480"] {
    display: table;
    top: 1680px;
    left: 303px;
    height: auto;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 31;
  top: -1px;
  left: calc(50% - 600px + 80px);
  width: 746px;
  height: auto;
}
#rec1123799406 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: -1px;
    left: calc(50% - 480px + 10px);
    width: 746px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 9px;
    left: 10px;
    width: 292px;
    height: auto;
  }
  #rec1123799406 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    line-height: 1;
    background-size: cover;
  }
}
#rec1123799406 .tn-elem[data-elem-id="1748609094550"] {
  z-index: 32;
  top: 0px;
  left: calc(50% - 600px + -660px);
  width: 560px;
  height: 429px;
}
#rec1123799406 .tn-elem[data-elem-id="1748609094550"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609094550"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609094550"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609094550"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1123799406 .tn-elem[data-elem-id="1748609094550"] {
    display: table;
  }
}

/* ---- assets/inline/css/aboutus_index-2f6690691b7a.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-570e875b3f81.css ---- */
#rec1065473726 .t396__artboard {
  height: 342px;
  background-color: #000000;
}
#rec1065473726 .t396__filter {
  height: 342px;
}
#rec1065473726 .t396__carrier {
  height: 342px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .t396__artboard,
  #rec1065473726 .t396__filter,
  #rec1065473726 .t396__carrier {
    height: 287px;
  }
  #rec1065473726 .t396__filter {
  }
  #rec1065473726 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .t396__artboard,
  #rec1065473726 .t396__filter,
  #rec1065473726 .t396__carrier {
    height: 412px;
  }
  #rec1065473726 .t396__filter {
  }
  #rec1065473726 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .t396__artboard,
  #rec1065473726 .t396__filter,
  #rec1065473726 .t396__carrier {
    height: 415px;
  }
  #rec1065473726 .t396__filter {
  }
  #rec1065473726 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .t396__artboard,
  #rec1065473726 .t396__filter,
  #rec1065473726 .t396__carrier {
    height: 605px;
  }
  #rec1065473726 .t396__filter {
  }
  #rec1065473726 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735302025103"] {
  z-index: 3;
  top: 11px;
  left: calc(50% - 600px + 80px);
  width: 1041px;
  height: 321px;
}
#rec1065473726 .tn-elem[data-elem-id="1735302025103"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735302025103"] {
    display: table;
    top: 6px;
    left: calc(50% - 480px + 10px);
    width: 940px;
    height: 275px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735302025103"] {
    display: table;
    top: 6px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 400px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735302025103"] {
    display: table;
    top: 5px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 400px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735302025103"] {
    display: table;
    top: 10px;
    width: 300px;
    height: 590px;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303218908"] {
  z-index: 4;
  top: 185px;
  left: calc(50% - 600px + 120px);
  width: 300px;
  height: 112px;
}
#rec1065473726 .tn-elem[data-elem-id="1735303218908"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303218908"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 58px);
    width: 271px;
    height: 101px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303218908"] {
    display: table;
    top: 168px;
    left: calc(50% - 320px + 38px);
    width: 271px;
    height: 101px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303218908"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 20px);
    width: 210px;
    height: 101px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303218908"] {
    display: table;
    top: 113px;
    left: 30px;
    width: 260px;
    height: 101px;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303263644"] {
  z-index: 5;
  top: 185px;
  left: calc(50% - 600px + 453px);
  width: 300px;
  height: 113px;
}
#rec1065473726 .tn-elem[data-elem-id="1735303263644"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303263644"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 359px);
    width: 271px;
    height: 102px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303263644"] {
    display: table;
    top: 167px;
    left: calc(50% - 320px + 329px);
    width: 271px;
    height: 102px;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303263644"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 250px);
    width: 210px;
    height: 102px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303263644"] {
    display: table;
    top: 356px;
    left: 30px;
    width: 260px;
    height: 102px;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303282508"] {
  z-index: 6;
  top: 185px;
  left: calc(50% - 600px + 780px);
  width: 300px;
  height: 113px;
}
#rec1065473726 .tn-elem[data-elem-id="1735303282508"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303282508"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 650px);
    width: 271px;
    height: 102px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303282508"] {
    display: table;
    top: 289px;
    left: calc(50% - 320px + 329px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303282508"] {
    display: table;
    top: 292px;
    left: calc(50% - 240px + 250px);
    width: 210px;
    height: 102px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303282508"] {
    display: table;
    top: 478px;
    left: 30px;
    width: 260px;
    height: 102px;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303362148"] {
  z-index: 7;
  top: 44px;
  left: calc(50% - 600px + 780px);
  width: 300px;
  height: 113px;
}
#rec1065473726 .tn-elem[data-elem-id="1735303362148"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303362148"] {
    display: table;
    top: 29px;
    left: calc(50% - 480px + 651px);
    width: 271px;
    height: 102px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303362148"] {
    display: table;
    top: 289px;
    left: calc(50% - 320px + 39px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303362148"] {
    display: table;
    top: 292px;
    left: calc(50% - 240px + 20px);
    width: 210px;
    height: 102px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303362148"] {
    display: table;
    top: 234px;
    left: 30px;
    width: 260px;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303753073"] {
  color: #000000;
  z-index: 8;
  top: 187px;
  left: calc(50% - 600px + 238px);
  width: 74px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1735303753073"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 43px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] {
    display: table;
    top: 158px;
    left: calc(50% - 480px + 156px);
    width: 76px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] {
    display: table;
    top: 169px;
    left: calc(50% - 320px + 146px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 96px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] {
    display: table;
    top: 113px;
    left: 131px;
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303753073"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1736234284820"] {
  color: #000000;
  z-index: 9;
  top: 187px;
  left: calc(50% - 600px + 510px);
  width: 186px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1736234284820"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 43px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234284820"] {
    display: table;
    top: 158px;
    left: calc(50% - 480px + 402px);
    width: 186px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234284820"] {
    display: table;
    top: 169px;
    left: calc(50% - 320px + 379px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736234284820"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234284820"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 268px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736234284820"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234284820"] {
    display: table;
    top: 356px;
    left: 66px;
    height: auto;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1748606689120"] {
  color: #ffffff;
  z-index: 10;
  top: 6px;
  left: calc(50% - 600px + 74px);
  width: auto;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1748606689120"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606689120"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 4px);
    width: 11px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606689120"] {
    display: table;
    width: 11px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606689120"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + 4px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1748606689120"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606689120"] {
    display: table;
    top: 5px;
    left: 4px;
    width: 12px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1748606689120"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1748606711840"] {
  color: #ffffff;
  z-index: 11;
  top: 325px;
  left: calc(50% - 600px + 1114px);
  width: auto;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1748606711840"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] {
    display: table;
    top: 275px;
    left: calc(50% - 480px + 942px);
    width: 11px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] {
    display: table;
    top: 400px;
    left: calc(50% - 320px + 623px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] {
    display: table;
    top: 398px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] {
    display: table;
    top: 593px;
    left: 303px;
    width: 12px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1748606711840"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1736235138144"] {
  color: #fcfcfc;
  z-index: 12;
  top: 188px;
  left: calc(50% - 600px + 873px);
  width: 114px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1736235138144"] .tn-atom {
  vertical-align: middle;
  color: #fcfcfc;
  font-size: 43px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235138144"] {
    display: table;
    top: 158px;
    left: calc(50% - 480px + 730px);
    width: 112px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235138144"] {
    display: table;
    top: 290px;
    left: calc(50% - 320px + 409px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235138144"] {
    display: table;
    top: 292px;
    left: calc(50% - 240px + 299px);
    width: 112px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736235138144"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235138144"] {
    display: table;
    top: 478px;
    left: 103px;
    width: 112px;
    height: auto;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1736235396006"] {
  color: #fcfcfc;
  z-index: 13;
  top: 46px;
  left: calc(50% - 600px + 874px);
  width: 132px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1736235396006"] .tn-atom {
  vertical-align: middle;
  color: #fcfcfc;
  font-size: 43px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235396006"] {
    display: table;
    top: 30px;
    left: calc(50% - 480px + 731px);
    width: 130px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235396006"] {
    display: table;
    top: 290px;
    left: calc(50% - 320px + 110px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235396006"] {
    display: table;
    top: 292px;
    left: calc(50% - 240px + 60px);
    width: 130px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736235396006"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235396006"] {
    display: table;
    top: 234px;
    left: 103px;
    height: auto;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
  color: #fcfcfc;
  z-index: 14;
  top: -5px;
  left: calc(50% - 600px + 120px);
  width: 674px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1735303859320"] .tn-atom {
  vertical-align: middle;
  color: #fcfcfc;
  font-size: 125px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
    display: table;
    top: 33px;
    left: calc(50% - 480px + 59px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
    text-align: left;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 111px;
    line-height: 0.75;
    letter-spacing: 1.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
    display: table;
    top: 41px;
    left: calc(50% - 320px + 38px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
    text-align: left;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 111px;
    line-height: 0.75;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
    display: table;
    top: 50px;
    left: calc(50% - 240px + 20px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 87px;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] {
    display: table;
    top: 42px;
    left: 30px;
    width: 260px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303859320"] .tn-atom {
    font-size: 51px;
    line-height: 0.75;
    letter-spacing: 0.2px;
    background-size: cover;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1735303777106"] {
  color: #000000;
  z-index: 15;
  top: 246px;
  left: calc(50% - 600px + 142px);
  width: 257px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1735303777106"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] {
    display: table;
    top: 212px;
    left: calc(50% - 480px + 66px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] {
    display: table;
    top: 223px;
    left: calc(50% - 320px + 47px);
    width: 253px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] {
    display: table;
    top: 232px;
    left: calc(50% - 240px + 23px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] {
    display: table;
    top: 174px;
    left: 58px;
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1735303777106"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1736234382645"] {
  color: #000000;
  z-index: 16;
  top: 246px;
  left: calc(50% - 600px + 485px);
  width: 236px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1736234382645"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234382645"] {
    display: table;
    top: 213px;
    left: calc(50% - 480px + 377px);
    width: 236px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234382645"] {
    display: table;
    top: 223px;
    left: calc(50% - 320px + 351px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736234382645"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234382645"] {
    display: table;
    top: 233px;
    left: calc(50% - 240px + 264px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736234382645"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1736234382645"] {
    display: table;
    top: 418px;
    left: 64px;
    width: 181px;
    height: auto;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1736235173279"] {
  color: #fcfcfc;
  z-index: 17;
  top: 248px;
  left: calc(50% - 600px + 787px);
  width: 287px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1736235173279"] .tn-atom {
  vertical-align: middle;
  color: #fcfcfc;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235173279"] {
    display: table;
    top: 216px;
    left: calc(50% - 480px + 662px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736235173279"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 18px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235173279"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 339px);
    width: 251px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235173279"] {
    display: table;
    top: 357px;
    left: calc(50% - 240px + 257px);
    width: auto;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736235173279"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235173279"] {
    display: table;
    top: 543px;
    left: 63px;
    width: 195px;
    height: auto;
  }
}
#rec1065473726 .tn-elem[data-elem-id="1736235469293"] {
  color: #fcfcfc;
  z-index: 18;
  top: 106px;
  left: calc(50% - 600px + 798px);
  width: 263px;
  height: auto;
}
#rec1065473726 .tn-elem[data-elem-id="1736235469293"] .tn-atom {
  vertical-align: middle;
  color: #fcfcfc;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235469293"] {
    display: table;
    top: 88px;
    left: calc(50% - 480px + 662px);
    width: 249px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736235469293"] .tn-atom {
    font-size: 18px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235469293"] {
    display: table;
    top: 348px;
    left: calc(50% - 320px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235469293"] {
    display: table;
    top: 357px;
    left: calc(50% - 240px + 26px);
    width: 197px;
    height: auto;
  }
  #rec1065473726 .tn-elem[data-elem-id="1736235469293"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473726 .tn-elem[data-elem-id="1736235469293"] {
    display: table;
    top: 299px;
    left: 62px;
    height: auto;
  }
}

/* ---- assets/inline/css/aboutus_index-43ccdd43b89f.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-a7f6aad82e4a.css ---- */
#rec1086443556 .t396__artboard {
  height: 40px;
  background-color: #000000;
}
#rec1086443556 .t396__filter {
  height: 40px;
}
#rec1086443556 .t396__carrier {
  height: 40px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086443556 .t396__artboard,
  #rec1086443556 .t396__filter,
  #rec1086443556 .t396__carrier {
  }
  #rec1086443556 .t396__filter {
  }
  #rec1086443556 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086443556 .t396__artboard,
  #rec1086443556 .t396__filter,
  #rec1086443556 .t396__carrier {
  }
  #rec1086443556 .t396__filter {
  }
  #rec1086443556 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086443556 .t396__artboard,
  #rec1086443556 .t396__filter,
  #rec1086443556 .t396__carrier {
  }
  #rec1086443556 .t396__filter {
  }
  #rec1086443556 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086443556 .t396__artboard,
  #rec1086443556 .t396__filter,
  #rec1086443556 .t396__carrier {
    height: 20px;
  }
  #rec1086443556 .t396__filter {
  }
  #rec1086443556 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086443556 .tn-elem[data-elem-id="1749220166858"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 5px;
  left: calc(50% - 600px + 80px);
  width: 746px;
  height: auto;
}
#rec1086443556 .tn-elem[data-elem-id="1749220166858"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] {
    display: table;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] {
    display: table;
    top: 9px;
    height: auto;
  }
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] {
    display: table;
    top: 14px;
    height: auto;
  }
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] {
    display: table;
    top: -1px;
    width: auto;
    height: auto;
  }
  #rec1086443556 .tn-elem[data-elem-id="1749220166858"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1.4;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-b373b2c601b7.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-32d287b9ce3a.css ---- */
#rec1086349621 .t396__artboard {
  height: 60px;
  background-color: #000000;
}
#rec1086349621 .t396__filter {
  height: 60px;
}
#rec1086349621 .t396__carrier {
  height: 60px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086349621 .t396__artboard,
  #rec1086349621 .t396__filter,
  #rec1086349621 .t396__carrier {
    height: 65px;
  }
  #rec1086349621 .t396__filter {
  }
  #rec1086349621 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086349621 .t396__artboard,
  #rec1086349621 .t396__filter,
  #rec1086349621 .t396__carrier {
    height: 65px;
  }
  #rec1086349621 .t396__filter {
  }
  #rec1086349621 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086349621 .t396__artboard,
  #rec1086349621 .t396__filter,
  #rec1086349621 .t396__carrier {
    height: 45px;
  }
  #rec1086349621 .t396__filter {
  }
  #rec1086349621 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086349621 .t396__artboard,
  #rec1086349621 .t396__filter,
  #rec1086349621 .t396__carrier {
    height: 45px;
  }
  #rec1086349621 .t396__filter {
  }
  #rec1086349621 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086349621 .tn-elem[data-elem-id="1749219234302"] {
  color: #ffffff;
  z-index: 3;
  top: 20px;
  left: calc(50% - 600px + 120px);
  width: 560px;
  height: auto;
}
#rec1086349621 .tn-elem[data-elem-id="1749219234302"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] {
    display: table;
    top: 23px;
    left: calc(50% - 480px + 50px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] {
    display: table;
    top: 22px;
    left: calc(50% - 320px + 50px);
    width: auto;
    height: auto;
  }
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 50px);
    width: auto;
    height: auto;
  }
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] {
    display: table;
    top: 19px;
    left: 20px;
    width: 212px;
    height: auto;
  }
  #rec1086349621 .tn-elem[data-elem-id="1749219234302"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1086349621 .tn-elem[data-elem-id="1749218570337"] {
  z-index: 4;
  top: 10px;
  left: calc(50% - 600px + 1070px);
  width: 40px;
  height: 40px;
}
#rec1086349621 .tn-elem[data-elem-id="1749218570337"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086349621 .tn-elem[data-elem-id="1749218570337"] {
    display: table;
    left: calc(50% - 480px + 900px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086349621 .tn-elem[data-elem-id="1749218570337"] {
    display: table;
    left: calc(50% - 320px + 580px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086349621 .tn-elem[data-elem-id="1749218570337"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 440px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086349621 .tn-elem[data-elem-id="1749218570337"] {
    display: table;
    top: 13px;
    left: 280px;
    width: 20px;
    height: 20px;
  }
}
#rec1086349621 .tn-elem[data-elem-id="1749551222663"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 60px;
}
#rec1086349621 .tn-elem[data-elem-id="1749551222663"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1086349621 .tn-elem[data-elem-id="1749551222663"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1086349621 .tn-elem[data-elem-id="1749551222663"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1086349621 .tn-elem[data-elem-id="1749551222663"] {
    display: block;
    left: calc(50% - 480px + 10px);
    width: 940px;
    height: 65px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086349621 .tn-elem[data-elem-id="1749551222663"] {
    display: block;
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086349621 .tn-elem[data-elem-id="1749551222663"] {
    display: block;
    top: 0px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 40px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086349621 .tn-elem[data-elem-id="1749551222663"] {
    display: block;
    top: 0px;
    width: 300px;
    height: 45px;
  }
}

/* ---- assets/inline/css/aboutus_index-797a91b92cad.css ---- */
#rec1086388281 .t396__artboard {
  height: 150px;
  background-color: #000000;
}
#rec1086388281 .t396__filter {
  height: 150px;
}
#rec1086388281 .t396__carrier {
  height: 150px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086388281 .t396__artboard,
  #rec1086388281 .t396__filter,
  #rec1086388281 .t396__carrier {
    height: 150px;
  }
  #rec1086388281 .t396__filter {
  }
  #rec1086388281 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086388281 .t396__artboard,
  #rec1086388281 .t396__filter,
  #rec1086388281 .t396__carrier {
    height: 150px;
  }
  #rec1086388281 .t396__filter {
  }
  #rec1086388281 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086388281 .t396__artboard,
  #rec1086388281 .t396__filter,
  #rec1086388281 .t396__carrier {
    height: 150px;
  }
  #rec1086388281 .t396__filter {
  }
  #rec1086388281 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086388281 .t396__artboard,
  #rec1086388281 .t396__filter,
  #rec1086388281 .t396__carrier {
    height: 135px;
  }
  #rec1086388281 .t396__filter {
  }
  #rec1086388281 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086388281 .tn-elem[data-elem-id="1749217898666"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 140px;
}
#rec1086388281 .tn-elem[data-elem-id="1749217898666"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086388281 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086388281 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 140px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086388281 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 140px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086388281 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 0px;
    width: 300px;
    height: 125px;
  }
}
#rec1086388281 .tn-elem[data-elem-id="1749219271791"] {
  color: #ffffff;
  z-index: 4;
  top: 40px;
  left: calc(50% - 600px + 120px);
  width: 960px;
  height: auto;
}
#rec1086388281 .tn-elem[data-elem-id="1749219271791"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] {
    display: table;
    top: 29px;
    left: calc(50% - 480px + 60px);
    width: 840px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] {
    display: table;
    top: 35px;
    left: calc(50% - 320px + 60px);
    width: 520px;
    height: auto;
  }
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] {
    display: table;
    top: 40px;
    left: calc(50% - 240px + 45px);
    width: 390px;
    height: auto;
  }
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] {
    display: table;
    top: 14px;
    left: 45px;
    width: 230px;
    height: 96px;
  }
  #rec1086388281 .tn-elem[data-elem-id="1749219271791"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-042a57ed767e.css ---- */
#rec1086365596 .t396__artboard {
  height: 60px;
  background-color: #000000;
}
#rec1086365596 .t396__filter {
  height: 60px;
}
#rec1086365596 .t396__carrier {
  height: 60px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086365596 .t396__artboard,
  #rec1086365596 .t396__filter,
  #rec1086365596 .t396__carrier {
    height: 65px;
  }
  #rec1086365596 .t396__filter {
  }
  #rec1086365596 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086365596 .t396__artboard,
  #rec1086365596 .t396__filter,
  #rec1086365596 .t396__carrier {
    height: 65px;
  }
  #rec1086365596 .t396__filter {
  }
  #rec1086365596 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086365596 .t396__artboard,
  #rec1086365596 .t396__filter,
  #rec1086365596 .t396__carrier {
    height: 45px;
  }
  #rec1086365596 .t396__filter {
  }
  #rec1086365596 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086365596 .t396__artboard,
  #rec1086365596 .t396__filter,
  #rec1086365596 .t396__carrier {
    height: 45px;
  }
  #rec1086365596 .t396__filter {
  }
  #rec1086365596 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086365596 .tn-elem[data-elem-id="1749218978996"] {
  z-index: 3;
  top: 10px;
  left: calc(50% - 600px + 1070px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1086365596
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1749218978996"] {
    opacity: 0;
  }
}
#rec1086365596 .tn-elem[data-elem-id="1749218978996"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086365596 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    top: 9px;
    left: calc(50% - 480px + 900px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086365596 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 580px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086365596 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    left: calc(50% - 240px + 440px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086365596 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    top: 13px;
    left: 280px;
  }
}
#rec1086365596 .tn-elem[data-elem-id="1749219484634"] {
  color: #ffffff;
  z-index: 4;
  top: 15px;
  left: calc(50% - 600px + 120px);
  width: auto;
  height: auto;
}
#rec1086365596 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 20px;
    left: calc(50% - 480px + 50px);
    width: auto;
    height: auto;
  }
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 22px;
    width: 182px;
    height: auto;
  }
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 14px;
    width: 137px;
    height: auto;
  }
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 19px;
    left: 20px;
    width: 91px;
    height: auto;
  }
  #rec1086365596 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1086365596 .tn-elem[data-elem-id="1749551694992"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 60px;
}
#rec1086365596 .tn-elem[data-elem-id="1749551694992"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1086365596 .tn-elem[data-elem-id="1749551694992"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1086365596 .tn-elem[data-elem-id="1749551694992"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1086365596 .tn-elem[data-elem-id="1749551694992"] {
    display: block;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086365596 .tn-elem[data-elem-id="1749551694992"] {
    display: block;
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086365596 .tn-elem[data-elem-id="1749551694992"] {
    display: block;
    width: 460px;
    height: 40px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086365596 .tn-elem[data-elem-id="1749551694992"] {
    display: block;
    top: 0px;
    left: 10px;
    width: 300px;
    height: 45px;
  }
}

/* ---- assets/inline/css/aboutus_index-a3e24625a104.css ---- */
#rec1086397641 .t396__artboard {
  height: 150px;
  background-color: #000000;
}
#rec1086397641 .t396__filter {
  height: 150px;
}
#rec1086397641 .t396__carrier {
  height: 150px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086397641 .t396__artboard,
  #rec1086397641 .t396__filter,
  #rec1086397641 .t396__carrier {
    height: 150px;
  }
  #rec1086397641 .t396__filter {
  }
  #rec1086397641 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086397641 .t396__artboard,
  #rec1086397641 .t396__filter,
  #rec1086397641 .t396__carrier {
    height: 150px;
  }
  #rec1086397641 .t396__filter {
  }
  #rec1086397641 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086397641 .t396__artboard,
  #rec1086397641 .t396__filter,
  #rec1086397641 .t396__carrier {
    height: 150px;
  }
  #rec1086397641 .t396__filter {
  }
  #rec1086397641 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086397641 .t396__artboard,
  #rec1086397641 .t396__filter,
  #rec1086397641 .t396__carrier {
    height: 123px;
  }
  #rec1086397641 .t396__filter {
  }
  #rec1086397641 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086397641 .tn-elem[data-elem-id="1749217898666"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 140px;
}
#rec1086397641 .tn-elem[data-elem-id="1749217898666"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086397641 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086397641 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086397641 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    width: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086397641 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 0px;
    width: 300px;
    height: 113px;
  }
}
#rec1086397641 .tn-elem[data-elem-id="1749219567521"] {
  color: #ffffff;
  z-index: 4;
  top: 40px;
  left: calc(50% - 600px + 129px);
  width: 943px;
  height: auto;
}
#rec1086397641 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 50px;
    left: calc(50% - 480px + 54px);
    width: 852px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 42px;
    left: calc(50% - 320px + 75px);
    width: 490px;
    height: auto;
  }
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 46px;
    left: calc(50% - 240px + 30px);
    width: 398px;
    height: 56px;
  }
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 20px;
    left: 45px;
    width: 230px;
    height: 72px;
  }
  #rec1086397641 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-412c422f9603.css ---- */
#rec1086660176 .t396__artboard {
  height: 60px;
  background-color: #000000;
}
#rec1086660176 .t396__filter {
  height: 60px;
}
#rec1086660176 .t396__carrier {
  height: 60px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086660176 .t396__artboard,
  #rec1086660176 .t396__filter,
  #rec1086660176 .t396__carrier {
    height: 65px;
  }
  #rec1086660176 .t396__filter {
  }
  #rec1086660176 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086660176 .t396__artboard,
  #rec1086660176 .t396__filter,
  #rec1086660176 .t396__carrier {
    height: 65px;
  }
  #rec1086660176 .t396__filter {
  }
  #rec1086660176 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086660176 .t396__artboard,
  #rec1086660176 .t396__filter,
  #rec1086660176 .t396__carrier {
    height: 45px;
  }
  #rec1086660176 .t396__filter {
  }
  #rec1086660176 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660176 .t396__artboard,
  #rec1086660176 .t396__filter,
  #rec1086660176 .t396__carrier {
    height: 40px;
  }
  #rec1086660176 .t396__filter {
  }
  #rec1086660176 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086660176 .tn-elem[data-elem-id="1749546361576"] {
  z-index: 3;
  top: 10px;
  left: calc(50% - 600px + 1070px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1086660176
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1749546361576"] {
    opacity: 0;
  }
}
#rec1086660176 .tn-elem[data-elem-id="1749546361576"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086660176 .tn-elem[data-elem-id="1749546361576"] {
    display: table;
    top: 10px;
    left: calc(50% - 480px + 900px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086660176 .tn-elem[data-elem-id="1749546361576"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 580px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086660176 .tn-elem[data-elem-id="1749546361576"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 440px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660176 .tn-elem[data-elem-id="1749546361576"] {
    display: table;
    top: 10px;
    left: 280px;
    width: 20px;
    height: 20px;
  }
}
#rec1086660176 .tn-elem[data-elem-id="1749219484634"] {
  color: #ffffff;
  z-index: 4;
  top: 15px;
  left: calc(50% - 600px + 120px);
  width: 451px;
  height: auto;
}
#rec1086660176 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 20px;
    left: calc(50% - 480px + 50px);
    width: auto;
    height: auto;
  }
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 22px;
    width: auto;
    height: auto;
  }
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 20px);
    width: 251px;
    height: auto;
  }
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 12px;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 16px;
    left: 20px;
    width: auto;
    height: auto;
  }
  #rec1086660176 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1086660176 .tn-elem[data-elem-id="1749551705740"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 60px;
}
#rec1086660176 .tn-elem[data-elem-id="1749551705740"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1086660176 .tn-elem[data-elem-id="1749551705740"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1086660176 .tn-elem[data-elem-id="1749551705740"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1086660176 .tn-elem[data-elem-id="1749551705740"] {
    display: block;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086660176 .tn-elem[data-elem-id="1749551705740"] {
    display: block;
    top: 0px;
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086660176 .tn-elem[data-elem-id="1749551705740"] {
    display: block;
    top: 0px;
    width: 460px;
    height: 40px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660176 .tn-elem[data-elem-id="1749551705740"] {
    display: block;
    top: 0px;
    left: 10px;
    width: 300px;
    height: 40px;
  }
}

/* ---- assets/inline/css/aboutus_index-ede43e21a5cd.css ---- */
#rec1086656916 .t396__artboard {
  height: 150px;
  background-color: #000000;
}
#rec1086656916 .t396__filter {
  height: 150px;
}
#rec1086656916 .t396__carrier {
  height: 150px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086656916 .t396__artboard,
  #rec1086656916 .t396__filter,
  #rec1086656916 .t396__carrier {
    height: 150px;
  }
  #rec1086656916 .t396__filter {
  }
  #rec1086656916 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086656916 .t396__artboard,
  #rec1086656916 .t396__filter,
  #rec1086656916 .t396__carrier {
    height: 150px;
  }
  #rec1086656916 .t396__filter {
  }
  #rec1086656916 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086656916 .t396__artboard,
  #rec1086656916 .t396__filter,
  #rec1086656916 .t396__carrier {
    height: 150px;
  }
  #rec1086656916 .t396__filter {
  }
  #rec1086656916 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656916 .t396__artboard,
  #rec1086656916 .t396__filter,
  #rec1086656916 .t396__carrier {
    height: 150px;
  }
  #rec1086656916 .t396__filter {
  }
  #rec1086656916 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086656916 .tn-elem[data-elem-id="1749217898666"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 140px;
}
#rec1086656916 .tn-elem[data-elem-id="1749217898666"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086656916 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086656916 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086656916 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 140px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656916 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 300px;
    height: 140px;
  }
}
#rec1086656916 .tn-elem[data-elem-id="1749219567521"] {
  color: #ffffff;
  z-index: 4;
  top: 40px;
  left: calc(50% - 600px + 120px);
  width: 911px;
  height: auto;
}
#rec1086656916 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 44px;
    left: calc(50% - 480px + 25px);
    width: 910px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 43px;
    left: calc(50% - 320px + 55px);
    width: 530px;
    height: auto;
  }
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 25px;
    left: calc(50% - 240px + 80px);
    width: 320px;
    height: 100px;
  }
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 28px;
    left: 45px;
    width: 230px;
    height: 84px;
  }
  #rec1086656916 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-37032862896b.css ---- */
#rec1086656541 .t396__artboard {
  height: 60px;
  background-color: #000000;
}
#rec1086656541 .t396__filter {
  height: 60px;
}
#rec1086656541 .t396__carrier {
  height: 60px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086656541 .t396__artboard,
  #rec1086656541 .t396__filter,
  #rec1086656541 .t396__carrier {
    height: 65px;
  }
  #rec1086656541 .t396__filter {
  }
  #rec1086656541 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086656541 .t396__artboard,
  #rec1086656541 .t396__filter,
  #rec1086656541 .t396__carrier {
    height: 65px;
  }
  #rec1086656541 .t396__filter {
  }
  #rec1086656541 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086656541 .t396__artboard,
  #rec1086656541 .t396__filter,
  #rec1086656541 .t396__carrier {
    height: 45px;
  }
  #rec1086656541 .t396__filter {
  }
  #rec1086656541 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656541 .t396__artboard,
  #rec1086656541 .t396__filter,
  #rec1086656541 .t396__carrier {
    height: 45px;
  }
  #rec1086656541 .t396__filter {
  }
  #rec1086656541 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086656541 .tn-elem[data-elem-id="1749218978996"] {
  z-index: 3;
  top: 10px;
  left: calc(50% - 600px + 1070px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1086656541
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1749218978996"] {
    opacity: 0;
  }
}
#rec1086656541 .tn-elem[data-elem-id="1749218978996"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086656541 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    top: 10px;
    left: calc(50% - 480px + 900px);
  }
}
@media screen and (max-width: 959px) {
  #rec1086656541 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    left: calc(50% - 320px + 580px);
  }
}
@media screen and (max-width: 639px) {
  #rec1086656541 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    left: calc(50% - 240px + 440px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656541 .tn-elem[data-elem-id="1749218978996"] {
    display: table;
    left: 280px;
  }
}
#rec1086656541 .tn-elem[data-elem-id="1749219484634"] {
  color: #ffffff;
  z-index: 4;
  top: 20px;
  left: calc(50% - 600px + 120px);
  width: auto;
  height: auto;
}
#rec1086656541 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 20px;
    left: calc(50% - 480px + 50px);
    width: auto;
    height: auto;
  }
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 22px;
    left: calc(50% - 320px + 50px);
    width: 247px;
    height: auto;
  }
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 20px);
    width: 185px;
    height: auto;
  }
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] {
    display: table;
    top: 16px;
    left: 20px;
    width: 123px;
    height: auto;
  }
  #rec1086656541 .tn-elem[data-elem-id="1749219484634"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1086656541 .tn-elem[data-elem-id="1749551715537"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 60px;
}
#rec1086656541 .tn-elem[data-elem-id="1749551715537"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1086656541 .tn-elem[data-elem-id="1749551715537"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1086656541 .tn-elem[data-elem-id="1749551715537"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1086656541 .tn-elem[data-elem-id="1749551715537"] {
    display: block;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086656541 .tn-elem[data-elem-id="1749551715537"] {
    display: block;
    width: 620px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086656541 .tn-elem[data-elem-id="1749551715537"] {
    display: block;
    width: 460px;
    height: 40px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086656541 .tn-elem[data-elem-id="1749551715537"] {
    display: block;
    width: 300px;
  }
}

/* ---- assets/inline/css/aboutus_index-69dec54b678f.css ---- */
#rec1086660456 .t396__artboard {
  height: 150px;
  background-color: #000000;
}
#rec1086660456 .t396__filter {
  height: 150px;
}
#rec1086660456 .t396__carrier {
  height: 150px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086660456 .t396__artboard,
  #rec1086660456 .t396__filter,
  #rec1086660456 .t396__carrier {
    height: 150px;
  }
  #rec1086660456 .t396__filter {
  }
  #rec1086660456 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086660456 .t396__artboard,
  #rec1086660456 .t396__filter,
  #rec1086660456 .t396__carrier {
    height: 150px;
  }
  #rec1086660456 .t396__filter {
  }
  #rec1086660456 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086660456 .t396__artboard,
  #rec1086660456 .t396__filter,
  #rec1086660456 .t396__carrier {
    height: 150px;
  }
  #rec1086660456 .t396__filter {
  }
  #rec1086660456 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660456 .t396__artboard,
  #rec1086660456 .t396__filter,
  #rec1086660456 .t396__carrier {
    height: 150px;
  }
  #rec1086660456 .t396__filter {
  }
  #rec1086660456 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086660456 .tn-elem[data-elem-id="1749217898666"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 1040px;
  height: 140px;
}
#rec1086660456 .tn-elem[data-elem-id="1749217898666"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086660456 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1086660456 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 140px;
  }
}
@media screen and (max-width: 639px) {
  #rec1086660456 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 5px;
    width: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660456 .tn-elem[data-elem-id="1749217898666"] {
    display: table;
    top: 0px;
    width: 300px;
  }
}
#rec1086660456 .tn-elem[data-elem-id="1749219567521"] {
  color: #ffffff;
  z-index: 4;
  top: 40px;
  left: calc(50% - 600px + 120px);
  width: 960px;
  height: auto;
}
#rec1086660456 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 35px;
    left: calc(50% - 480px + 125px);
    width: 710px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 43px;
    left: calc(50% - 320px + 60px);
    width: 520px;
    height: auto;
  }
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 16px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 40px;
    left: calc(50% - 240px + 40px);
    width: 400px;
    height: auto;
  }
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] {
    display: table;
    top: 28px;
    left: 45px;
    width: 230px;
    height: 84px;
  }
  #rec1086660456 .tn-elem[data-elem-id="1749219567521"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-bef947312337.css ---- */
#rec1086451601 .t396__artboard {
  height: 1px;
  background-color: #000000;
}
#rec1086451601 .t396__filter {
  height: 1px;
}
#rec1086451601 .t396__carrier {
  height: 1px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1086451601 .t396__artboard,
  #rec1086451601 .t396__filter,
  #rec1086451601 .t396__carrier {
  }
  #rec1086451601 .t396__filter {
  }
  #rec1086451601 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1086451601 .t396__artboard,
  #rec1086451601 .t396__filter,
  #rec1086451601 .t396__carrier {
  }
  #rec1086451601 .t396__filter {
  }
  #rec1086451601 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1086451601 .t396__artboard,
  #rec1086451601 .t396__filter,
  #rec1086451601 .t396__carrier {
  }
  #rec1086451601 .t396__filter {
  }
  #rec1086451601 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1086451601 .t396__artboard,
  #rec1086451601 .t396__filter,
  #rec1086451601 .t396__carrier {
  }
  #rec1086451601 .t396__filter {
  }
  #rec1086451601 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1086451601 .tn-elem[data-elem-id="1749220341336"] {
  z-index: 3;
  top: 20px;
  left: calc(50% - 600px + 20px);
  width: 560px;
  height: 170px;
}
#rec1086451601 .tn-elem[data-elem-id="1749220341336"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1086451601 .tn-elem[data-elem-id="1749220341336"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1086451601 .tn-elem[data-elem-id="1749220341336"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1086451601 .tn-elem[data-elem-id="1749220341336"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1086451601 .tn-elem[data-elem-id="1749220341336"] {
    display: table;
  }
}

/* ---- assets/inline/css/aboutus_index-51f408d37b22.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-6cfad3b9b4ff.css ---- */
#rec1083290206 .t396__artboard {
  height: 335px;
  background-color: #000000;
}
#rec1083290206 .t396__filter {
  height: 335px;
}
#rec1083290206 .t396__carrier {
  height: 335px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .t396__artboard,
  #rec1083290206 .t396__filter,
  #rec1083290206 .t396__carrier {
  }
  #rec1083290206 .t396__filter {
  }
  #rec1083290206 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .t396__artboard,
  #rec1083290206 .t396__filter,
  #rec1083290206 .t396__carrier {
    height: 320px;
  }
  #rec1083290206 .t396__filter {
  }
  #rec1083290206 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .t396__artboard,
  #rec1083290206 .t396__filter,
  #rec1083290206 .t396__carrier {
    height: 390px;
  }
  #rec1083290206 .t396__filter {
  }
  #rec1083290206 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .t396__artboard,
  #rec1083290206 .t396__filter,
  #rec1083290206 .t396__carrier {
    height: 370px;
  }
  #rec1083290206 .t396__filter {
  }
  #rec1083290206 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748607132208"] {
  z-index: 3;
  top: 74px;
  left: calc(50% - 600px + 80px);
  width: 660px;
  height: 250px;
}
#rec1083290206 .tn-elem[data-elem-id="1748607132208"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607132208"] {
    display: table;
    top: 39px;
    left: calc(50% - 480px + 10px);
    width: 540px;
    height: 286px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607132208"] {
    display: table;
    top: 50px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 260px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607132208"] {
    display: table;
    top: 47px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 335px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607132208"] {
    display: table;
    top: 31px;
    width: 300px;
    height: 320px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1749124912344"] {
  z-index: 4;
  top: 74px;
  left: calc(50% - 600px + 780px);
  width: 340px;
  height: 250px;
}
#rec1083290206 .tn-elem[data-elem-id="1749124912344"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1749124912344"] {
    display: table;
    top: 39px;
    left: calc(50% - 480px + 569px);
    width: 380px;
    height: 286px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1749124912344"] {
    display: table;
    top: 294px;
    left: calc(50% - 320px + -682px);
    width: 618px;
    height: 302px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1749124912344"] {
    display: table;
    top: -28px;
    left: calc(50% - 240px + -725px);
    width: 460px;
    height: 414px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1749124912344"] {
    display: table;
    top: 10px;
    width: 300px;
    height: 600px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1747300672649"] {
  z-index: 5;
  top: 116px;
  left: calc(50% - 600px + 120px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1747300672649"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 93px;
    left: calc(50% - 480px + 45px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 90px;
    left: calc(50% - 320px + 45px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 67px;
    left: calc(50% - 240px + 30px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 49px;
    left: 25px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748521306259"] {
  z-index: 6;
  top: 182px;
  left: calc(50% - 600px + 120px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1748521306259"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306259"] {
    display: table;
    top: 159px;
    left: calc(50% - 480px + 45px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306259"] {
    display: table;
    top: 156px;
    left: calc(50% - 320px + 45px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306259"] {
    display: table;
    top: 157px;
    left: calc(50% - 240px + 30px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306259"] {
    display: table;
    top: 124px;
    left: 25px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1747301037908"] {
  z-index: 7;
  top: 248px;
  left: calc(50% - 600px + 120px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1747301037908"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 225px;
    left: calc(50% - 480px + 45px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 230px;
    left: calc(50% - 320px + 45px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 247px;
    left: calc(50% - 240px + 30px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 199px;
    left: 25px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1747301018731"] {
  z-index: 8;
  top: 116px;
  left: calc(50% - 600px + 320px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1747301018731"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 93px;
    left: calc(50% - 480px + 195px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 90px;
    left: calc(50% - 320px + 230px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 67px;
    left: calc(50% - 240px + 170px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 274px;
    left: 25px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748521306248"] {
  z-index: 9;
  top: 182px;
  left: calc(50% - 600px + 320px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1748521306248"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306248"] {
    display: table;
    top: 159px;
    left: calc(50% - 480px + 195px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306248"] {
    display: table;
    top: 156px;
    left: calc(50% - 320px + 230px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306248"] {
    display: table;
    top: 157px;
    left: calc(50% - 240px + 170px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306248"] {
    display: table;
    top: 49px;
    left: 165px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748521306253"] {
  z-index: 10;
  top: 248px;
  left: calc(50% - 600px + 320px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1748521306253"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306253"] {
    display: table;
    top: 225px;
    left: calc(50% - 480px + 195px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306253"] {
    display: table;
    top: 230px;
    left: calc(50% - 320px + 230px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306253"] {
    display: table;
    top: 247px;
    left: calc(50% - 240px + 170px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306253"] {
    display: table;
    top: 125px;
    left: 165px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1747301030509"] {
  z-index: 11;
  top: 116px;
  left: calc(50% - 600px + 520px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1747301030509"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 93px;
    left: calc(50% - 480px + 376px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 90px;
    left: calc(50% - 320px + 430px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 67px;
    left: calc(50% - 240px + 315px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 277px;
    left: 164px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748521306241"] {
  z-index: 12;
  top: 182px;
  left: calc(50% - 600px + 520px);
  width: 40px;
  height: 40px;
}
#rec1083290206 .tn-elem[data-elem-id="1748521306241"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306241"] {
    display: table;
    top: 159px;
    left: calc(50% - 480px + 376px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306241"] {
    display: table;
    top: 156px;
    left: calc(50% - 320px + 430px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306241"] {
    display: table;
    top: 157px;
    left: calc(50% - 240px + 318px);
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748521306241"] {
    display: table;
    top: 201px;
    left: 164px;
    width: 55px;
    height: 55px;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522165394"] {
  color: #ffffff;
  z-index: 13;
  top: 123px;
  left: calc(50% - 600px + 180px);
  width: 82px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522165394"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] {
    display: table;
    top: 100px;
    left: calc(50% - 480px + 95px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] {
    display: table;
    top: 100px;
    left: calc(50% - 320px + 110px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 100px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] {
    display: table;
    top: 71px;
    left: 90px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522165394"] .tn-atom {
    line-height: 0.95;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522199916"] {
  color: #ffffff;
  z-index: 14;
  top: 188px;
  left: calc(50% - 600px + 180px);
  width: 82px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522199916"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] {
    display: table;
    top: 170px;
    left: calc(50% - 480px + 95px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] {
    display: table;
    top: 167px;
    left: calc(50% - 320px + 110px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] {
    display: table;
    top: 177px;
    left: calc(50% - 240px + 100px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] {
    display: table;
    top: 145px;
    left: 90px;
    width: 54px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522199916"] .tn-atom {
    line-height: 0.95;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522329147"] {
  color: #ffffff;
  z-index: 15;
  top: 257px;
  left: calc(50% - 600px + 180px);
  width: 82px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522329147"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] {
    display: table;
    top: 234px;
    left: calc(50% - 480px + 95px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] {
    display: table;
    top: 241px;
    left: calc(50% - 320px + 111px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] {
    display: table;
    top: 267px;
    left: calc(50% - 240px + 100px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] {
    display: table;
    top: 222px;
    left: 90px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522329147"] .tn-atom {
    line-height: 0.95;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522211470"] {
  color: #ffffff;
  z-index: 16;
  top: 123px;
  left: calc(50% - 600px + 380px);
  width: 82px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522211470"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] {
    display: table;
    top: 100px;
    left: calc(50% - 480px + 245px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] {
    display: table;
    top: 100px;
    left: calc(50% - 320px + 295px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 240px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] {
    display: table;
    top: 297px;
    left: 90px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522211470"] .tn-atom {
    line-height: 0.95;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522233627"] {
  color: #ffffff;
  z-index: 17;
  top: 188px;
  left: calc(50% - 600px + 380px);
  width: 82px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522233627"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] {
    display: table;
    top: 170px;
    left: calc(50% - 480px + 245px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] {
    display: table;
    top: 167px;
    left: calc(50% - 320px + 295px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] {
    display: table;
    top: 177px;
    left: calc(50% - 240px + 240px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522233627"] {
    display: table;
    top: 71px;
    left: 231px;
    height: auto;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522378846"] {
  color: #ffffff;
  z-index: 18;
  top: 257px;
  left: calc(50% - 600px + 380px);
  width: 94px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522378846"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] {
    display: table;
    top: 234px;
    left: calc(50% - 480px + 245px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] {
    display: table;
    top: 241px;
    left: calc(50% - 320px + 295px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] {
    display: table;
    top: 267px;
    left: calc(50% - 240px + 240px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522378846"] {
    display: table;
    top: 145px;
    left: 230px;
    height: auto;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522259153"] {
  color: #ffffff;
  z-index: 19;
  top: 123px;
  left: calc(50% - 600px + 580px);
  width: 82px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522259153"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] {
    display: table;
    top: 100px;
    left: calc(50% - 480px + 426px);
    width: 82px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] {
    display: table;
    top: 100px;
    left: calc(50% - 320px + 495px);
    width: 82px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 385px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522259153"] {
    display: table;
    top: 297px;
    left: 229px;
    height: auto;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748522282463"] {
  color: #ffffff;
  z-index: 20;
  top: 188px;
  left: calc(50% - 600px + 580px);
  width: 99px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748522282463"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] {
    display: table;
    top: 170px;
    left: calc(50% - 480px + 426px);
    width: 99px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] {
    display: table;
    top: 167px;
    left: calc(50% - 320px + 495px);
    width: 99px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] {
    display: table;
    top: 177px;
    left: calc(50% - 240px + 388px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1.45;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748522282463"] {
    display: table;
    top: 222px;
    left: 230px;
    height: auto;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748607182413"] {
  color: #ffffff;
  z-index: 21;
  top: 68px;
  left: calc(50% - 600px + 74px);
  width: auto;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748607182413"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.7;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] {
    display: table;
    top: 34px;
    left: calc(50% - 480px + 4px);
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] {
    display: table;
    top: 45px;
    left: calc(50% - 320px + 4px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] {
    display: table;
    top: 42px;
    left: calc(50% - 240px + 4px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] {
    display: table;
    top: 26px;
    left: 4px;
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748607182413"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1748607189121"] {
  color: #ffffff;
  z-index: 22;
  top: 318px;
  left: calc(50% - 600px + 733px);
  width: auto;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1748607189121"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] {
    display: table;
    top: 319px;
    left: calc(50% - 480px + 543px);
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] {
    display: table;
    top: 304px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] {
    display: table;
    top: 375px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] {
    display: table;
    top: 344px;
    left: 303px;
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1748607189121"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1750321250553"] {
  color: #ffffff;
  z-index: 23;
  top: 317px;
  left: calc(50% - 600px + 1113px);
  width: auto;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1750321250553"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.7;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] {
    display: table;
    top: 34px;
    left: calc(50% - 480px + 564px);
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] {
    display: table;
    top: 65px;
    left: calc(50% - 320px + -26px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] {
    display: table;
    top: 66px;
    left: calc(50% - 240px + -306px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] {
    display: table;
    top: 46px;
    left: -466px;
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1750321250553"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1750321228660"] {
  color: #ffffff;
  z-index: 24;
  top: 67px;
  left: calc(50% - 600px + 774px);
  width: auto;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1750321228660"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.7;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] {
    display: table;
    top: 319px;
    left: calc(50% - 480px + 942px);
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] {
    display: table;
    top: 55px;
    left: calc(50% - 320px + -26px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] {
    display: table;
    top: 91px;
    left: calc(50% - 240px + -296px);
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] {
    display: table;
    top: 36px;
    left: -447px;
    width: 12px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1750321228660"] .tn-atom {
    line-height: 0;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1083290206 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 25;
  top: 3px;
  left: calc(50% - 600px + 80px);
  width: 746px;
  height: auto;
}
#rec1083290206 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 10px);
    width: 746px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 14px;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 9px;
    left: 13px;
    width: auto;
    height: auto;
  }
  #rec1083290206 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-cec34cf24f77.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-3b8fb855e389.css ---- */
#rec1065473771 .t396__artboard {
  height: 354px;
  background-color: #000000;
}
#rec1065473771 .t396__filter {
  height: 354px;
}
#rec1065473771 .t396__carrier {
  height: 354px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .t396__artboard,
  #rec1065473771 .t396__filter,
  #rec1065473771 .t396__carrier {
  }
  #rec1065473771 .t396__filter {
  }
  #rec1065473771 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .t396__artboard,
  #rec1065473771 .t396__filter,
  #rec1065473771 .t396__carrier {
  }
  #rec1065473771 .t396__filter {
  }
  #rec1065473771 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .t396__artboard,
  #rec1065473771 .t396__filter,
  #rec1065473771 .t396__carrier {
    height: 350px;
  }
  #rec1065473771 .t396__filter {
  }
  #rec1065473771 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .t396__artboard,
  #rec1065473771 .t396__filter,
  #rec1065473771 .t396__carrier {
    height: 339px;
  }
  #rec1065473771 .t396__filter {
  }
  #rec1065473771 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1750319965871"] {
  z-index: 3;
  top: 6px;
  left: calc(50% - 600px + 460px);
  width: 280px;
  height: 333px;
}
#rec1065473771 .tn-elem[data-elem-id="1750319965871"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319965871"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 430px);
    width: 250px;
    height: 340px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319965871"] {
    display: table;
    top: 7px;
    left: calc(50% - 320px + 350px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319965871"] {
    display: table;
    top: -45px;
    left: calc(50% - 240px + 591px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319965871"] {
    display: table;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1749130937685"] {
  z-index: 3;
  top: 79px;
  left: calc(50% - 600px + 80px);
  width: 340px;
  height: auto;
}
#rec1065473771 .tn-elem[data-elem-id="1749130937685"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937685"] {
    display: table;
    top: 64px;
    left: calc(50% - 480px + 10px);
    width: 400px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937685"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937685"] {
    display: table;
    top: 66px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937685"] {
    display: table;
    top: 55px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1749130937710"] {
  z-index: 3;
  top: 330px;
  left: calc(50% - 600px + 393px);
  width: 54px;
  height: 17px;
}
#rec1065473771 .tn-elem[data-elem-id="1749130937710"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065473771 .tn-elem[data-elem-id="1749130937710"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937710"] {
    display: table;
    top: 312px;
    left: calc(50% - 480px + 317px);
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937710"] {
    display: table;
    top: 311px;
    left: calc(50% - 320px + 281px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937710"] {
    display: table;
    top: 314px;
    left: calc(50% - 240px + 435px);
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1749130937710"] {
    display: table;
    top: 303px;
    left: 275px;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1736508350065"] {
  color: #a5a5a5;
  z-index: 3;
  top: 8px;
  left: calc(50% - 600px + 80px);
  width: 338px;
  height: auto;
}
#rec1065473771 .tn-elem[data-elem-id="1736508350065"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 10px);
    width: 400px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] {
    display: table;
    top: 10px;
    width: 300px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 30px);
    width: 420px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] {
    display: table;
    top: 10px;
    left: 10px;
    width: 300px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1736508350065"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1750319459425"] {
  z-index: 3;
  top: 6px;
  left: calc(50% - 600px + 780px);
  width: 340px;
  height: 333px;
}
#rec1065473771 .tn-elem[data-elem-id="1750319459425"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1065473771
  .tn-elem[data-elem-id="1750319459425"]
  .tn-atom__video-play-icon
  svg {
  width: 70px;
  height: 70px;
}
#rec1065473771
  .tn-elem[data-elem-id="1750319459425"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319459425"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 690px);
    width: 260px;
    height: 340px;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319459425"] {
    display: table;
    top: -52px;
    left: calc(50% - 320px + -281px);
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319459425"] {
    display: table;
    top: 74px;
    left: calc(50% - 240px + -339px);
    width: 330px;
    height: 350px;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1750319459425"] {
    display: table;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1750321261581"] {
  color: #ffffff;
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 454px);
  width: auto;
  height: auto;
}
#rec1065473771 .tn-elem[data-elem-id="1750321261581"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] {
    display: table;
    top: 2px;
    left: calc(50% - 480px + 424px);
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] {
    display: table;
    top: 2px;
    left: calc(50% - 320px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] {
    display: table;
    top: 127px;
    left: calc(50% - 240px + -90px);
    width: auto;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] {
    display: table;
    top: 96px;
    left: -136px;
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321261581"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1750321281204"] {
  color: #ffffff;
  z-index: 3;
  top: 333px;
  left: calc(50% - 600px + 734px);
  width: auto;
  height: auto;
}
#rec1065473771 .tn-elem[data-elem-id="1750321281204"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] {
    display: table;
    top: 341px;
    left: calc(50% - 480px + 673px);
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] {
    display: table;
    top: 341px;
    left: calc(50% - 320px + 593px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] {
    display: table;
    top: 111px;
    left: calc(50% - 240px + -92px);
    width: auto;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] {
    display: table;
    top: 106px;
    left: -126px;
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321281204"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1750321300902"] {
  color: #ffffff;
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 774px);
  width: auto;
  height: auto;
}
#rec1065473771 .tn-elem[data-elem-id="1750321300902"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] {
    display: table;
    top: 2px;
    left: calc(50% - 480px + 684px);
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] {
    display: table;
    top: -41px;
    left: calc(50% - 320px + -135px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] {
    display: table;
    top: 148px;
    left: calc(50% - 240px + -106px);
    width: auto;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] {
    display: table;
    top: 106px;
    left: -126px;
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321300902"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
#rec1065473771 .tn-elem[data-elem-id="1750321320147"] {
  color: #ffffff;
  z-index: 3;
  top: 333px;
  left: calc(50% - 600px + 1113px);
  width: auto;
  height: auto;
}
#rec1065473771 .tn-elem[data-elem-id="1750321320147"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] {
    display: table;
    top: 341px;
    left: calc(50% - 480px + 943px);
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] .tn-atom {
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] {
    display: table;
    top: -31px;
    left: calc(50% - 320px + -121px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] {
    display: table;
    top: 158px;
    left: calc(50% - 240px + -96px);
    width: auto;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] {
    display: table;
    top: 116px;
    left: -116px;
    width: 12px;
    height: auto;
  }
  #rec1065473771 .tn-elem[data-elem-id="1750321320147"] .tn-atom {
    letter-spacing: -0.5px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-e541df76f8be.css ---- */
#rec1065473771 [data-elem-id="1749130937685"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771 [data-elem-id="1749130937685"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771 [data-elem-id="1749130937685"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771 [data-elem-id="1749130937685"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771
  [data-elem-id="1749130937685"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771 [data-elem-id="1749130937685"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771 [data-elem-id="1749130937685"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1065473771 [data-elem-id="1749130937685"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/aboutus_index-8e199bfc647e.css ---- */
#rec1065473771 [data-elem-id="1749130937685"] .t-input-block input[type="text"],
#rec1065473771 [data-elem-id="1749130937685"] .t-input-block input[type="tel"],
#rec1065473771 [data-elem-id="1749130937685"] .t-input-block input[type="url"],
#rec1065473771
  [data-elem-id="1749130937685"]
  .t-input-block
  input[type="email"],
#rec1065473771
  [data-elem-id="1749130937685"]
  .t-input-block
  .t-input-phonemask__select,
#rec1065473771 [data-elem-id="1749130937685"] .t-input-block textarea,
#rec1065473771 [data-elem-id="1749130937685"] .t-input-block select,
#rec1065473771 [data-elem-id="1749130937685"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/aboutus_index-554a9c3dd86c.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-6a25bcdc26fc.css ---- */
#rec1113408456 .t396__artboard {
  height: 40px;
  background-color: #000000;
  overflow: visible;
}
#rec1113408456 .t396__filter {
  height: 40px;
}
#rec1113408456 .t396__carrier {
  height: 40px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1113408456 .t396__artboard,
  #rec1113408456 .t396__filter,
  #rec1113408456 .t396__carrier {
  }
  #rec1113408456 .t396__filter {
  }
  #rec1113408456 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1113408456 .t396__artboard,
  #rec1113408456 .t396__filter,
  #rec1113408456 .t396__carrier {
  }
  #rec1113408456 .t396__filter {
  }
  #rec1113408456 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1113408456 .t396__artboard,
  #rec1113408456 .t396__filter,
  #rec1113408456 .t396__carrier {
  }
  #rec1113408456 .t396__filter {
  }
  #rec1113408456 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1113408456 .t396__artboard,
  #rec1113408456 .t396__filter,
  #rec1113408456 .t396__carrier {
    height: 20px;
  }
  #rec1113408456 .t396__filter {
  }
  #rec1113408456 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1113408456 .tn-elem[data-elem-id="1750331036769"] {
  z-index: 3;
  top: -41px;
  left: calc(50% - 600px + -20px);
  width: 100px;
  height: 214px;
}
#rec1113408456 .tn-elem[data-elem-id="1750331036769"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331036769"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331036769"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331036769"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331036769"] {
    display: table;
  }
}
#rec1113408456 .tn-elem[data-elem-id="1750331043850"] {
  z-index: 4;
  top: -33px;
  left: calc(50% - 600px + 1120px);
  width: 100px;
  height: 206px;
}
#rec1113408456 .tn-elem[data-elem-id="1750331043850"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331043850"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331043850"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331043850"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1113408456 .tn-elem[data-elem-id="1750331043850"] {
    display: table;
  }
}

/* ---- assets/inline/css/aboutus_index-8c6ca7688646.css ---- */
#rec1113326166 {
  cursor: -webkit-grab;
  cursor: grab;
}

/* Добавляем стили для ползунка прокрутки */
#rec1113326166 .dragscroll::-webkit-scrollbar {
  width: 5px; /* Ширина ползунка */
}

#rec1113326166 .dragscroll::-webkit-scrollbar-thumb {
  background-color: #eb1414; /* Цвет ползунка */
  border-radius: 0px; /* Скругление */
  width: 60px; /* Уменьшение длины ползунка */
  margin: 0 auto; /* Центрация ползунка */
}

#rec1113326166 .dragscroll::-webkit-scrollbar-track {
  background: transparent; /* Фоновый цвет трека */
}

/* Центрация полосы прокрутки для ПК */
#rec1113326166 .dragscroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Устанавливаем цвет ползунка для iPhone */
@media (max-width: 768px) {
  #rec1113326166 .dragscroll::-webkit-scrollbar-thumb {
    background-color: #eb1414; /* Цвет ползунка для iPhone */
  }
}

/* ---- assets/inline/css/aboutus_index-c80c937e16ef.css ---- */
#rec1112862926 .t396__artboard {
  height: 400px;
  background-color: #000000;
}
#rec1112862926 .t396__filter {
  height: 400px;
}
#rec1112862926 .t396__carrier {
  height: 400px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .t396__artboard,
  #rec1112862926 .t396__filter,
  #rec1112862926 .t396__carrier {
  }
  #rec1112862926 .t396__filter {
  }
  #rec1112862926 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .t396__artboard,
  #rec1112862926 .t396__filter,
  #rec1112862926 .t396__carrier {
    height: 360px;
  }
  #rec1112862926 .t396__filter {
  }
  #rec1112862926 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .t396__artboard,
  #rec1112862926 .t396__filter,
  #rec1112862926 .t396__carrier {
    height: 660px;
  }
  #rec1112862926 .t396__filter {
  }
  #rec1112862926 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .t396__artboard,
  #rec1112862926 .t396__filter,
  #rec1112862926 .t396__carrier {
    height: 549px;
  }
  #rec1112862926 .t396__filter {
  }
  #rec1112862926 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1734444925865"] {
  color: #a5a5a5;
  z-index: 3;
  top: 82px;
  left: calc(50% - 600px + 780px);
  width: 299px;
  height: auto;
}
#rec1112862926 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 590px);
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 60px;
    left: calc(50% - 320px + 329px);
    width: 268px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 57px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 59px;
    width: 295px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1747748205706"] {
  z-index: 4;
  top: 158px;
  left: calc(50% - 600px + 780px);
  width: 340px;
  height: auto;
}
#rec1112862926 .tn-elem[data-elem-id="1747748205706"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 590px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 113px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 122px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 105px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1747996074770"] {
  z-index: 5;
  top: 373px;
  left: calc(50% - 600px + 1100px);
  width: 100px;
  height: 100px;
}
#rec1112862926 .tn-elem[data-elem-id="1747996074770"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1112862926 .tn-elem[data-elem-id="1747996074770"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 370px;
    left: calc(50% - 480px + 929px);
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 332px;
    left: calc(50% - 320px + 607px);
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 345px;
    left: calc(50% - 240px + 442px);
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 328px;
    left: 285px;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1734444979691"] {
  color: #ffffff;
  z-index: 6;
  top: 3px;
  left: calc(50% - 600px + 780px);
  width: 346px;
  height: auto;
}
#rec1112862926 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 47px;
    left: calc(50% - 480px + 590px);
    width: 273px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 3px;
    left: calc(50% - 320px + 329px);
    width: 283px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 2px;
    left: 10px;
    width: 280px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1747839805877"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 7;
  top: 16px;
  left: calc(50% - 600px + 420px);
  width: 352px;
  height: 300px;
}
#rec1112862926 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 150px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 289px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: -18px;
    left: calc(50% - 320px + 10px);
    width: 265px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 345px;
    left: calc(50% - 240px + 244px);
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 306px;
    left: 136px;
    height: auto;
  }
  #rec1112862926 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
    font-size: 100px;
    background-size: cover;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1747747827856"] {
  z-index: 8;
  top: -129px;
  left: calc(50% - 600px + 74px);
  width: 640px;
  height: 640px;
}
#rec1112862926 .tn-elem[data-elem-id="1747747827856"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1112862926 .tn-elem[data-elem-id="1747747827856"] .tn-atom {
  -webkit-transform: rotate(359deg);
  -moz-transform: rotate(359deg);
  transform: rotate(359deg);
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: -67px;
    left: calc(50% - 480px + 10px);
    width: 545px;
    height: 545px;
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 30px;
    left: calc(50% - 320px + 7px);
    width: 417px;
    height: 417px;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 286px;
    left: calc(50% - 240px + 6px);
    width: 470px;
    height: 470px;
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 310px;
    left: 10px;
    width: 300px;
    height: 296px;
  }
}
#rec1112862926 .tn-elem[data-elem-id="1747750359607"] {
  z-index: 10;
  top: 189px;
  left: calc(50% - 600px + 80px);
  width: 270px;
  height: 270px;
}
#rec1112862926 .tn-elem[data-elem-id="1747750359607"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1112862926 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    left: calc(50% - 480px + 10px);
  }
}
@media screen and (max-width: 959px) {
  #rec1112862926 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 187px;
    left: calc(50% - 320px + 10px);
    width: 221px;
    height: 221px;
  }
}
@media screen and (max-width: 639px) {
  #rec1112862926 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 487px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1112862926 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 429px;
    left: 10px;
    width: 150px;
    height: 150px;
  }
}

/* ---- assets/inline/css/aboutus_index-18dd19112008.css ---- */
#rec1112862926 [data-elem-id="1747748205706"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926 [data-elem-id="1747748205706"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926 [data-elem-id="1747748205706"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926 [data-elem-id="1747748205706"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926
  [data-elem-id="1747748205706"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926 [data-elem-id="1747748205706"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926 [data-elem-id="1747748205706"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1112862926 [data-elem-id="1747748205706"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/aboutus_index-5f21308af8bd.css ---- */
#rec1112862926 [data-elem-id="1747748205706"] .t-input-block input[type="text"],
#rec1112862926 [data-elem-id="1747748205706"] .t-input-block input[type="tel"],
#rec1112862926 [data-elem-id="1747748205706"] .t-input-block input[type="url"],
#rec1112862926
  [data-elem-id="1747748205706"]
  .t-input-block
  input[type="email"],
#rec1112862926
  [data-elem-id="1747748205706"]
  .t-input-block
  .t-input-phonemask__select,
#rec1112862926 [data-elem-id="1747748205706"] .t-input-block textarea,
#rec1112862926 [data-elem-id="1747748205706"] .t-input-block select,
#rec1112862926 [data-elem-id="1747748205706"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/aboutus_index-da6fafb992b4.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-3e66aa6a62cc.css ---- */
#rec1179555336 .t396__artboard {
  height: 280px;
  background-color: #000000;
}
#rec1179555336 .t396__filter {
  height: 280px;
}
#rec1179555336 .t396__carrier {
  height: 280px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .t396__artboard,
  #rec1179555336 .t396__filter,
  #rec1179555336 .t396__carrier {
  }
  #rec1179555336 .t396__filter {
  }
  #rec1179555336 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .t396__artboard,
  #rec1179555336 .t396__filter,
  #rec1179555336 .t396__carrier {
  }
  #rec1179555336 .t396__filter {
  }
  #rec1179555336 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .t396__artboard,
  #rec1179555336 .t396__filter,
  #rec1179555336 .t396__carrier {
  }
  #rec1179555336 .t396__filter {
  }
  #rec1179555336 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .t396__artboard,
  #rec1179555336 .t396__filter,
  #rec1179555336 .t396__carrier {
    height: 720px;
  }
  #rec1179555336 .t396__filter {
  }
  #rec1179555336 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747731093258"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 80px);
  width: 313px;
  height: 257px;
}
#rec1179555336 .tn-elem[data-elem-id="1747731093258"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 11px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 11px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 11px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 1px;
    left: 11px;
    width: 300px;
    height: 217px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1748338987570"] {
  z-index: 3;
  top: 17px;
  left: calc(50% - 600px + 131px);
  width: 257px;
  height: 257px;
}
#rec1179555336 .tn-elem[data-elem-id="1748338987570"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 60px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 240px + 60px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 6px;
    left: 87px;
    width: 220px;
    height: 220px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747843115036"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747843115036"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747843115036"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 168px;
    left: 32px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823555"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747641823555"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555336
  .tn-elem[data-elem-id="1747641823555"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 168px;
    left: 31px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823584"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 125px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823584"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 56px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 56px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 56px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 173px;
    left: 36px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899376007"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899376007"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899376007"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823558"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555336
  .tn-elem[data-elem-id="1747641823558"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823566"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 165px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823566"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 96px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 96px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 96px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 173px;
    left: 77px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899501429"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899501429"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899501429"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 168px;
    left: 112px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823578"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555336
  .tn-elem[data-elem-id="1747641823578"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 168px;
    left: 112px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823581"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 205px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823581"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 136px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 136px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 136px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 173px;
    left: 117px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1751014255987"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751014255987"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1751014255987"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1751014256015"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
#rec1179555336 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555336
  .tn-elem[data-elem-id="1751014256015"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555336 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1751014256062"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 245px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555336 .tn-elem[data-elem-id="1751014256062"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 176px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 176px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 173px;
    left: 157px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899420191"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899420191"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899420191"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823560"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555336
  .tn-elem[data-elem-id="1747641823560"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823571"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 285px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823571"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 216px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 216px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 216px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 173px;
    left: 197px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899484196"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555336
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899484196"] {
    opacity: 0;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747899484196"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 168px;
    left: 232px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823563"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555336
  .tn-elem[data-elem-id="1747641823563"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 168px;
    left: 232px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823575"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 325px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823575"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 256px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 256px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 173px;
    left: 237px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823552"] {
  color: #000000;
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 130px);
  width: 254px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823552"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 132px;
    left: 40px;
    height: auto;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823549"] {
  color: #000000;
  z-index: 3;
  top: 174px;
  left: calc(50% - 600px + 130px);
  width: 89px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823549"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 118px;
    left: 40px;
    height: auto;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823545"] {
  color: #000000;
  z-index: 3;
  top: 129px;
  left: calc(50% - 600px + 130px);
  width: 221px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 480px + 59px);
    width: 221px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823545"] {
    text-align: left;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 96px;
    left: 40px;
    width: 215px;
    height: auto;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823541"] {
  z-index: 3;
  top: 126px;
  left: calc(50% - 600px + 120px);
  width: 1px;
  height: 60px;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823541"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 88px;
    left: 30px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823537"] {
  color: #000000;
  z-index: 3;
  top: 101px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 56px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823533"] {
  color: #000000;
  z-index: 3;
  top: 89px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 44px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747641823526"] {
  color: #000000;
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 120px);
  width: 168px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 480px + 51px);
    width: 168px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 21px;
    left: 31px;
    width: 511px;
    height: 18px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747751061223"] {
  z-index: 3;
  top: 244px;
  left: calc(50% - 600px + 7px);
  width: 100px;
  height: 100px;
}
#rec1179555336 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + -62px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 320px + -62px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 240px + -62px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 198px;
    left: 4px;
    width: 13px;
    height: 29px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1748339984293"] {
  z-index: 3;
  top: -54px;
  left: calc(50% - 600px + 360px);
  width: 25px;
  height: 100px;
}
#rec1179555336 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555336 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 480px + 289px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 320px + 289px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 240px + 289px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -59px;
    left: 294px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747646631107"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 420px);
  width: 700px;
  height: 257px;
}
#rec1179555336 .tn-elem[data-elem-id="1747646631107"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 351px);
    width: 600px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 351px);
    width: 279px;
    height: 257px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 330px);
    width: 140px;
    height: 257px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 241px;
    left: 10px;
    width: 300px;
    height: 474px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747380721710"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 893px);
  width: 67px;
  height: 20px;
}
#rec1179555336 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 824px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 361px);
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 156px;
    left: calc(50% - 240px + 344px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 595px;
    left: 30px;
    width: 67px;
    height: 20px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382989615"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 459px);
  width: auto;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 390px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 395px);
    width: 60px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 263px;
    left: 126px;
    width: 67px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] {
    text-align: left;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747383077128"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 620px);
  width: 142px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 551px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 28px;
    left: calc(50% - 320px + 362px);
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 16px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 485px;
    left: 30px;
    width: 142px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747381853075"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 621px);
  width: 67px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 552px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 363px);
    width: 86px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 372px;
    left: 31px;
    width: 86px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382286729"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 460px);
  width: auto;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 391px);
    width: 66px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] {
    text-align: left;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 344px);
    width: 47px;
    height: 20px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 263px;
    left: 30px;
    width: 107px;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747380743405"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 459px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 396px);
    width: 30px;
    height: 30px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 290px;
    left: 126px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747383336368"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747383336368"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 511px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747384448888"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 629px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 511px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747384605122"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 705px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 71px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 511px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1748420444611"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 821px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1748420444611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 715px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 396px;
    left: 540px;
    width: 50px;
    height: 50px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747381124322"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 893px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 824px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 345px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 626px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747381888387"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747381888387"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 402px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382048808"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747382048808"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 708px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 402px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382213646"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747382213646"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 628px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 402px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747381231017"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 962px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747381231017"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 891px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 425px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 626px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747381773374"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 1030px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747381773374"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 824px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 385px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 626px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382850582"] {
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1179555336 .tn-elem[data-elem-id="1747382850582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 81px;
    left: calc(50% - 320px + 707px);
    width: 17px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 504px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 241px;
    left: 539px;
    width: 17px;
    height: 75px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747384632790"] {
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1179555336 .tn-elem[data-elem-id="1747384632790"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 530px);
    width: 1px;
    height: 145px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 530px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 241px;
    left: 394px;
    width: 1px;
    height: 145px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382870795"] {
  z-index: 3;
  top: 61px;
  left: calc(50% - 600px + 854px);
  width: 1px;
  height: 75px;
}
#rec1179555336 .tn-elem[data-elem-id="1747382870795"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 61px;
    left: calc(50% - 480px + 785px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 289px;
    left: calc(50% - 320px + 680px);
    width: 75px;
    height: 15px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 254px;
    left: calc(50% - 240px + 490px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 340px;
    left: 394px;
    width: 75px;
    height: 15px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1747382302775"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 460px);
  width: 50px;
  height: 50px;
}
#rec1179555336 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 391px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555336 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 344px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 290px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1748613066534"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 1114px);
  width: 13px;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 480px + 944px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 263px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 236px;
    left: 4px;
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1179555336 .tn-elem[data-elem-id="1748613058267"] {
  color: #ffffff;
  z-index: 3;
  top: 7px;
  left: calc(50% - 600px + 414px);
  width: auto;
  height: auto;
}
#rec1179555336 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: -4px;
    left: calc(50% - 480px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 6px;
    left: calc(50% - 240px + 324px);
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555336 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 708px;
    left: 303px;
    width: auto;
    height: auto;
  }
  #rec1179555336 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-0c78b3912924.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/aboutus_index-f0d0cf24c2e1.css ---- */
#rec1124404171 .t396__artboard {
  height: 50px;
  background-color: #000000;
}
#rec1124404171 .t396__filter {
  height: 50px;
}
#rec1124404171 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .t396__artboard,
  #rec1124404171 .t396__filter,
  #rec1124404171 .t396__carrier {
  }
  #rec1124404171 .t396__filter {
  }
  #rec1124404171 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .t396__artboard,
  #rec1124404171 .t396__filter,
  #rec1124404171 .t396__carrier {
  }
  #rec1124404171 .t396__filter {
  }
  #rec1124404171 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .t396__artboard,
  #rec1124404171 .t396__filter,
  #rec1124404171 .t396__carrier {
  }
  #rec1124404171 .t396__filter {
  }
  #rec1124404171 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .t396__artboard,
  #rec1124404171 .t396__filter,
  #rec1124404171 .t396__carrier {
  }
  #rec1124404171 .t396__filter {
  }
  #rec1124404171 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1748340397359"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -875px);
  width: 2951px;
  height: 51px;
}
#rec1124404171 .tn-elem[data-elem-id="1748340397359"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347211"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 140px);
  width: 55px;
  height: 30px;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347211"] .tn-atom:hover {
  }
  #rec1124404171 .tn-elem[data-elem-id="1747646347211"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 108px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 78px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 87px;
    left: 362px;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347209"] {
  color: #eb1414;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 196px);
  width: 55px;
  height: 30px;
  pointer-events: none;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  color: #eb1414;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 164px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 134px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 126px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 87px;
    left: 418px;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347206"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 261px);
  width: 55px;
  height: 30px;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"] .tn-atom:hover {
  }
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 217px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 187px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 179px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 87px;
    left: 471px;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347204"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 319px);
  width: 55px;
  height: 30px;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"] .tn-atom:hover {
  }
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 278px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 248px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 240px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 87px;
    left: 532px;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347213"] {
  z-index: 10;
  top: 9px;
  left: calc(50% - 600px + 708px);
  width: 1px;
  height: 30px;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347213"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 480px + 699px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 359px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 210px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 83px;
    left: 349px;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347200"] {
  color: #ffffff;
  z-index: 11;
  top: 20px;
  left: calc(50% - 600px + 420px);
  width: 246px;
  height: auto;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 19px;
    left: calc(50% - 480px + 411px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 18px;
    left: calc(50% - 320px + 90px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 70px);
    width: 130px;
    height: 20px;
  }
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 15px;
    left: 70px;
    width: 243px;
    height: auto;
  }
  #rec1124404171 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1747646347196"] {
  z-index: 12;
  top: 8px;
  left: calc(50% - 600px + 80px);
  width: 35px;
  height: 35px;
}
#rec1124404171 .tn-elem[data-elem-id="1747646347196"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 480px + 80px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 80px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: 10px;
  }
}
#rec1124404171 .tn-elem[data-elem-id="1748341987415"] {
  color: #ffffff;
  z-index: 13;
  top: 17px;
  left: calc(50% - 600px + 729px);
  width: 402px;
  height: auto;
}
#rec1124404171 .tn-elem[data-elem-id="1748341987415"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124404171 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124404171 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124404171 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 230px);
    width: 239px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124404171 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: 720px;
    height: auto;
  }
}

/* ---- assets/inline/css/aboutus_index-24b2acaa48f7.css ---- */
#rec1131002046 .t396__artboard {
  height: 600px;
  background-color: #000000;
}
#rec1131002046 .t396__filter {
  height: 600px;
}
#rec1131002046 .t396__carrier {
  height: 600px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .t396__artboard,
  #rec1131002046 .t396__filter,
  #rec1131002046 .t396__carrier {
    height: 598px;
  }
  #rec1131002046 .t396__filter {
  }
  #rec1131002046 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .t396__artboard,
  #rec1131002046 .t396__filter,
  #rec1131002046 .t396__carrier {
    height: 596px;
  }
  #rec1131002046 .t396__filter {
  }
  #rec1131002046 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .t396__artboard,
  #rec1131002046 .t396__filter,
  #rec1131002046 .t396__carrier {
    height: 1170px;
  }
  #rec1131002046 .t396__filter {
  }
  #rec1131002046 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .t396__artboard,
  #rec1131002046 .t396__filter,
  #rec1131002046 .t396__carrier {
    height: 969px;
  }
  #rec1131002046 .t396__filter {
  }
  #rec1131002046 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750159627036"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1131002046 .tn-elem[data-elem-id="1750159627036"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.4;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046
  .tn-elem[data-elem-id="1750159627036"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 387px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750159627036"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1748004070505"] {
  color: #a5a5a5;
  z-index: 3;
  top: 111px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 153px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 118px;
    left: calc(50% - 320px + 10px);
    width: 305px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 133px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] {
    display: table;
    top: 113px;
    width: 272px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070505"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1748004070500"] {
  color: #ffffff;
  z-index: 3;
  top: 63px;
  left: calc(50% - 600px + 180px);
  width: 348px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 90px);
    width: 337px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 10px);
    width: 320px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 73px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] {
    display: table;
    top: 73px;
    left: 10px;
    width: 302px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748004070500"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750157527506"] {
  z-index: 3;
  top: 175px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1750157527506"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 90px);
    width: 360px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 198px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750157527506"] {
    display: table;
    top: 163px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750160611890"] {
  z-index: 3;
  top: 394px;
  left: calc(50% - 600px + 522px);
  width: 100px;
  height: 100px;
}
#rec1131002046 .tn-elem[data-elem-id="1750160611890"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1750160611890"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 408px;
    left: calc(50% - 480px + 429px);
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 405px;
    left: calc(50% - 320px + 290px);
    width: 43px;
    height: 10px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 425px;
    left: calc(50% - 240px + 450px);
    height: 18px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750160611890"] {
    display: table;
    top: 397px;
    left: 285px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778864"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778864"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778864"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778864"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778864"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778864"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778864"] {
    display: table;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778873"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778873"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778873"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778873"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778873"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778873"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778873"] {
    display: block;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778879"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 285px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778879"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778879"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 215px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778879"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 115px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778879"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 135px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778879"] {
    display: table;
    top: 514px;
    left: 106px;
    width: 25px;
    height: 25px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778835"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778835"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778835"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778835"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778835"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778835"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778835"] {
    display: table;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778841"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778841"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778841"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778841"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778841"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778841"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778841"] {
    display: block;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778850"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 335px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778850"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778850"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 275px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778850"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 165px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778850"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 195px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778850"] {
    display: table;
    top: 514px;
    left: 151px;
    width: 25px;
    height: 25px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778806"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778806"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778806"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778806"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778806"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778806"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778806"] {
    display: table;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778813"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778813"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778813"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778813"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778813"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778813"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778813"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778813"] {
    display: block;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778821"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 185px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778821"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778821"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 95px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778821"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 15px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778821"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 15px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778821"] {
    display: table;
    top: 514px;
    left: 16px;
    width: 25px;
    height: 25px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778777"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778777"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778777"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778777"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778777"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778777"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778777"] {
    display: table;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778784"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778784"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778784"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778784"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778784"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778784"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778784"] {
    display: block;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778791"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 235px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778791"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778791"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 155px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778791"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 65px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778791"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 75px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778791"] {
    display: table;
    top: 514px;
    left: 61px;
    width: 25px;
    height: 25px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778743"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778743"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778743"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778743"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778743"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778743"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778743"] {
    display: table;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778753"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778753"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778753"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778753"] .tn-atom:hover {
  }
  #rec1131002046 .tn-elem[data-elem-id="1753253778753"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778753"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778753"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778753"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778753"] {
    display: block;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778761"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 435px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778761"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778761"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 395px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778761"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 215px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778761"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 255px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778761"] {
    display: table;
    top: 514px;
    left: 196px;
    width: 25px;
    height: 25px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778696"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753253778696"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778696"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778696"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778696"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778696"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778696"] {
    display: table;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778705"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778705"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778705"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778705"] .tn-atom:hover {
  }
  #rec1131002046 .tn-elem[data-elem-id="1753253778705"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778705"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778705"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778705"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778705"] {
    display: block;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1753253778715"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 385px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131002046 .tn-elem[data-elem-id="1753253778715"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778715"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 335px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778715"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 265px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778715"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 315px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1753253778715"] {
    display: table;
    top: 514px;
    left: 241px;
    width: 25px;
    height: 25px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1748004070422"] {
  text-align: center;
  z-index: 3;
  top: 26px;
  left: calc(50% - 600px + 1087px);
  width: 33px;
  height: 33px;
}
#rec1131002046 .tn-elem[data-elem-id="1748004070422"] .tn-atom {
  color: transparent;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131002046 .tn-elem[data-elem-id="1748004070422"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070422"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 36px;
    left: calc(50% - 480px + 837px);
    width: 33px;
    height: 33px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 15px;
    left: calc(50% - 320px + 592px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 20px;
    left: calc(50% - 240px + 437px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070422"] {
    display: block;
    top: 20px;
    left: 277px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1748004070451"] {
  z-index: 3;
  top: 30px;
  left: calc(50% - 600px + 1091px);
  width: 25px;
  height: 25px;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1131002046
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748004070451"] {
    opacity: 0;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1748004070451"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 841px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 19px;
    left: calc(50% - 320px + 596px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 24px;
    left: calc(50% - 240px + 441px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1748004070451"] {
    display: table;
    top: 24px;
    left: 281px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750156000035"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1131002046 .tn-elem[data-elem-id="1750156000035"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 397px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156000035"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750156263178"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 40px;
}
#rec1131002046 .tn-elem[data-elem-id="1750156263178"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 510px);
    width: 360px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 330px);
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 1100px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 60px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156263178"] {
    display: table;
    top: 884px;
    left: 10px;
    width: 300px;
    height: 40px;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1748005476602"] {
  color: #ffffff;
  z-index: 3;
  top: 540px;
  left: calc(50% - 600px + 595px);
  width: 412px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 538px;
    left: calc(50% - 480px + 520px);
    width: 335px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 512px;
    left: calc(50% - 320px + 341px);
    width: 274px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 1113px;
    left: calc(50% - 240px + 20px);
    width: 437px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] {
    display: table;
    top: 894px;
    left: 25px;
    width: 270px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1748005476602"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750156388955"] {
  color: #ffffff;
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 574px);
  width: 13px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1750156388955"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 96px;
    left: calc(50% - 480px + 504px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 53px;
    left: calc(50% - 320px + 324px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 4px);
    width: auto;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1750156388955"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156388955"] {
    display: table;
    top: 559px;
    left: 4px;
    width: 11px;
    height: auto;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1750156400603"] {
  color: #ffffff;
  z-index: 3;
  top: 484px;
  left: calc(50% - 600px + 1013px);
  width: 13px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1750156400603"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 491px;
    left: calc(50% - 480px + 862px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 467px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 1072px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1750156400603"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1750156400603"] {
    display: table;
    top: 858px;
    left: 303px;
    width: 11px;
    height: auto;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1737033572689"] {
  color: #ffffff;
  z-index: 3;
  top: 440px;
  left: calc(50% - 600px + 180px);
  width: 306px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 455px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 434px;
    left: calc(50% - 320px + 10px);
    width: 306px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 458px;
    left: calc(50% - 240px + 10px);
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] {
    display: table;
    top: 423px;
    left: 10px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] {
    color: #ffffff;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572689"] .tn-atom {
    color: #ffffff;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131002046 .tn-elem[data-elem-id="1737033572684"] {
  color: #ffffff;
  z-index: 3;
  top: 472px;
  left: calc(50% - 600px + 180px);
  width: 346px;
  height: auto;
}
#rec1131002046 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 485px;
    left: calc(50% - 480px + 90px);
    width: 272px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 464px;
    left: calc(50% - 320px + 10px);
    width: 276px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 490px;
    width: 409px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] {
    display: table;
    top: 453px;
    left: 10px;
    width: 274px;
    height: auto;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] {
    color: #ffffff;
  }
  #rec1131002046 .tn-elem[data-elem-id="1737033572684"] .tn-atom {
    color: #ffffff;
    font-size: 12px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/aboutus_index-2971e86a5179.css ---- */
#rec1131002046 [data-elem-id="1750157527506"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046 [data-elem-id="1750157527506"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046 [data-elem-id="1750157527506"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046 [data-elem-id="1750157527506"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046
  [data-elem-id="1750157527506"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046 [data-elem-id="1750157527506"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046 [data-elem-id="1750157527506"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131002046 [data-elem-id="1750157527506"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/aboutus_index-ac014e29e0af.css ---- */
#rec1131002046 [data-elem-id="1750157527506"] .t-input-block input[type="text"],
#rec1131002046 [data-elem-id="1750157527506"] .t-input-block input[type="tel"],
#rec1131002046 [data-elem-id="1750157527506"] .t-input-block input[type="url"],
#rec1131002046
  [data-elem-id="1750157527506"]
  .t-input-block
  input[type="email"],
#rec1131002046
  [data-elem-id="1750157527506"]
  .t-input-block
  .t-input-phonemask__select,
#rec1131002046 [data-elem-id="1750157527506"] .t-input-block textarea,
#rec1131002046 [data-elem-id="1750157527506"] .t-input-block select,
#rec1131002046 [data-elem-id="1750157527506"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/aboutus_index-b8adef198a3b.css ---- */
#rec1124458996 .t-menu__link-item {
  -webkit-transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}
#rec1124458996 .t-menu__link-item.t-active:not(.t978__menu-link) {
  color: #eb1414 !important;
  opacity: 1 !important;
}
#rec1124458996 .t-menu__link-item:not(.t-active):not(.tooltipstered):hover {
  color: #eb1414 !important;
}
#rec1124458996
  .t-menu__link-item:not(.t-active):not(.tooltipstered):focus-visible {
  color: #eb1414 !important;
}
@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
  #rec1124458996 .t-menu__link-item,
  #rec1124458996 .t-menu__link-item.t-active {
    opacity: 1 !important;
  }
}

/* ---- assets/inline/css/courses_index-5afbbb9797a3.css ---- */
.t-sbs-anim_started #sbs-1111569386-1748255447993 {
  animation: sbs-1111569386-1748255447993 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1111569386-1748255447993 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(30px);
  }
}

.t-sbs-anim_started #sbs-1124282366-1748015917462 {
  animation: sbs-1124282366-1748015917462 11s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124282366-1748015917462 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  9.09% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

.t-sbs-anim_started #sbs-1179555861-1747843115036 {
  animation: sbs-1179555861-1747843115036 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555861-1747843115036 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555861
  [data-elem-id="1747843115036"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555861-1747899376007 {
  animation: sbs-1179555861-1747899376007 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555861-1747899376007 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555861
  [data-elem-id="1747899376007"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555861-1747899501429 {
  animation: sbs-1179555861-1747899501429 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555861-1747899501429 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555861
  [data-elem-id="1747899501429"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555861-1751014255987 {
  animation: sbs-1179555861-1751014255987 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555861-1751014255987 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555861
  [data-elem-id="1751014255987"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555861-1747899420191 {
  animation: sbs-1179555861-1747899420191 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555861-1747899420191 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555861
  [data-elem-id="1747899420191"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179555861-1747899484196 {
  animation: sbs-1179555861-1747899484196 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179555861-1747899484196 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179555861
  [data-elem-id="1747899484196"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025352 {
  animation: sbs-1131005731-1753254025352 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025352 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131005731
  [data-elem-id="1753254025352"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025378 {
  animation: sbs-1131005731-1753254025378 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025378 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131005731
  [data-elem-id="1753254025378"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025403 {
  animation: sbs-1131005731-1753254025403 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025403 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131005731
  [data-elem-id="1753254025403"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025427 {
  animation: sbs-1131005731-1753254025427 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025427 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131005731
  [data-elem-id="1753254025427"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025454 {
  animation: sbs-1131005731-1753254025454 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025454 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131005731
  [data-elem-id="1753254025454"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025479 {
  animation: sbs-1131005731-1753254025479 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025479 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131005731
  [data-elem-id="1753254025479"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131005731-1753254025511 {
  animation: sbs-1131005731-1753254025511 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131005731-1753254025511 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.78, 0.78);
  }
}

#rec1131005731
  [data-elem-id="1753254025511"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/* ---- assets/inline/css/courses_index-f8fbd8f095c6.css ---- */
#rec1111569386 .t396__artboard {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 990;
}
#rec1111569386 .t396__artboard {
  height: 50px;
  background-color: #000000;
  overflow: visible;
}
#rec1111569386 .t396__filter {
  height: 50px;
}
#rec1111569386 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .t396__artboard,
  #rec1111569386 .t396__filter,
  #rec1111569386 .t396__carrier {
  }
  #rec1111569386 .t396__filter {
  }
  #rec1111569386 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .t396__artboard,
  #rec1111569386 .t396__filter,
  #rec1111569386 .t396__carrier {
  }
  #rec1111569386 .t396__filter {
  }
  #rec1111569386 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .t396__artboard,
  #rec1111569386 .t396__filter,
  #rec1111569386 .t396__carrier {
  }
  #rec1111569386 .t396__filter {
  }
  #rec1111569386 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .t396__artboard,
  #rec1111569386 .t396__filter,
  #rec1111569386 .t396__carrier {
  }
  #rec1111569386 .t396__filter {
  }
  #rec1111569386 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1748336375830"] {
  z-index: 3;
  top: -1px;
  left: calc(50% - 600px + -546px);
  width: 2293px;
  height: 51px;
}
#rec1111569386 .tn-elem[data-elem-id="1748336375830"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747235389820"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 402px);
  width: 78px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1747235389820"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1111569386 .tn-elem[data-elem-id="1747235389820"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 240px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1485px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 7px;
    left: 509px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747235476777"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 500px);
  width: 78px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1747235476777"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1111569386 .tn-elem[data-elem-id="1747235476777"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 325px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1583px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 7px;
    left: 607px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747235487045"] {
  color: #eb1414;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 598px);
  width: 78px;
  height: 30px;
  pointer-events: none;
}
#rec1111569386 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  color: #eb1414;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1111569386 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 410px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1681px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 7px;
    left: 705px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1748421568956"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 696px);
  width: 78px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1748421568956"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1111569386 .tn-elem[data-elem-id="1748421568956"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 495px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: -1px;
    left: calc(50% - 320px + 1872px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 17px;
    left: 813px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747235609694"] {
  color: #000000;
  text-align: center;
  z-index: 9;
  top: 10px;
  left: calc(50% - 600px + 994px);
  width: 126px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1111569386 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 824px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 502px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    left: calc(50% - 240px + 343px);
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: 144px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747236375794"] {
  color: #000000;
  text-align: center;
  z-index: 10;
  top: 11px;
  left: calc(50% - 600px + 949px);
  width: 30px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1111569386 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 480px + 778px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 456px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 240px + 297px);
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 9px;
    left: 392px;
    width: 30px;
    height: 30px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747236894336"] {
  z-index: 11;
  top: 16px;
  left: calc(50% - 600px + 954px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1111569386 .tn-elem[data-elem-id="1747236894336"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 783px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 461px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    left: calc(50% - 240px + 302px);
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 14px;
    left: 397px;
    width: 20px;
    height: 20px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747236388101"] {
  color: #000000;
  text-align: center;
  z-index: 12;
  top: 11px;
  left: calc(50% - 600px + 904px);
  width: 30px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1111569386 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 480px + 732px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 410px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 9px;
    left: 352px;
    width: 30px;
    height: 30px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747823134840"] {
  z-index: 13;
  top: 16px;
  left: calc(50% - 600px + 909px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1111569386 .tn-elem[data-elem-id="1747823134840"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 737px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 415px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 14px;
    left: 357px;
    width: 20px;
    height: 20px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747308725321"] {
  z-index: 15;
  top: 10px;
  left: calc(50% - 600px + 1880px);
  width: 60px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747308725321"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: 438px;
    width: 60px;
    height: 30px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747308857459"] {
  color: #000000;
  text-align: center;
  z-index: 17;
  top: 10px;
  left: calc(50% - 600px + 1880px);
  width: 30px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: 438px;
    width: 30px;
    height: 30px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747326978217"] {
  z-index: 18;
  top: 10px;
  left: calc(50% - 600px + 1842px);
  width: 30px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1747326978217"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
    top: 10px;
    left: 279px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1747225382228"] {
  z-index: 19;
  top: 5px;
  left: calc(50% - 600px + 79px);
  width: 40px;
  height: 40px;
}
#rec1111569386 .tn-elem[data-elem-id="1747225382228"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 480px + 9px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    top: 5px;
    left: 10px;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1748255447993"] {
  color: #000000;
  text-align: center;
  z-index: 20;
  top: 8px;
  left: calc(50% - 600px + 1386px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1111569386
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748255447993"] {
    opacity: 0;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111569386 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1111569386 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1272px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1748255423628"] {
  color: #ffffff;
  text-align: center;
  z-index: 21;
  top: 8px;
  left: calc(50% - 600px + 1386px);
  width: 30px;
  height: 30px;
}
#rec1111569386 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111569386 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1302px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
#rec1111569386 .tn-elem[data-elem-id="1748422363740"] {
  color: #ffffff;
  z-index: 22;
  top: 9px;
  left: calc(50% - 600px + 129px);
  width: 101px;
  height: auto;
}
#rec1111569386 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111569386 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    left: calc(50% - 480px + 69px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111569386 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111569386 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111569386 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    top: 14px;
    left: 64px;
    width: 66px;
    height: auto;
  }
  #rec1111569386 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/courses_index-0c5ac23a3274.css ---- */
#rec1124282366 .t396__artboard {
  height: 550px;
  background-color: #000000;
}
#rec1124282366 .t396__filter {
  height: 550px;
}
#rec1124282366 .t396__carrier {
  height: 550px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .t396__artboard,
  #rec1124282366 .t396__filter,
  #rec1124282366 .t396__carrier {
  }
  #rec1124282366 .t396__filter {
  }
  #rec1124282366 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .t396__artboard,
  #rec1124282366 .t396__filter,
  #rec1124282366 .t396__carrier {
    height: 760px;
  }
  #rec1124282366 .t396__filter {
  }
  #rec1124282366 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .t396__artboard,
  #rec1124282366 .t396__filter,
  #rec1124282366 .t396__carrier {
    height: 790px;
  }
  #rec1124282366 .t396__filter {
  }
  #rec1124282366 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .t396__artboard,
  #rec1124282366 .t396__filter,
  #rec1124282366 .t396__carrier {
    height: 810px;
  }
  #rec1124282366 .t396__filter {
  }
  #rec1124282366 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747232544453"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 630px;
  height: 550px;
}
#rec1124282366 .tn-elem[data-elem-id="1747232544453"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.3;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124282366
  .tn-elem[data-elem-id="1747232544453"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    left: calc(50% - 480px + -242px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + -46px);
    width: 733px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -2px);
    width: 312px;
    height: 406px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: -13px;
    width: 269px;
    height: 331px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1748015917462"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 602px;
  height: 550px;
}
#rec1124282366 .tn-elem.t396__elem--anim-hidden[data-elem-id="1748015917462"] {
  opacity: 0;
}
#rec1124282366 .tn-elem[data-elem-id="1748015917462"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -191px;
    left: calc(50% - 320px + -761px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -10px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1754575363454"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 80px);
  width: 275px;
  height: 275px;
}
#rec1124282366 .tn-elem[data-elem-id="1754575363454"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363454"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 7px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363454"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363454"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 61px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363454"] {
    display: table;
    top: 100px;
    left: 30px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1754575363460"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 90px);
  width: 275px;
  height: 275px;
}
#rec1124282366 .tn-elem[data-elem-id="1754575363460"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363460"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 17px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363460"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 186px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363460"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363460"] {
    display: table;
    top: 100px;
    left: 40px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1754575363464"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 92px);
  width: 275px;
  height: 275px;
}
#rec1124282366 .tn-elem[data-elem-id="1754575363464"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363464"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 19px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363464"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 188px);
    width: 275px;
    height: 275px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363464"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1754575363464"] {
    display: table;
    top: 99px;
    left: 45px;
    width: 184px;
    height: 184px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1748343246927"] {
  z-index: 3;
  top: -26px;
  left: calc(50% - 600px + 421px);
  width: 932px;
  height: 594px;
}
#rec1124282366 .tn-elem[data-elem-id="1748343246927"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: var(--site-bg);
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: -29px;
    left: calc(50% - 480px + 330px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + -71px);
    width: 786px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 405px;
    left: calc(50% - 240px + -143px);
    width: 786px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 329px;
    left: -209px;
    width: 786px;
    height: 437px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 56px;
  left: calc(50% - 600px + 957px);
  width: 247px;
  height: 300px;
}
#rec1124282366 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 140px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 119px;
    left: calc(50% - 480px + 727px);
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 377px;
    left: calc(50% - 320px + 400px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 406px;
    left: calc(50% - 240px + 330px);
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 80px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 508px;
    left: 144px;
    width: 177px;
    height: 200px;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 100px;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 877px);
  width: 400px;
  height: 400px;
}
#rec1124282366 .tn-elem[data-elem-id="1750248542074"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 95px;
    left: calc(50% - 480px + 630px);
    width: 394px;
    height: 394px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 361px;
    left: calc(50% - 320px + 353px);
    width: 334px;
    height: 334px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 414px;
    left: calc(50% - 240px + 225px);
    width: 315px;
    height: 315px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 481px;
    left: 89px;
    width: 282px;
    height: 282px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1124282366 .tn-elem[data-elem-id="1747728712611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 652px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1124282366 .tn-elem[data-elem-id="1748337022311"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 662px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
  z-index: 3;
  top: 457px;
  left: calc(50% - 600px + 421px);
  width: 928px;
  height: 50px;
}
#rec1124282366 .tn-elem[data-elem-id="1747234456600"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    left: calc(50% - 480px + 331px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 677px;
    left: calc(50% - 320px + -40px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 697px;
    left: calc(50% - 240px + -40px);
    width: 928px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 737px;
    left: -220px;
    width: 928px;
    height: 50px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747233003903"] {
  z-index: 3;
  top: 549px;
  left: calc(50% - 600px + -150px);
  width: 1500px;
  height: 1px;
}
#rec1124282366 .tn-elem[data-elem-id="1747233003903"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 548px;
    left: calc(50% - 480px + -240px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 759px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 779px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: -192px;
    left: -470px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747312395611"] {
  z-index: 3;
  top: 609px;
  left: calc(50% - 600px + -140px);
  width: 1500px;
  height: 1px;
}
#rec1124282366 .tn-elem[data-elem-id="1747312395611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    left: calc(50% - 480px + -230px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 1107px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 985px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 809px;
    left: -460px;
    width: 1500px;
    height: 1px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747312777885"] {
  z-index: 3;
  top: 619px;
  left: calc(50% - 600px + -130px);
  width: 1500px;
  height: 1px;
}
#rec1124282366 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    left: calc(50% - 480px + -220px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 977px;
    left: calc(50% - 320px + -260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 11px);
    width: 600px;
    height: 1px;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 169px;
    left: 97px;
    width: 320px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 243px;
  left: calc(50% - 600px + 479px);
  width: 353px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    left: calc(50% - 480px + 389px);
    width: 310px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 501px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 517px;
    left: calc(50% - 240px + 10px);
    width: 265px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 417px;
    left: 10px;
    width: 282px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
  color: #000000;
  z-index: 3;
  top: 475px;
  left: calc(50% - 600px + 480px);
  width: 608px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    left: calc(50% - 480px + 390px);
    width: 526px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 695px;
    left: calc(50% - 320px + 9px);
    width: 621px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 705px;
    left: calc(50% - 240px + 10px);
    width: 347px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 749px;
    left: 10px;
    width: 242px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 480px);
  width: 99px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 390px);
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 10px);
    width: 95px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 550px;
    left: 10px;
    width: 95px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 649px);
  width: 193px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 508px);
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 128px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 118px);
    width: 193px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 613px;
    left: 10px;
    width: 193px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 793px);
  width: 107px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 630px);
    width: 68px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 250px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 226px);
    width: 68px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 680px;
    left: 10px;
    width: 68px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 522px);
  width: 100px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 300;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 420px);
    width: 105px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 40px);
    width: 105px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 519px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 690px);
  width: 69px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 538px);
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 158px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 148px);
    width: 105px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 584px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 835px);
  width: 42px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 660px);
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 280px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 256px);
    width: 42px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 652px;
    left: 47px;
    width: 42px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 145px;
  left: calc(50% - 600px + 476px);
  width: 218px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    left: calc(50% - 480px + 386px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 403px;
    left: calc(50% - 320px + 9px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 423px;
    left: calc(50% - 240px + 9px);
    width: 218px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 326px;
    left: 9px;
    width: 218px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747312642704"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1200px;
  left: calc(50% - 600px + 780px);
  width: 218px;
  height: auto;
}
#rec1124282366 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    left: calc(50% - 480px + 396px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 112px;
    left: calc(50% - 320px + 871px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 168px;
    left: calc(50% - 240px + 241px);
    width: 305px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 70px;
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 197px;
    left: 138px;
    height: auto;
  }
  #rec1124282366 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
  z-index: 3;
  top: 224px;
  left: calc(50% - 600px + 480px);
  width: 270px;
  height: 1px;
}
#rec1124282366 .tn-elem[data-elem-id="1747296115209"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 482px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 502px;
    left: calc(50% - 240px + 10px);
    width: 270px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 400px;
    left: 10px;
    width: 218px;
    height: 1px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
  z-index: 3;
  top: 354px;
  left: calc(50% - 600px + 480px);
  width: 32px;
  height: 32px;
}
#rec1124282366 .tn-elem[data-elem-id="1747297312260"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 390px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 10px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 513px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 648px);
  width: 32px;
  height: 32px;
}
#rec1124282366 .tn-elem[data-elem-id="1747297507029"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 508px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 128px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 118px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 582px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 793px);
  width: 32px;
  height: 32px;
}
#rec1124282366 .tn-elem[data-elem-id="1747297709612"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 630px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 226px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 647px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124282366 .tn-elem[data-elem-id="1751631325372"] {
  z-index: 3;
  top: 165px;
  left: calc(50% - 600px + 712px);
  width: 38px;
  height: 38px;
}
#rec1124282366 .tn-elem[data-elem-id="1751631325372"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124282366 .tn-elem[data-elem-id="1751631325372"] {
    display: table;
    top: 164px;
    left: calc(50% - 480px + 624px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124282366 .tn-elem[data-elem-id="1751631325372"] {
    display: table;
    top: 423px;
    left: calc(50% - 320px + 242px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124282366 .tn-elem[data-elem-id="1751631325372"] {
    display: table;
    top: 443px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124282366 .tn-elem[data-elem-id="1751631325372"] {
    display: table;
    top: 344px;
    left: 268px;
    width: 41px;
    height: 41px;
  }
}

/* ---- assets/inline/css/courses_index-52ce7e10d9c6.css ---- */
#rec1144500371 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1144500371 .t396__filter {
  height: 80px;
}
#rec1144500371 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1144500371 .t396__artboard,
  #rec1144500371 .t396__filter,
  #rec1144500371 .t396__carrier {
  }
  #rec1144500371 .t396__filter {
  }
  #rec1144500371 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1144500371 .t396__artboard,
  #rec1144500371 .t396__filter,
  #rec1144500371 .t396__carrier {
  }
  #rec1144500371 .t396__filter {
  }
  #rec1144500371 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1144500371 .t396__artboard,
  #rec1144500371 .t396__filter,
  #rec1144500371 .t396__carrier {
  }
  #rec1144500371 .t396__filter {
  }
  #rec1144500371 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1144500371 .t396__artboard,
  #rec1144500371 .t396__filter,
  #rec1144500371 .t396__carrier {
  }
  #rec1144500371 .t396__filter {
  }
  #rec1144500371 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1144500371 .tn-elem[data-elem-id="1748507443928"] {
  z-index: 3;
  top: -9px;
  left: calc(50% - 600px + -735px);
  width: 2562px;
  height: 89px;
}
#rec1144500371 .tn-elem[data-elem-id="1748507443928"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
#rec1144500371 .tn-elem[data-elem-id="1748507221481"] {
  z-index: 4;
  top: 0px;
  left: calc(50% - 600px + -350px);
  width: 2556px;
  height: 89px;
}
#rec1144500371 .tn-elem[data-elem-id="1748507221481"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    left: calc(50% - 320px + -354px);
  }
}
@media screen and (max-width: 639px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1144500371 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: -41px;
  }
}

/* ---- assets/inline/css/courses_index-7006f6ee8b2d.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-bb84330bfcc5.css ---- */
#rec1128991741 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1128991741 .t396__filter {
  height: 80px;
}
#rec1128991741 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1128991741 .t396__artboard,
  #rec1128991741 .t396__filter,
  #rec1128991741 .t396__carrier {
  }
  #rec1128991741 .t396__filter {
  }
  #rec1128991741 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1128991741 .t396__artboard,
  #rec1128991741 .t396__filter,
  #rec1128991741 .t396__carrier {
    height: 160px;
  }
  #rec1128991741 .t396__filter {
  }
  #rec1128991741 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1128991741 .t396__artboard,
  #rec1128991741 .t396__filter,
  #rec1128991741 .t396__carrier {
    height: 120px;
  }
  #rec1128991741 .t396__filter {
  }
  #rec1128991741 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1128991741 .t396__artboard,
  #rec1128991741 .t396__filter,
  #rec1128991741 .t396__carrier {
    height: 100px;
  }
  #rec1128991741 .t396__filter {
  }
  #rec1128991741 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1128991741 .tn-elem[data-elem-id="1750164845792"] {
  z-index: 3;
  top: 19px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 60px;
}
#rec1128991741 .tn-elem[data-elem-id="1750164845792"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1128991741 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1128991741 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1128991741 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1128991741 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    top: 27px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1128991741 .tn-elem[data-elem-id="1750165865211"] {
  z-index: 4;
  top: 19px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 60px;
}
#rec1128991741 .tn-elem[data-elem-id="1750165865211"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1128991741 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    left: calc(50% - 480px + 490px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1128991741 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 87px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1128991741 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 67px;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1128991741 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 61px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1128991741 .tn-elem[data-elem-id="1750166143073"] {
  color: #4f4a4a;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 560px;
  height: auto;
}
#rec1128991741 .tn-elem[data-elem-id="1750166143073"] .tn-atom {
  vertical-align: middle;
  color: #4f4a4a;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1128991741 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1128991741 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1128991741 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1128991741 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: 10px;
    height: auto;
  }
}

/* ---- assets/inline/css/courses_index-7252aca08d12.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-a0c2032be4c4.css ---- */
#rec1111603556 .t396__artboard {
  height: 295px;
  background-color: #000000;
}
#rec1111603556 .t396__filter {
  height: 295px;
}
#rec1111603556 .t396__carrier {
  height: 295px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .t396__artboard,
  #rec1111603556 .t396__filter,
  #rec1111603556 .t396__carrier {
    height: 268px;
  }
  #rec1111603556 .t396__filter {
  }
  #rec1111603556 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .t396__artboard,
  #rec1111603556 .t396__filter,
  #rec1111603556 .t396__carrier {
    height: 660px;
  }
  #rec1111603556 .t396__filter {
  }
  #rec1111603556 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .t396__artboard,
  #rec1111603556 .t396__filter,
  #rec1111603556 .t396__carrier {
    height: 500px;
  }
  #rec1111603556 .t396__filter {
  }
  #rec1111603556 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .t396__artboard,
  #rec1111603556 .t396__filter,
  #rec1111603556 .t396__carrier {
    height: 1310px;
  }
  #rec1111603556 .t396__filter {
  }
  #rec1111603556 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747300672649"] {
  z-index: 3;
  top: 52px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1111603556 .tn-elem[data-elem-id="1747300672649"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 43px;
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300672649"] {
    display: table;
    top: 50px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747301018731"] {
  z-index: 4;
  top: 52px;
  left: calc(50% - 600px + 347px);
  width: 240px;
  height: 240px;
}
#rec1111603556 .tn-elem[data-elem-id="1747301018731"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    left: calc(50% - 480px + 252px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    left: calc(50% - 320px + 338px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 43px;
    left: calc(50% - 240px + 253px);
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301018731"] {
    display: table;
    top: 690px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747301030509"] {
  z-index: 5;
  top: 52px;
  left: calc(50% - 600px + 614px);
  width: 240px;
  height: 240px;
}
#rec1111603556 .tn-elem[data-elem-id="1747301030509"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    left: calc(50% - 480px + 494px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 364px;
    left: calc(50% - 320px + 10px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 275px;
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301030509"] {
    display: table;
    top: 370px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747301037908"] {
  z-index: 6;
  top: 52px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1111603556 .tn-elem[data-elem-id="1747301037908"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    left: calc(50% - 480px + 735px);
    width: 215px;
    height: 215px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 364px;
    left: calc(50% - 320px + 337px);
    width: 292px;
    height: 292px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 275px;
    left: calc(50% - 240px + 253px);
    width: 217px;
    height: 217px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301037908"] {
    display: table;
    top: 1010px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747300724715"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 7;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 553px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 553px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 289px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747300724715"] .tn-atom {
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747301686516"] {
  color: #000000;
  text-align: center;
  z-index: 8;
  top: 145px;
  left: calc(50% - 600px + 94px);
  width: 212px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 144px;
    left: calc(50% - 480px + 46px);
    width: 143px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 157px;
    left: calc(50% - 320px + 59px);
    width: 194px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 46px);
    width: 144px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] {
    display: table;
    top: 158px;
    left: 50px;
    width: 204px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747301686516"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747307081956"] {
  color: #000000;
  z-index: 9;
  top: 201px;
  left: calc(50% - 600px + 98px);
  width: 222px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 200px;
    left: calc(50% - 480px + 25px);
    width: 179px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 232px;
    left: calc(50% - 320px + 30px);
    width: 243px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 15px;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 168px;
    left: calc(50% - 240px + 25px);
    width: 180px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] {
    display: table;
    top: 238px;
    left: 50px;
    width: 254px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307081956"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747307127833"] {
  color: #000000;
  z-index: 10;
  top: 201px;
  left: calc(50% - 600px + 363px);
  width: 209px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 200px;
    left: calc(50% - 480px + 267px);
    width: 193px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 217px;
    left: calc(50% - 320px + 359px);
    width: 262px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    font-size: 15px;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 168px;
    left: calc(50% - 240px + 269px);
    width: 194px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] {
    display: table;
    top: 859px;
    left: 50px;
    width: 234px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307127833"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747307214822"] {
  color: #000000;
  z-index: 11;
  top: 201px;
  left: calc(50% - 600px + 630px);
  width: 221px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 200px;
    left: calc(50% - 480px + 507px);
    width: 157px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 529px;
    left: calc(50% - 320px + 30px);
    width: 262px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 15px;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 401px;
    left: calc(50% - 240px + 25px);
    width: 195px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] {
    display: table;
    top: 545px;
    left: 50px;
    width: 250px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307214822"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747307260660"] {
  color: #000000;
  z-index: 12;
  top: 201px;
  left: calc(50% - 600px + 897px);
  width: 213px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 200px;
    left: calc(50% - 480px + 750px);
    width: 189px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 529px;
    left: calc(50% - 320px + 357px);
    width: 249px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    font-size: 15px;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 401px;
    left: calc(50% - 240px + 268px);
    width: 185px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] {
    display: table;
    top: 1179px;
    left: 50px;
    width: 241px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307260660"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747306996972"] {
  color: #000000;
  text-align: center;
  z-index: 13;
  top: 145px;
  left: calc(50% - 600px + 368px);
  width: 195px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 144px;
    left: calc(50% - 480px + 286px);
    width: 146px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 157px;
    left: calc(50% - 320px + 390px);
    width: 198px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 287px);
    width: 147px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] {
    display: table;
    top: 799px;
    left: 50px;
    width: 217px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747306996972"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747307011903"] {
  color: #000000;
  text-align: center;
  z-index: 14;
  top: 145px;
  left: calc(50% - 600px + 626px);
  width: 212px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 144px;
    left: calc(50% - 480px + 525px);
    width: 153px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 469px;
    left: calc(50% - 320px + 52px);
    width: 208px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 360px;
    left: calc(50% - 240px + 41px);
    width: 155px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] {
    display: table;
    top: 479px;
    left: 50px;
    width: 213px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307011903"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747307038148"] {
  color: #000000;
  text-align: center;
  z-index: 15;
  top: 145px;
  left: calc(50% - 600px + 894px);
  width: 212px;
  height: auto;
}
#rec1111603556 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 144px;
    left: calc(50% - 480px + 782px);
    width: 120px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 469px;
    left: calc(50% - 320px + 401px);
    width: 163px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 360px;
    left: calc(50% - 240px + 301px);
    width: 121px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] {
    display: table;
    top: 1119px;
    left: 50px;
    width: 180px;
    height: auto;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] {
    text-align: left;
  }
  #rec1111603556 .tn-elem[data-elem-id="1747307038148"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747306816540"] {
  z-index: 16;
  top: 78px;
  left: calc(50% - 600px + 120px);
  width: 50px;
  height: 50px;
}
#rec1111603556 .tn-elem[data-elem-id="1747306816540"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 40px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 83px;
    left: calc(50% - 320px + 50px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 63px;
    left: calc(50% - 240px + 40px);
    width: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306816540"] {
    display: table;
    top: 100px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747306938582"] {
  z-index: 17;
  top: 78px;
  left: calc(50% - 600px + 387px);
  width: 50px;
  height: 50px;
}
#rec1111603556 .tn-elem[data-elem-id="1747306938582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 282px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 83px;
    left: calc(50% - 320px + 378px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 63px;
    left: calc(50% - 240px + 283px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306938582"] {
    display: table;
    top: 720px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747306952954"] {
  z-index: 18;
  top: 78px;
  left: calc(50% - 600px + 654px);
  width: 50px;
  height: 50px;
}
#rec1111603556 .tn-elem[data-elem-id="1747306952954"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 524px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 395px;
    left: calc(50% - 320px + 50px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 295px;
    left: calc(50% - 240px + 36px);
    width: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306952954"] {
    display: table;
    top: 400px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}
#rec1111603556 .tn-elem[data-elem-id="1747306970522"] {
  z-index: 19;
  top: 78px;
  left: calc(50% - 600px + 921px);
  width: 50px;
  height: 50px;
}
#rec1111603556 .tn-elem[data-elem-id="1747306970522"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 78px;
    left: calc(50% - 480px + 765px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 395px;
    left: calc(50% - 320px + 377px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 295px;
    left: calc(50% - 240px + 283px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111603556 .tn-elem[data-elem-id="1747306970522"] {
    display: table;
    top: 1040px;
    left: 50px;
    width: 51px;
    height: 51px;
  }
}

/* ---- assets/inline/css/courses_index-9565589d27fd.css ---- */
#rec1111561116 .t396__artboard {
  height: 318px;
  background-color: #000000;
}
#rec1111561116 .t396__filter {
  height: 318px;
}
#rec1111561116 .t396__carrier {
  height: 318px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .t396__artboard,
  #rec1111561116 .t396__filter,
  #rec1111561116 .t396__carrier {
  }
  #rec1111561116 .t396__filter {
  }
  #rec1111561116 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .t396__artboard,
  #rec1111561116 .t396__filter,
  #rec1111561116 .t396__carrier {
    height: 480px;
  }
  #rec1111561116 .t396__filter {
  }
  #rec1111561116 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .t396__artboard,
  #rec1111561116 .t396__filter,
  #rec1111561116 .t396__carrier {
    height: 705px;
  }
  #rec1111561116 .t396__filter {
  }
  #rec1111561116 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .t396__artboard,
  #rec1111561116 .t396__filter,
  #rec1111561116 .t396__carrier {
    height: 592px;
  }
  #rec1111561116 .t396__filter {
  }
  #rec1111561116 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1734428863476"] {
  z-index: 3;
  top: 37px;
  left: calc(50% - 600px + 80px);
  width: 1043px;
  height: 276px;
}
#rec1111561116 .tn-elem[data-elem-id="1734428863476"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1734428863476"] {
    display: table;
    top: 37px;
    left: calc(50% - 480px + 10px);
    width: 940px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1734428863476"] {
    display: table;
    top: 20px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 449px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1734428863476"] {
    display: table;
    top: 26px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 673px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1734428863476"] {
    display: table;
    top: 4px;
    left: 10px;
    width: 301px;
    height: 583px;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736340570354"] {
  z-index: 4;
  top: -7px;
  left: calc(50% - 600px + 399px);
  width: 372px;
  height: 320px;
}
#rec1111561116 .tn-elem[data-elem-id="1736340570354"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736340570354"] {
    display: table;
    top: -7px;
    left: calc(50% - 480px + 314px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736340570354"] {
    display: table;
    top: 148px;
    left: calc(50% - 320px + 259px);
    width: 372px;
    height: 320px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736340570354"] {
    display: table;
    top: 378px;
    left: calc(50% - 240px + 46px);
    width: 372px;
    height: 320px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736340570354"] {
    display: table;
    top: 338px;
    left: 3px;
    width: 307px;
    height: 248px;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736175874991"] {
  z-index: 5;
  top: 37px;
  left: calc(50% - 600px + 468px);
  width: 276px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736175874991"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561116 .tn-elem[data-elem-id="1736175874991"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736175874991"] {
    display: table;
    top: 37px;
    left: calc(50% - 480px + 383px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736175874991"] {
    display: table;
    top: 197px;
    left: calc(50% - 320px + 332px);
    width: 270px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736175874991"] {
    display: table;
    top: 428px;
    left: calc(50% - 240px + 113px);
    width: 270px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736175874991"] {
    display: table;
    top: 366px;
    left: 56px;
    width: 220px;
    height: auto;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736345728403"] {
  color: #000000;
  text-align: center;
  z-index: 6;
  top: 198px;
  left: calc(50% - 600px + 757px);
  width: 197px;
  height: 47px;
}
#rec1111561116 .tn-elem[data-elem-id="1736345728403"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561116 .tn-elem[data-elem-id="1736345728403"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111561116 .tn-elem[data-elem-id="1736345728403"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736345728403"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736345728403"] {
    display: block;
    top: 233px;
    left: calc(50% - 480px + 671px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736345728403"] {
    display: block;
    top: 402px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736345728403"] {
    display: block;
    top: 325px;
    left: calc(50% - 240px + 30px);
    width: 420px;
    height: 47px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736345728403"] {
    display: block;
    top: 307px;
    left: 30px;
    width: 261px;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736176039473"] {
  color: #ffffff;
  z-index: 7;
  top: 135px;
  left: calc(50% - 600px + 120px);
  width: 284px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736176039473"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] {
    display: table;
    top: 135px;
    left: calc(50% - 480px + 33px);
    width: 284px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] {
    display: table;
    top: 116px;
    left: calc(50% - 320px + 30px);
    width: 156px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] .tn-atom {
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] {
    display: table;
    top: 122px;
    left: calc(50% - 240px + 30px);
    width: 360px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] {
    display: table;
    top: 80px;
    left: 30px;
    width: 169px;
    height: 28px;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176039473"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736176228024"] {
  color: #eb1414;
  z-index: 8;
  top: 55px;
  left: calc(50% - 600px + 116px);
  width: 268px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736176228024"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 62px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176228024"] {
    display: table;
    top: 55px;
    left: calc(50% - 480px + 30px);
    width: 243px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176228024"] {
    display: table;
    top: 38px;
    left: calc(50% - 320px + 30px);
    width: 216px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176228024"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176228024"] {
    display: table;
    top: 44px;
    left: calc(50% - 240px + 30px);
    width: 216px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176228024"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176228024"] {
    display: table;
    top: 5px;
    left: 30px;
    height: auto;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736176312527"] {
  color: #ffffff;
  z-index: 9;
  top: 77px;
  left: calc(50% - 600px + 757px);
  width: 329px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736176312527"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] {
    display: table;
    top: 77px;
    left: calc(50% - 480px + 671px);
    width: 261px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] .tn-atom {
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] {
    display: table;
    top: 54px;
    left: calc(50% - 320px + 311px);
    width: 302px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] {
    display: table;
    top: 249px;
    left: calc(50% - 240px + 28px);
    width: 424px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] {
    display: table;
    top: 209px;
    left: 30px;
    width: 261px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736176312527"] .tn-atom {
    font-size: 13px;
    background-size: cover;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736344795785"] {
  color: #eb1414;
  z-index: 10;
  top: 191px;
  left: calc(50% - 600px + 120px);
  width: 262px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736344795785"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344795785"] {
    display: table;
    top: 191px;
    left: calc(50% - 480px + 34px);
    width: 262px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344795785"] {
    display: table;
    top: 179px;
    left: calc(50% - 320px + 30px);
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736344795785"] .tn-atom {
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344795785"] {
    display: table;
    top: 156px;
    left: calc(50% - 240px + 30px);
    width: 262px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736344795785"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344795785"] {
    display: table;
    top: 119px;
    left: 30px;
    height: auto;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736344882664"] {
  color: #ffffff;
  z-index: 11;
  top: 235px;
  left: calc(50% - 600px + 228px);
  width: 205px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736344882664"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344882664"] {
    display: table;
    top: 235px;
    left: calc(50% - 480px + 143px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344882664"] {
    display: table;
    top: 217px;
    left: calc(50% - 320px + 120px);
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736344882664"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344882664"] {
    display: table;
    top: 196px;
    left: calc(50% - 240px + 120px);
    width: 342px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736344882664"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 14px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344882664"] {
    display: table;
    top: 152px;
    left: 120px;
    width: 169px;
    height: auto;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1736344866752"] {
  color: #eb1414;
  z-index: 12;
  top: 212px;
  left: calc(50% - 600px + 118px);
  width: 108px;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1736344866752"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 62px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344866752"] {
    display: table;
    top: 212px;
    left: calc(50% - 480px + 32px);
    width: 108px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344866752"] {
    display: table;
    top: 195px;
    left: calc(50% - 320px + 30px);
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736344866752"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344866752"] {
    display: table;
    top: 173px;
    left: calc(50% - 240px + 30px);
    width: 108px;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1736344866752"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1736344866752"] {
    display: table;
    top: 134px;
    left: 30px;
    height: auto;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1750260622488"] {
  color: #000000;
  z-index: 13;
  top: 306px;
  left: calc(50% - 600px + 1116px);
  width: auto;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1750260622488"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260622488"] {
    display: table;
    top: 306px;
    left: calc(50% - 480px + 943px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260622488"] {
    display: table;
    top: 462px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260622488"] {
    display: table;
    top: 692px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1750260622488"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260622488"] {
    display: table;
    top: 580px;
    left: 304px;
    height: auto;
  }
}
#rec1111561116 .tn-elem[data-elem-id="1750260550190"] {
  color: #000000;
  z-index: 14;
  top: 31px;
  left: calc(50% - 600px + 74px);
  width: auto;
  height: auto;
}
#rec1111561116 .tn-elem[data-elem-id="1750260550190"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260550190"] {
    display: table;
    top: 32px;
    left: calc(50% - 480px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260550190"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260550190"] {
    display: table;
    top: 20px;
    left: calc(50% - 240px + 5px);
    width: auto;
    height: auto;
  }
  #rec1111561116 .tn-elem[data-elem-id="1750260550190"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561116 .tn-elem[data-elem-id="1750260550190"] {
    display: table;
    top: -1px;
    left: 5px;
    height: auto;
  }
}

/* ---- assets/inline/css/courses_index-4b96858ae5b8.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-fc2b8712271b.css ---- */
#rec1113031816 .t396__artboard {
  height: 675px;
  background-color: #000000;
}
#rec1113031816 .t396__filter {
  height: 675px;
}
#rec1113031816 .t396__carrier {
  height: 675px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .t396__artboard,
  #rec1113031816 .t396__filter,
  #rec1113031816 .t396__carrier {
    height: 613px;
  }
  #rec1113031816 .t396__filter {
  }
  #rec1113031816 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .t396__artboard,
  #rec1113031816 .t396__filter,
  #rec1113031816 .t396__carrier {
    height: 1206px;
  }
  #rec1113031816 .t396__filter {
  }
  #rec1113031816 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .t396__artboard,
  #rec1113031816 .t396__filter,
  #rec1113031816 .t396__carrier {
    height: 1743px;
  }
  #rec1113031816 .t396__filter {
  }
  #rec1113031816 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .t396__artboard,
  #rec1113031816 .t396__filter,
  #rec1113031816 .t396__carrier {
    height: 1512px;
  }
  #rec1113031816 .t396__filter {
  }
  #rec1113031816 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1747752398389"] {
  z-index: 3;
  top: 15px;
  left: calc(50% - 600px + 80px);
  width: 330px;
  height: 258px;
}
#rec1113031816 .tn-elem[data-elem-id="1747752398389"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: 4px;
    left: calc(50% - 480px + 10px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: -6px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 289px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: -64px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752398389"] {
    display: table;
    top: -15px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736239293559"] {
  z-index: 4;
  top: 181px;
  left: calc(50% - 600px + 80px);
  width: 330px;
  height: 487px;
}
#rec1113031816 .tn-elem[data-elem-id="1736239293559"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 179px;
    left: calc(50% - 480px + 10px);
    width: 280px;
    height: 423px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736239293559"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 175px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 437px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 135px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239293559"] {
    display: table;
    top: 136px;
    left: 10px;
    width: 300px;
    height: 374px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750432546988"] {
  z-index: 5;
  top: 48px;
  left: calc(50% - 600px + 80px);
  width: 330px;
  height: 620px;
}
#rec1113031816 .tn-elem[data-elem-id="1750432546988"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432546988"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 10px);
    width: 280px;
    height: 554px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432546988"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 564px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432546988"] {
    display: table;
    top: 32px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 540px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432546988"] {
    display: table;
    top: 50px;
    left: 10px;
    width: 300px;
    height: 461px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750324984696"] {
  color: #000000;
  z-index: 6;
  top: 541px;
  left: calc(50% - 600px + 199px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1750324984696"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 50px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984696"] {
    display: table;
    top: 490px;
    left: calc(50% - 480px + 104px);
    width: 93px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984696"] {
    display: table;
    top: 500px;
    left: calc(50% - 320px + 116px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984696"] {
    display: table;
    top: 464px;
    left: calc(50% - 240px + 203px);
    width: 74px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324984696"] .tn-atom {
    font-size: 40px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984696"] {
    display: table;
    top: 413px;
    left: 123px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324984696"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 40px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750324984700"] {
  color: #555555;
  z-index: 7;
  top: 506px;
  left: calc(50% - 600px + 209px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1750324984700"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #555555;
  font-size: 25px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984700"] {
    display: table;
    top: 460px;
    left: calc(50% - 480px + 114px);
    width: 72px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984700"] {
    display: table;
    top: 470px;
    left: calc(50% - 320px + 124px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984700"] {
    display: table;
    top: 434px;
    left: calc(50% - 240px + 211px);
    width: 58px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324984700"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984700"] {
    display: table;
    top: 388px;
    left: 131px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324984700"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750324984704"] {
  z-index: 8;
  top: 502px;
  left: calc(50% - 600px + 213px);
  width: 64px;
  height: 34px;
}
#rec1113031816 .tn-elem[data-elem-id="1750324984704"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984704"] {
    display: table;
    top: 456px;
    left: calc(50% - 480px + 118px);
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984704"] {
    display: table;
    top: 466px;
    left: calc(50% - 320px + 128px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984704"] {
    display: table;
    top: 430px;
    left: calc(50% - 240px + 210px);
    width: 60px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324984704"] {
    display: table;
    top: 384px;
    left: 130px;
    width: 60px;
    height: 30px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750324554615"] {
  color: #000000;
  z-index: 9;
  top: 305px;
  left: calc(50% - 600px + 150px);
  width: 230px;
  height: 168px;
}
#rec1113031816 .tn-elem[data-elem-id="1750324554615"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] {
    display: table;
    top: 294px;
    left: calc(50% - 480px + 56px);
    width: 216px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] .tn-atom {
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] {
    display: table;
    top: 286px;
    left: calc(50% - 320px + 60px);
    width: 220px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] {
    display: table;
    top: 271px;
    left: calc(50% - 240px + 95px);
    width: 255px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] {
    display: table;
    top: 259px;
    left: 66px;
    width: 215px;
    height: 120px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750324554615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1735309006964"] {
  color: #000000;
  z-index: 10;
  top: 228px;
  left: calc(50% - 600px + 120px);
  width: 290px;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + 30px);
    width: 259px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 213px;
    left: calc(50% - 320px + 30px);
    width: 267px;
    height: 62px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 221px;
    left: calc(50% - 240px + 70px);
    width: 300px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] {
    display: table;
    top: 201px;
    left: 40px;
    width: 210px;
    height: 48px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309006964"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1735309849618"] {
  color: #000000;
  z-index: 11;
  top: 187px;
  left: calc(50% - 600px + 120px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1735309849618"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 20px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 203px;
    left: calc(50% - 480px + 30px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 172px;
    left: calc(50% - 320px + 31px);
    width: 156px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 180px;
    left: calc(50% - 240px + 70px);
    width: 156px;
    height: 31px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 0;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] {
    display: table;
    top: 165px;
    left: 40px;
    width: 156px;
    height: 31px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309849618"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736236837914"] {
  color: #000000;
  z-index: 12;
  top: 82px;
  left: calc(50% - 600px + 120px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 100px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 98px;
    left: calc(50% - 480px + 30px);
    width: 87px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 80px;
    left: calc(50% - 320px + 30px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 80px;
    left: calc(50% - 240px + 70px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] {
    display: table;
    top: 65px;
    left: 40px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736236837914"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750336101356"] {
  z-index: 14;
  top: 441px;
  left: calc(50% - 600px + 120px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750336101356"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336101356"] {
    display: table;
    top: 423px;
    left: calc(50% - 480px + 26px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336101356"] {
    display: table;
    top: 407px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336101356"] {
    display: table;
    top: 396px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336101356"] {
    display: table;
    top: 352px;
    left: 41px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750336091988"] {
  z-index: 15;
  top: 412px;
  left: calc(50% - 600px + 120px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750336091988"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336091988"] {
    display: table;
    top: 394px;
    left: calc(50% - 480px + 26px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336091988"] {
    display: table;
    top: 381px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336091988"] {
    display: table;
    top: 367px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336091988"] {
    display: table;
    top: 332px;
    left: 41px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750336067663"] {
  z-index: 16;
  top: 372px;
  left: calc(50% - 600px + 120px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750336067663"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336067663"] {
    display: table;
    top: 357px;
    left: calc(50% - 480px + 26px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336067663"] {
    display: table;
    top: 353px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336067663"] {
    display: table;
    top: 340px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750336067663"] {
    display: table;
    top: 311px;
    left: 41px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750335986813"] {
  z-index: 17;
  top: 335px;
  left: calc(50% - 600px + 120px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750335986813"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335986813"] {
    display: table;
    top: 317px;
    left: calc(50% - 480px + 26px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335986813"] {
    display: table;
    top: 315px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335986813"] {
    display: table;
    top: 297px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335986813"] {
    display: table;
    top: 281px;
    left: 41px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750335831375"] {
  z-index: 18;
  top: 303px;
  left: calc(50% - 600px + 120px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750335831375"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335831375"] {
    display: table;
    top: 291px;
    left: calc(50% - 480px + 26px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335831375"] {
    display: table;
    top: 290px;
    left: calc(50% - 320px + 30px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335831375"] {
    display: table;
    top: 271px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750335831375"] {
    display: table;
    top: 262px;
    left: 41px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1747900997963"] {
  z-index: 20;
  top: 601px;
  left: calc(50% - 600px + 115px);
  width: 260px;
  height: 47px;
}
#rec1113031816 .tn-elem[data-elem-id="1747900997963"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #fcfcfc;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 545px;
    left: calc(50% - 480px + 20px);
    width: 260px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 555px;
    left: calc(50% - 320px + 30px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 515px;
    left: calc(50% - 240px + 20px);
    width: 440px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1747900997963"] {
    display: table;
    top: 464px;
    left: 20px;
    width: 280px;
    height: 37px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1735311801781"] {
  color: #ffffff;
  text-align: center;
  z-index: 21;
  top: 601px;
  left: calc(50% - 600px + 115px);
  width: 260px;
  height: 47px;
}
#rec1113031816 .tn-elem[data-elem-id="1735311801781"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0.3s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1113031816 .tn-elem[data-elem-id="1735311801781"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1113031816 .tn-elem[data-elem-id="1735311801781"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735311801781"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 545px;
    left: calc(50% - 480px + 20px);
    width: 260px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 555px;
    left: calc(50% - 320px + 30px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 515px;
    left: calc(50% - 240px + 20px);
    width: 440px;
    height: 47px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1735311801781"] {
    display: block;
    top: 464px;
    left: 20px;
    width: 280px;
    height: 37px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736239417419"] {
  z-index: 22;
  top: 181px;
  left: calc(50% - 600px + 435px);
  width: 330px;
  height: 487px;
}
#rec1113031816 .tn-elem[data-elem-id="1736239417419"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 179px;
    left: calc(50% - 480px + 340px);
    width: 280px;
    height: 423px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736239417419"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 175px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 437px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 713px;
    left: calc(50% - 240px + 11px);
    width: 460px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239417419"] {
    display: table;
    top: 617px;
    left: 10px;
    width: 300px;
    height: 386px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1747752573499"] {
  z-index: 23;
  top: 15px;
  left: calc(50% - 600px + 435px);
  width: 330px;
  height: 258px;
}
#rec1113031816 .tn-elem[data-elem-id="1747752573499"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: 4px;
    left: calc(50% - 480px + 340px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: -6px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: 514px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752573499"] {
    display: table;
    top: 466px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750432676934"] {
  z-index: 24;
  top: 48px;
  left: calc(50% - 600px + 435px);
  width: 330px;
  height: 620px;
}
#rec1113031816 .tn-elem[data-elem-id="1750432676934"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432676934"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 340px);
    width: 280px;
    height: 554px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432676934"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 564px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432676934"] {
    display: table;
    top: 612px;
    left: calc(50% - 240px + 10px);
    width: 461px;
    height: 540px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432676934"] {
    display: table;
    top: 531px;
    left: 10px;
    width: 300px;
    height: 472px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1747752581807"] {
  z-index: 25;
  top: 15px;
  left: calc(50% - 600px + 790px);
  width: 330px;
  height: 258px;
}
#rec1113031816 .tn-elem[data-elem-id="1747752581807"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 4px;
    left: calc(50% - 480px + 670px);
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 576px;
    left: calc(50% - 320px + 170px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 1093px;
    left: calc(50% - 240px + 11px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1747752581807"] {
    display: table;
    top: 958px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750325802776"] {
  color: #000000;
  z-index: 26;
  top: 541px;
  left: calc(50% - 600px + 517px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1750325802776"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 50px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] {
    display: table;
    top: 490px;
    left: calc(50% - 480px + 394px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] {
    display: table;
    top: 500px;
    left: calc(50% - 320px + 398px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] {
    display: table;
    top: 1043px;
    left: calc(50% - 240px + 176px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 40px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] {
    display: table;
    top: 906px;
    left: 95px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325802776"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 40px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750325802767"] {
  color: #555555;
  z-index: 27;
  top: 506px;
  left: calc(50% - 600px + 551px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1750325802767"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #555555;
  font-size: 25px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802767"] {
    display: table;
    top: 460px;
    left: calc(50% - 480px + 436px);
    width: 98px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802767"] {
    display: table;
    top: 470px;
    left: calc(50% - 320px + 435px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802767"] {
    display: table;
    top: 1013px;
    left: calc(50% - 240px + 192px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325802767"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802767"] {
    display: table;
    top: 876px;
    left: 121px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325802767"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750325802771"] {
  z-index: 28;
  top: 502px;
  left: calc(50% - 600px + 568px);
  width: 64px;
  height: 34px;
}
#rec1113031816 .tn-elem[data-elem-id="1750325802771"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802771"] {
    display: table;
    top: 456px;
    left: calc(50% - 480px + 448px);
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802771"] {
    display: table;
    top: 454px;
    left: calc(50% - 320px + 452px);
    width: 64px;
    height: 56px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802771"] {
    display: table;
    top: 1010px;
    left: calc(50% - 240px + 205px);
    width: 60px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325802771"] {
    display: table;
    top: 872px;
    left: 130px;
    width: 60px;
    height: 30px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750325546310"] {
  color: #000000;
  z-index: 29;
  top: 290px;
  left: calc(50% - 600px + 505px);
  width: 216px;
  height: 196px;
}
#rec1113031816 .tn-elem[data-elem-id="1750325546310"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] {
    display: table;
    top: 292px;
    left: calc(50% - 480px + 410px);
    width: 165px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] .tn-atom {
    font-size: 11px;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] {
    display: table;
    top: 286px;
    left: calc(50% - 320px + 392px);
    width: 220px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] {
    display: table;
    top: 811px;
    left: calc(50% - 240px + 90px);
    width: 257px;
    height: 180px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1.3;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] {
    display: table;
    top: 730px;
    left: 65px;
    width: 194px;
    height: 130px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750325546310"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1735309135900"] {
  color: #000000;
  z-index: 30;
  top: 228px;
  left: calc(50% - 600px + 475px);
  width: 255px;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + 360px);
    width: 231px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 213px;
    left: calc(50% - 320px + 362px);
    width: 238px;
    height: 62px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 765px;
    left: calc(50% - 240px + 70px);
    width: 282px;
    height: 36px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1.25;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] {
    display: table;
    top: 675px;
    left: 40px;
    width: 210px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735309135900"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736237354228"] {
  color: #000000;
  z-index: 31;
  top: 187px;
  left: calc(50% - 600px + 475px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1736237354228"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 20px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 203px;
    left: calc(50% - 480px + 360px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] {
    text-align: left;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 172px;
    left: calc(50% - 320px + 362px);
    width: 116px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 740px;
    left: calc(50% - 240px + 70px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] {
    display: table;
    top: 645px;
    left: 40px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237354228"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736237289253"] {
  color: #000000;
  z-index: 32;
  top: 82px;
  left: calc(50% - 600px + 475px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 100px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 98px;
    left: calc(50% - 480px + 360px);
    width: 87px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 80px;
    left: calc(50% - 320px + 362px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 640px;
    left: calc(50% - 240px + 70px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] {
    display: table;
    top: 545px;
    left: 40px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237289253"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337102730"] {
  z-index: 34;
  top: 460px;
  left: calc(50% - 600px + 475px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337102730"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102730"] {
    display: table;
    top: 429px;
    left: calc(50% - 480px + 380px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102730"] {
    display: table;
    top: 394px;
    left: calc(50% - 320px + 362px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102730"] {
    display: table;
    top: 951px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102730"] {
    display: table;
    top: 838px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337102781"] {
  z-index: 35;
  top: 410px;
  left: calc(50% - 600px + 475px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337102781"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102781"] {
    display: table;
    top: 397px;
    left: calc(50% - 480px + 380px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102781"] {
    display: table;
    top: 361px;
    left: calc(50% - 320px + 362px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102781"] {
    display: table;
    top: 912px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102781"] {
    display: table;
    top: 809px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337102832"] {
  z-index: 36;
  top: 370px;
  left: calc(50% - 600px + 475px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337102832"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102832"] {
    display: table;
    top: 354px;
    left: calc(50% - 480px + 380px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102832"] {
    display: table;
    top: 329px;
    left: calc(50% - 320px + 362px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102832"] {
    display: table;
    top: 874px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102832"] {
    display: table;
    top: 779px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337102878"] {
  z-index: 37;
  top: 330px;
  left: calc(50% - 600px + 475px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337102878"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102878"] {
    display: table;
    top: 320px;
    left: calc(50% - 480px + 380px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102878"] {
    display: table;
    top: 307px;
    left: calc(50% - 320px + 362px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102878"] {
    display: table;
    top: 847px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102878"] {
    display: table;
    top: 758px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337102925"] {
  z-index: 38;
  top: 290px;
  left: calc(50% - 600px + 475px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337102925"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102925"] {
    display: table;
    top: 288px;
    left: calc(50% - 480px + 380px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102925"] {
    display: table;
    top: 285px;
    left: calc(50% - 320px + 362px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102925"] {
    display: table;
    top: 822px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337102925"] {
    display: table;
    top: 728px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326027458"] {
  z-index: 40;
  top: 601px;
  left: calc(50% - 600px + 470px);
  width: 260px;
  height: 47px;
}
#rec1113031816 .tn-elem[data-elem-id="1750326027458"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027458"] {
    display: table;
    top: 545px;
    left: calc(50% - 480px + 350px);
    width: 260px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027458"] {
    display: table;
    top: 555px;
    left: calc(50% - 320px + 350px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027458"] {
    display: table;
    top: 1093px;
    left: calc(50% - 240px + 21px);
    width: 440px;
    height: 47px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027458"] {
    display: table;
    top: 956px;
    left: 20px;
    width: 280px;
    height: 37px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326027522"] {
  color: #ffffff;
  text-align: center;
  z-index: 41;
  top: 601px;
  left: calc(50% - 600px + 470px);
  width: 260px;
  height: 47px;
}
@media (min-width: 1200px) {
  #rec1113031816
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1750326027522"] {
    opacity: 0;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326027522"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0.3s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1113031816 .tn-elem[data-elem-id="1750326027522"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027522"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326027522"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027522"] {
    display: block;
    top: 545px;
    left: calc(50% - 480px + 350px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027522"] {
    display: block;
    top: 555px;
    left: calc(50% - 320px + 350px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027522"] {
    display: block;
    top: 1093px;
    left: calc(50% - 240px + 21px);
    width: 440px;
    height: 47px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326027522"] {
    display: block;
    top: 955px;
    left: 20px;
    width: 280px;
    height: 37px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736239428204"] {
  z-index: 42;
  top: 181px;
  left: calc(50% - 600px + 790px);
  width: 330px;
  height: 487px;
}
#rec1113031816 .tn-elem[data-elem-id="1736239428204"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 179px;
    left: calc(50% - 480px + 670px);
    width: 280px;
    height: 423px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736239428204"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 766px;
    left: calc(50% - 320px + 170px);
    width: 300px;
    height: 437px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 1292px;
    left: calc(50% - 240px + 11px);
    width: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736239428204"] {
    display: table;
    top: 1123px;
    left: 10px;
    width: 300px;
    height: 389px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750432707392"] {
  z-index: 43;
  top: 48px;
  left: calc(50% - 600px + 790px);
  width: 330px;
  height: 620px;
}
#rec1113031816 .tn-elem[data-elem-id="1750432707392"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432707392"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 670px);
    width: 280px;
    height: 554px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432707392"] {
    display: table;
    top: 632px;
    left: calc(50% - 320px + 170px);
    width: 300px;
    height: 571px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432707392"] {
    display: table;
    top: 1192px;
    left: calc(50% - 240px + 10px);
    width: 461px;
    height: 540px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750432707392"] {
    display: table;
    top: 1023px;
    left: 10px;
    width: 300px;
    height: 491px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326815153"] {
  color: #000000;
  z-index: 44;
  top: 541px;
  left: calc(50% - 600px + 857px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1750326815153"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 50px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] {
    display: table;
    top: 495px;
    left: calc(50% - 480px + 735px);
    width: 155px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] .tn-atom {
    font-size: 40px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] {
    display: table;
    top: 1104px;
    left: calc(50% - 320px + 249px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] {
    display: table;
    top: 1622px;
    left: calc(50% - 240px + 164px);
    width: 155px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] {
    display: table;
    top: 1414px;
    left: 82px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326815153"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 40px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326815160"] {
  color: #555555;
  z-index: 45;
  top: 506px;
  left: calc(50% - 600px + 906px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1750326815160"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #555555;
  font-size: 25px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] {
    display: table;
    top: 465px;
    left: calc(50% - 480px + 756px);
    width: 98px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] {
    display: table;
    top: 1074px;
    left: calc(50% - 320px + 271px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] {
    display: table;
    top: 1592px;
    left: calc(50% - 240px + 202px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] {
    display: table;
    top: 1384px;
    left: 121px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326815160"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326815163"] {
  z-index: 46;
  top: 502px;
  left: calc(50% - 600px + 923px);
  width: 64px;
  height: 34px;
}
#rec1113031816 .tn-elem[data-elem-id="1750326815163"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815163"] {
    display: table;
    top: 461px;
    left: calc(50% - 480px + 771px);
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815163"] {
    display: table;
    top: 1071px;
    left: calc(50% - 320px + 285px);
    width: 64px;
    height: 34px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815163"] {
    display: table;
    top: 1587px;
    left: calc(50% - 240px + 210px);
    width: 60px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326815163"] {
    display: table;
    top: 1379px;
    left: 130px;
    width: 60px;
    height: 30px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326299156"] {
  color: #000000;
  z-index: 47;
  top: 288px;
  left: calc(50% - 600px + 861px);
  width: 220px;
  height: 196px;
}
#rec1113031816 .tn-elem[data-elem-id="1750326299156"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] {
    display: table;
    top: 290px;
    left: calc(50% - 480px + 740px);
    width: 190px;
    height: 161px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 11px;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] {
    display: table;
    top: 868px;
    left: calc(50% - 320px + 220px);
    width: 226px;
    height: 182px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] {
    display: table;
    top: 1395px;
    left: calc(50% - 240px + 90px);
    width: 303px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] .tn-atom {
    font-size: 10px;
    line-height: 1.3;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] {
    display: table;
    top: 1231px;
    left: 65px;
    width: 210px;
    height: 140px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326299156"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736237970522"] {
  color: #000000;
  z-index: 48;
  top: 228px;
  left: calc(50% - 600px + 830px);
  width: 254px;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + 690px);
    width: 264px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 806px;
    left: calc(50% - 320px + 192px);
    width: 264px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 1349px;
    left: calc(50% - 240px + 70px);
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] {
    display: table;
    top: 1184px;
    left: 40px;
    width: 210px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237970522"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736237506627"] {
  color: #000000;
  z-index: 49;
  top: 187px;
  left: calc(50% - 600px + 830px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 20px;
  font-family: "BATMAN", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 203px;
    left: calc(50% - 480px + 690px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 765px;
    left: calc(50% - 320px + 192px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 1324px;
    left: calc(50% - 240px + 70px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] {
    display: table;
    top: 1154px;
    left: 40px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237506627"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1736237473197"] {
  color: #000000;
  z-index: 50;
  top: 82px;
  left: calc(50% - 600px + 830px);
  width: auto;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #000000;
  font-size: 100px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 98px;
    left: calc(50% - 480px + 690px);
    width: 87px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 673px;
    left: calc(50% - 320px + 192px);
    width: 87px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 1224px;
    left: calc(50% - 240px + 70px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] {
    display: table;
    top: 1053px;
    left: 40px;
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1736237473197"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337134394"] {
  z-index: 52;
  top: 460px;
  left: calc(50% - 600px + 831px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337134394"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134394"] {
    display: table;
    top: 421px;
    left: calc(50% - 480px + 710px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134394"] {
    display: table;
    top: 1020px;
    left: calc(50% - 320px + 190px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134394"] {
    display: table;
    top: 1550px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134394"] {
    display: table;
    top: 1349px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337134461"] {
  z-index: 53;
  top: 410px;
  left: calc(50% - 600px + 831px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337134461"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134461"] {
    display: table;
    top: 388px;
    left: calc(50% - 480px + 710px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134461"] {
    display: table;
    top: 981px;
    left: calc(50% - 320px + 190px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134461"] {
    display: table;
    top: 1524px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134461"] {
    display: table;
    top: 1319px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337134510"] {
  z-index: 54;
  top: 370px;
  left: calc(50% - 600px + 831px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337134510"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134510"] {
    display: table;
    top: 354px;
    left: calc(50% - 480px + 710px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134510"] {
    display: table;
    top: 941px;
    left: calc(50% - 320px + 190px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134510"] {
    display: table;
    top: 1484px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134510"] {
    display: table;
    top: 1289px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337134560"] {
  z-index: 55;
  top: 330px;
  left: calc(50% - 600px + 831px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337134560"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134560"] {
    display: table;
    top: 322px;
    left: calc(50% - 480px + 710px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134560"] {
    display: table;
    top: 903px;
    left: calc(50% - 320px + 190px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134560"] {
    display: table;
    top: 1447px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134560"] {
    display: table;
    top: 1259px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750337134609"] {
  z-index: 56;
  top: 290px;
  left: calc(50% - 600px + 831px);
  width: 20px;
  height: 20px;
}
#rec1113031816 .tn-elem[data-elem-id="1750337134609"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134609"] {
    display: table;
    top: 289px;
    left: calc(50% - 480px + 710px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134609"] {
    display: table;
    top: 865px;
    left: calc(50% - 320px + 190px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134609"] {
    display: table;
    top: 1407px;
    left: calc(50% - 240px + 70px);
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750337134609"] {
    display: table;
    top: 1230px;
    left: 40px;
    width: 15px;
    height: 15px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326727284"] {
  z-index: 58;
  top: 601px;
  left: calc(50% - 600px + 825px);
  width: 260px;
  height: 47px;
}
#rec1113031816 .tn-elem[data-elem-id="1750326727284"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727284"] {
    display: table;
    top: 545px;
    left: calc(50% - 480px + 680px);
    width: 260px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727284"] {
    display: table;
    top: 1149px;
    left: calc(50% - 320px + 190px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727284"] {
    display: table;
    top: 1672px;
    left: calc(50% - 240px + 21px);
    width: 440px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727284"] {
    display: table;
    top: 1467px;
    left: 20px;
    width: 280px;
    height: 37px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1750326727333"] {
  color: #ffffff;
  text-align: center;
  z-index: 59;
  top: 601px;
  left: calc(50% - 600px + 825px);
  width: 260px;
  height: 47px;
}
#rec1113031816 .tn-elem[data-elem-id="1750326727333"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 0px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0.3s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1113031816 .tn-elem[data-elem-id="1750326727333"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727333"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1113031816 .tn-elem[data-elem-id="1750326727333"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727333"] {
    display: block;
    top: 545px;
    left: calc(50% - 480px + 680px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727333"] {
    display: block;
    top: 1149px;
    left: calc(50% - 320px + 190px);
    width: 260px;
    height: 47px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727333"] {
    display: block;
    top: 1672px;
    left: calc(50% - 240px + 21px);
    width: 440px;
    height: 47px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1750326727333"] {
    display: block;
    top: 1467px;
    left: 20px;
    width: 280px;
    height: 37px;
  }
}
#rec1113031816 .tn-elem[data-elem-id="1735301968063"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 200, 200, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 60;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 726px;
  height: auto;
}
#rec1113031816 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(201, 200, 200, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + 36px);
    width: auto;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + 13px);
    width: 455px;
    height: auto;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    font-size: 16px;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 300px;
    height: 30px;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] {
    text-align: left;
  }
  #rec1113031816 .tn-elem[data-elem-id="1735301968063"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/courses_index-1850db62a763.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-bdec5e794297.css ---- */
#rec1111561146 .t396__artboard {
  height: 280px;
  background-color: #000000;
}
#rec1111561146 .t396__filter {
  height: 280px;
}
#rec1111561146 .t396__carrier {
  height: 280px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .t396__artboard,
  #rec1111561146 .t396__filter,
  #rec1111561146 .t396__carrier {
    height: 284px;
  }
  #rec1111561146 .t396__filter {
  }
  #rec1111561146 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .t396__artboard,
  #rec1111561146 .t396__filter,
  #rec1111561146 .t396__carrier {
    height: 610px;
  }
  #rec1111561146 .t396__filter {
  }
  #rec1111561146 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .t396__artboard,
  #rec1111561146 .t396__filter,
  #rec1111561146 .t396__carrier {
    height: 1054px;
  }
  #rec1111561146 .t396__filter {
  }
  #rec1111561146 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .t396__artboard,
  #rec1111561146 .t396__filter,
  #rec1111561146 .t396__carrier {
    height: 1076px;
  }
  #rec1111561146 .t396__filter {
  }
  #rec1111561146 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002089"] {
  z-index: 3;
  top: 50px;
  left: calc(50% - 600px + 80px);
  width: 231px;
  height: 224px;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002089"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002089"] {
    display: table;
    top: 54px;
    left: calc(50% - 480px + 10px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002089"] {
    display: table;
    top: 54px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 264px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002089"] {
    display: table;
    top: 54px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 230px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002089"] {
    display: table;
    top: 35px;
    left: 10px;
    width: 300px;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734625757337"] {
  z-index: 4;
  top: 65px;
  left: calc(50% - 600px + 165px);
  width: 60px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734625757337"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561146 .tn-elem[data-elem-id="1734625757337"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
  filter: hue-rotate(285deg) saturate(850%) brightness(0.92) contrast(1.03);
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734625757337"] {
    display: table;
    top: 69px;
    left: calc(50% - 480px + 95px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734625757337"] {
    display: table;
    top: 74px;
    left: calc(50% - 320px + 130px);
    width: 60px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734625757337"] .tn-atom {
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734625757337"] {
    display: table;
    top: 84px;
    left: calc(50% - 240px + 210px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734625757337"] {
    display: table;
    top: 50px;
    left: 130px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002149"] {
  color: #a5a5a5;
  z-index: 5;
  top: 198px;
  left: calc(50% - 600px + 90px);
  width: 211px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002149"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002149"] {
    display: table;
    top: 202px;
    left: calc(50% - 480px + 22px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002149"] {
    display: table;
    top: 221px;
    left: calc(50% - 320px + 48px);
    width: 224px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002149"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002149"] {
    display: table;
    top: 216px;
    left: calc(50% - 240px + 80px);
    width: 321px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002149"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002149"] {
    display: table;
    top: 177px;
    left: 48px;
    width: 244px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002155"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 142px;
  left: calc(50% - 600px + 110px);
  width: 172px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002155"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002155"] {
    display: table;
    top: 146px;
    left: calc(50% - 480px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002155"] {
    display: table;
    top: 169px;
    left: calc(50% - 320px + 49px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002155"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002155"] {
    display: table;
    top: 174px;
    left: calc(50% - 240px + 125px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002155"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002155"] {
    display: table;
    top: 135px;
    left: 48px;
    width: 230px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427808698"] {
  color: #ffffff;
  z-index: 7;
  top: 267px;
  left: calc(50% - 600px + 304px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427808698"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427808698"] {
    display: table;
    top: 271px;
    left: calc(50% - 480px + 234px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427808698"] {
    display: table;
    top: 311px;
    left: calc(50% - 320px + 303px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427808698"] {
    display: table;
    top: 277px;
    left: calc(50% - 240px + 463px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427808698"] {
    display: table;
    top: 258px;
    left: 303px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427622726"] {
  color: #ffffff;
  z-index: 8;
  top: 44px;
  left: calc(50% - 600px + 74px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427622726"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427622726"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427622726"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427622726"] {
    display: table;
    top: 48px;
    left: calc(50% - 240px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427622726"] {
    display: table;
    top: 29px;
    left: 5px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002096"] {
  z-index: 9;
  top: 50px;
  left: calc(50% - 600px + 351px);
  width: 231px;
  height: 224px;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002096"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002096"] {
    display: table;
    top: 54px;
    left: calc(50% - 480px + 251px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002096"] {
    display: table;
    top: 54px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 264px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002096"] {
    display: table;
    top: 304px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 230px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002096"] {
    display: table;
    top: 285px;
    left: 10px;
    width: 300px;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002121"] {
  z-index: 10;
  top: 65px;
  left: calc(50% - 600px + 436px);
  width: 60px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002121"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002121"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
  filter: hue-rotate(285deg) saturate(850%) brightness(0.92) contrast(1.03);
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002121"] {
    display: table;
    top: 69px;
    left: calc(50% - 480px + 336px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002121"] {
    display: table;
    top: 74px;
    left: calc(50% - 320px + 450px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002121"] {
    display: table;
    top: 334px;
    left: calc(50% - 240px + 210px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002121"] {
    display: table;
    top: 300px;
    left: 130px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002162"] {
  color: #ffffff;
  text-align: center;
  z-index: 11;
  top: 142px;
  left: calc(50% - 600px + 378px);
  width: 177px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002162"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002162"] {
    display: table;
    top: 146px;
    left: calc(50% - 480px + 278px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002162"] {
    display: table;
    top: 169px;
    left: calc(50% - 320px + 365px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002162"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002162"] {
    display: table;
    top: 424px;
    left: calc(50% - 240px + 132px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002162"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002162"] {
    display: table;
    top: 385px;
    left: 48px;
    width: 216px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002177"] {
  color: #a5a5a5;
  z-index: 12;
  top: 198px;
  left: calc(50% - 600px + 362px);
  width: 210px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002177"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] {
    display: table;
    top: 202px;
    left: calc(50% - 480px + 262px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] {
    display: table;
    top: 221px;
    left: calc(50% - 320px + 368px);
    width: 224px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] {
    display: table;
    top: 466px;
    left: calc(50% - 240px + 80px);
    width: 320px;
    height: 36px;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] {
    display: table;
    top: 427px;
    left: 48px;
    width: 244px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002177"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427856355"] {
  color: #ffffff;
  z-index: 13;
  top: 267px;
  left: calc(50% - 600px + 576px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427856355"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427856355"] {
    display: table;
    top: 271px;
    left: calc(50% - 480px + 475px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427856355"] {
    display: table;
    top: 311px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427856355"] {
    display: table;
    top: 527px;
    left: calc(50% - 240px + 463px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427856355"] {
    display: table;
    top: 508px;
    left: 303px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427840674"] {
  color: #ffffff;
  z-index: 14;
  top: 44px;
  left: calc(50% - 600px + 346px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427840674"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427840674"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 245px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427840674"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 325px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427840674"] {
    display: table;
    top: 298px;
    left: calc(50% - 240px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427840674"] {
    display: table;
    top: 279px;
    left: 5px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1750427840674"] .tn-atom {
    line-height: 0.6;
    background-size: cover;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002104"] {
  z-index: 15;
  top: 50px;
  left: calc(50% - 600px + 619px);
  width: 231px;
  height: 224px;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002104"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002104"] {
    display: table;
    top: 54px;
    left: calc(50% - 480px + 492px);
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002104"] {
    display: table;
    top: 338px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 267px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002104"] {
    display: table;
    top: 554px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 245px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002104"] {
    display: table;
    top: 535px;
    left: 10px;
    width: 300px;
    height: 265px;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002135"] {
  z-index: 16;
  top: 65px;
  left: calc(50% - 600px + 704px);
  width: 60px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002135"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002135"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
  filter: hue-rotate(285deg) saturate(850%) brightness(0.92) contrast(1.03);
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002135"] {
    display: table;
    top: 69px;
    left: calc(50% - 480px + 577px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002135"] {
    display: table;
    top: 360px;
    left: calc(50% - 320px + 130px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002135"] {
    display: table;
    top: 584px;
    left: calc(50% - 240px + 210px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002135"] {
    display: table;
    top: 550px;
    left: 130px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002172"] {
  color: #ffffff;
  text-align: center;
  z-index: 17;
  top: 142px;
  left: calc(50% - 600px + 644px);
  width: 182px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002172"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002172"] {
    display: table;
    top: 146px;
    left: calc(50% - 480px + 517px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002172"] {
    display: table;
    top: 455px;
    left: calc(50% - 320px + 42px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002172"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002172"] {
    display: table;
    top: 674px;
    left: calc(50% - 240px + 131px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002172"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002172"] {
    display: table;
    top: 635px;
    left: 48px;
    width: 219px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002190"] {
  color: #a5a5a5;
  z-index: 18;
  top: 198px;
  left: calc(50% - 600px + 626px);
  width: 217px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002190"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] {
    display: table;
    top: 202px;
    left: calc(50% - 480px + 501px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] {
    display: table;
    top: 507px;
    left: calc(50% - 320px + 48px);
    width: 224px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] {
    display: table;
    top: 716px;
    left: calc(50% - 240px + 80px);
    width: 320px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] {
    display: table;
    top: 677px;
    left: 48px;
    width: 240px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002190"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427885191"] {
  color: #ffffff;
  z-index: 19;
  top: 267px;
  left: calc(50% - 600px + 844px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427885191"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885191"] {
    display: table;
    top: 271px;
    left: calc(50% - 480px + 716px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885191"] {
    display: table;
    top: 598px;
    left: calc(50% - 320px + 303px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885191"] {
    display: table;
    top: 792px;
    left: calc(50% - 240px + 463px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885191"] {
    display: table;
    top: 793px;
    left: 303px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427885198"] {
  color: #ffffff;
  z-index: 20;
  top: 44px;
  left: calc(50% - 600px + 614px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427885198"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885198"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 486px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885198"] {
    display: table;
    top: 332px;
    left: calc(50% - 320px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885198"] {
    display: table;
    top: 548px;
    left: calc(50% - 240px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427885198"] {
    display: table;
    top: 529px;
    left: 5px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002080"] {
  z-index: 21;
  top: 50px;
  left: calc(50% - 600px + 889px);
  width: 231px;
  height: 224px;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002080"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002080"] {
    display: table;
    top: 54px;
    left: calc(50% - 480px + 732px);
    width: 218px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002080"] {
    display: table;
    top: 338px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 267px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002080"] {
    display: table;
    top: 819px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 230px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002080"] {
    display: table;
    top: 820px;
    left: 10px;
    width: 300px;
    height: 249px;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002167"] {
  color: #a5a5a5;
  z-index: 22;
  top: 198px;
  left: calc(50% - 600px + 898px);
  width: 213px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002167"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] {
    display: table;
    top: 200px;
    left: calc(50% - 480px + 742px);
    width: 198px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] {
    display: table;
    top: 507px;
    left: calc(50% - 320px + 368px);
    width: 224px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 11px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] {
    display: table;
    top: 981px;
    left: calc(50% - 240px + 80px);
    width: 320px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] {
    display: table;
    top: 962px;
    left: 48px;
    width: 240px;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002167"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002185"] {
  color: #ffffff;
  text-align: center;
  z-index: 23;
  top: 142px;
  left: calc(50% - 600px + 915px);
  width: 179px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002185"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002185"] {
    display: table;
    top: 147px;
    left: calc(50% - 480px + 752px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002185"] {
    display: table;
    top: 455px;
    left: calc(50% - 320px + 357px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002185"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002185"] {
    display: table;
    top: 939px;
    left: calc(50% - 240px + 110px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734434002185"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002185"] {
    display: table;
    top: 920px;
    left: 48px;
    width: 230px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734434002142"] {
  z-index: 24;
  top: 65px;
  left: calc(50% - 600px + 974px);
  width: 60px;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002142"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561146 .tn-elem[data-elem-id="1734434002142"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
  filter: hue-rotate(285deg) saturate(850%) brightness(0.92) contrast(1.03);
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002142"] {
    display: table;
    top: 69px;
    left: calc(50% - 480px + 811px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002142"] {
    display: table;
    top: 360px;
    left: calc(50% - 320px + 450px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002142"] {
    display: table;
    top: 849px;
    left: calc(50% - 240px + 210px);
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734434002142"] {
    display: table;
    top: 835px;
    left: 130px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427900680"] {
  color: #ffffff;
  z-index: 25;
  top: 267px;
  left: calc(50% - 600px + 1114px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427900680"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900680"] {
    display: table;
    top: 271px;
    left: calc(50% - 480px + 943px);
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1750427900680"] .tn-atom {
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900680"] {
    display: table;
    top: 598px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900680"] {
    display: table;
    top: 1042px;
    left: calc(50% - 240px + 463px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900680"] {
    display: table;
    top: 1062px;
    left: 303px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1750427900687"] {
  color: #ffffff;
  z-index: 26;
  top: 44px;
  left: calc(50% - 600px + 884px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1750427900687"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900687"] {
    display: table;
    top: 48px;
    left: calc(50% - 480px + 726px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900687"] {
    display: table;
    top: 332px;
    left: calc(50% - 320px + 325px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900687"] {
    display: table;
    top: 813px;
    left: calc(50% - 240px + 5px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1750427900687"] {
    display: table;
    top: 814px;
    left: 5px;
    height: auto;
  }
}
#rec1111561146 .tn-elem[data-elem-id="1734431075126"] {
  color: #ffffff;
  z-index: 27;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1111561146 .tn-elem[data-elem-id="1734431075126"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] {
    display: table;
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] {
    display: table;
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] {
    display: table;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1111561146 .tn-elem[data-elem-id="1734431075126"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/courses_index-4ac68b8a66ed.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-869ba866b9b6.css ---- */
#rec1111561156 .t396__artboard {
  height: 120px;
  background-color: #000000;
}
#rec1111561156 .t396__filter {
  height: 120px;
}
#rec1111561156 .t396__carrier {
  height: 120px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .t396__artboard,
  #rec1111561156 .t396__filter,
  #rec1111561156 .t396__carrier {
    height: 110px;
  }
  #rec1111561156 .t396__filter {
  }
  #rec1111561156 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .t396__artboard,
  #rec1111561156 .t396__filter,
  #rec1111561156 .t396__carrier {
    height: 92px;
  }
  #rec1111561156 .t396__filter {
  }
  #rec1111561156 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .t396__artboard,
  #rec1111561156 .t396__filter,
  #rec1111561156 .t396__carrier {
    height: 81px;
  }
  #rec1111561156 .t396__filter {
  }
  #rec1111561156 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .t396__artboard,
  #rec1111561156 .t396__filter,
  #rec1111561156 .t396__carrier {
    height: 411px;
  }
  #rec1111561156 .t396__filter {
  }
  #rec1111561156 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734612570803"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 54px;
  left: calc(50% - 600px + 79px);
  width: 231px;
  height: 61px;
}
#rec1111561156 .tn-elem[data-elem-id="1734612570803"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734612570803"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111561156 .tn-elem[data-elem-id="1734612570803"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734612570803"] {
    display: block;
    top: 56px;
    left: calc(50% - 480px + 10px);
    width: 179px;
    height: 47px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734612570803"] {
    display: block;
    top: 52px;
    left: calc(50% - 320px + 10px);
    width: 131px;
    height: 34px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734612570803"] {
    display: block;
    top: 46px;
    left: calc(50% - 240px + 10px);
    width: 107px;
    height: 28px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734612570803"] {
    display: block;
    top: 44px;
    left: 10px;
    width: 301px;
    height: 78px;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734520101196"] {
  z-index: 4;
  top: 27px;
  left: calc(50% - 600px + 108px);
  width: 174px;
  height: auto;
  pointer-events: none;
}
#rec1111561156 .tn-elem[data-elem-id="1734520101196"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734520101196"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520101196"] {
    display: table;
    top: 35px;
    left: calc(50% - 480px + 32px);
    width: 135px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520101196"] {
    display: table;
    top: 37px;
    left: calc(50% - 320px + 26px);
    width: 99px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520101196"] {
    display: table;
    top: 34px;
    left: calc(50% - 240px + 23px);
    width: 81px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520101196"] {
    display: table;
    top: 9px;
    left: 46px;
    width: 228px;
    height: auto;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734613198061"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 54px;
  left: calc(50% - 600px + 350px);
  width: 231px;
  height: 61px;
}
#rec1111561156 .tn-elem[data-elem-id="1734613198061"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734613198061"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111561156 .tn-elem[data-elem-id="1734613198061"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613198061"] {
    display: block;
    top: 55px;
    left: calc(50% - 480px + 263px);
    width: 180px;
    height: 48px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613198061"] {
    display: block;
    top: 52px;
    left: calc(50% - 320px + 172px);
    width: 131px;
    height: 35px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613198061"] {
    display: block;
    top: 46px;
    left: calc(50% - 240px + 364px);
    width: 106px;
    height: 28px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613198061"] {
    display: block;
    top: 322px;
    left: 10px;
    width: 301px;
    height: 83px;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734520145561"] {
  z-index: 6;
  top: 28px;
  left: calc(50% - 600px + 411px);
  width: 109px;
  height: auto;
  pointer-events: none;
}
#rec1111561156 .tn-elem[data-elem-id="1734520145561"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734520145561"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520145561"] {
    display: table;
    top: 35px;
    left: calc(50% - 480px + 312px);
    width: 85px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520145561"] {
    display: table;
    top: 38px;
    left: calc(50% - 320px + 208px);
    width: 62px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520145561"] {
    display: table;
    top: 35px;
    left: calc(50% - 240px + 393px);
    width: 50px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520145561"] {
    display: table;
    top: 289px;
    left: 93px;
    width: 143px;
    height: auto;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734613255980"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 54px;
  left: calc(50% - 600px + 620px);
  width: 231px;
  height: 61px;
}
#rec1111561156 .tn-elem[data-elem-id="1734613255980"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734613255980"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111561156 .tn-elem[data-elem-id="1734613255980"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613255980"] {
    display: block;
    top: 55px;
    left: calc(50% - 480px + 517px);
    width: 180px;
    height: 48px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613255980"] {
    display: block;
    top: 52px;
    left: calc(50% - 320px + 336px);
    width: 131px;
    height: 35px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613255980"] {
    display: block;
    top: 46px;
    left: calc(50% - 240px + 129px);
    width: 106px;
    height: 28px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613255980"] {
    display: block;
    top: 228px;
    left: 10px;
    width: 301px;
    height: 81px;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734520347769"] {
  z-index: 8;
  top: 30px;
  left: calc(50% - 600px + 681px);
  width: 109px;
  height: auto;
  pointer-events: none;
}
#rec1111561156 .tn-elem[data-elem-id="1734520347769"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734520347769"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520347769"] {
    display: table;
    top: 36px;
    left: calc(50% - 480px + 566px);
    width: 85px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520347769"] {
    display: table;
    top: 38px;
    left: calc(50% - 320px + 368px);
    width: 62px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520347769"] {
    display: table;
    top: 35px;
    left: calc(50% - 240px + 155px);
    width: 50px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520347769"] {
    display: table;
    top: 196px;
    left: 84px;
    width: 143px;
    height: auto;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734613335764"] {
  color: #ffffff;
  text-align: center;
  z-index: 9;
  top: 54px;
  left: calc(50% - 600px + 889px);
  width: 231px;
  height: 61px;
}
#rec1111561156 .tn-elem[data-elem-id="1734613335764"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #4a4a4a;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734613335764"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1111561156 .tn-elem[data-elem-id="1734613335764"] .tn-atom:hover {
    border-color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613335764"] {
    display: block;
    top: 56px;
    left: calc(50% - 480px + 770px);
    width: 180px;
    height: 47px;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613335764"] {
    display: block;
    top: 52px;
    left: calc(50% - 320px + 499px);
    width: 131px;
    height: 34px;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613335764"] {
    display: block;
    top: 46px;
    left: calc(50% - 240px + 246px);
    width: 107px;
    height: 28px;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734613335764"] {
    display: block;
    top: 137px;
    left: 10px;
    width: 301px;
    height: 78px;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734520884390"] {
  z-index: 10;
  top: -5px;
  left: calc(50% - 600px + 915px);
  width: 180px;
  height: auto;
  pointer-events: none;
}
#rec1111561156 .tn-elem[data-elem-id="1734520884390"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1111561156 .tn-elem[data-elem-id="1734520884390"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520884390"] {
    display: table;
    top: 10px;
    left: calc(50% - 480px + 790px);
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520884390"] {
    display: table;
    top: 18px;
    left: calc(50% - 320px + 514px);
    width: 102px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520884390"] {
    display: table;
    top: 18px;
    left: calc(50% - 240px + 258px);
    width: 83px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734520884390"] {
    display: table;
    top: 59px;
    left: 45px;
    width: 235px;
    height: auto;
  }
}
#rec1111561156 .tn-elem[data-elem-id="1734519986515"] {
  color: #ffffff;
  z-index: 19;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1111561156 .tn-elem[data-elem-id="1734519986515"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] {
    display: table;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] {
    display: table;
    top: 7px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] {
    display: table;
    width: 246px;
    height: auto;
  }
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] .tn-atom {
    font-size: 24px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] {
    display: table;
    left: 10px;
    width: 154px;
    height: auto;
  }
  #rec1111561156 .tn-elem[data-elem-id="1734519986515"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/courses_index-81aa901d684e.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-b35ab0b06223.css ---- */
#rec1179555861 .t396__artboard {
  height: 280px;
  background-color: #000000;
}
#rec1179555861 .t396__filter {
  height: 280px;
}
#rec1179555861 .t396__carrier {
  height: 280px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .t396__artboard,
  #rec1179555861 .t396__filter,
  #rec1179555861 .t396__carrier {
  }
  #rec1179555861 .t396__filter {
  }
  #rec1179555861 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .t396__artboard,
  #rec1179555861 .t396__filter,
  #rec1179555861 .t396__carrier {
  }
  #rec1179555861 .t396__filter {
  }
  #rec1179555861 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .t396__artboard,
  #rec1179555861 .t396__filter,
  #rec1179555861 .t396__carrier {
  }
  #rec1179555861 .t396__filter {
  }
  #rec1179555861 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .t396__artboard,
  #rec1179555861 .t396__filter,
  #rec1179555861 .t396__carrier {
    height: 720px;
  }
  #rec1179555861 .t396__filter {
  }
  #rec1179555861 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747731093258"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 80px);
  width: 313px;
  height: 257px;
}
#rec1179555861 .tn-elem[data-elem-id="1747731093258"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 11px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 11px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 11px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 1px;
    left: 11px;
    width: 300px;
    height: 217px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1748338987570"] {
  z-index: 3;
  top: 17px;
  left: calc(50% - 600px + 131px);
  width: 257px;
  height: 257px;
}
#rec1179555861 .tn-elem[data-elem-id="1748338987570"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 60px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 240px + 60px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 6px;
    left: 87px;
    width: 220px;
    height: 220px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747843115036"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747843115036"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747843115036"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 168px;
    left: 32px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823555"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747641823555"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555861
  .tn-elem[data-elem-id="1747641823555"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 168px;
    left: 31px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823584"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 125px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823584"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 56px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 56px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 56px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 173px;
    left: 36px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899376007"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899376007"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899376007"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823558"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555861
  .tn-elem[data-elem-id="1747641823558"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823566"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 165px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823566"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 96px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 96px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 96px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 173px;
    left: 77px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899501429"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899501429"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899501429"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 168px;
    left: 112px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823578"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555861
  .tn-elem[data-elem-id="1747641823578"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 168px;
    left: 112px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823581"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 205px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823581"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 136px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 136px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 136px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 173px;
    left: 117px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1751014255987"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751014255987"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1751014255987"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1751014256015"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
#rec1179555861 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555861
  .tn-elem[data-elem-id="1751014256015"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555861 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1751014256062"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 245px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555861 .tn-elem[data-elem-id="1751014256062"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 176px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 176px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 173px;
    left: 157px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899420191"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899420191"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899420191"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823560"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555861
  .tn-elem[data-elem-id="1747641823560"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823571"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 285px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823571"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 216px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 216px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 216px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 173px;
    left: 197px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899484196"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179555861
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899484196"] {
    opacity: 0;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747899484196"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 168px;
    left: 232px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823563"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179555861
  .tn-elem[data-elem-id="1747641823563"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 168px;
    left: 232px;
    width: 30px;
    height: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823575"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 325px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823575"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 256px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 256px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 173px;
    left: 237px;
    width: 20px;
    height: 20px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823552"] {
  color: #000000;
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 130px);
  width: 254px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823552"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 132px;
    left: 40px;
    height: auto;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823549"] {
  color: #000000;
  z-index: 3;
  top: 174px;
  left: calc(50% - 600px + 130px);
  width: 89px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823549"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 118px;
    left: 40px;
    height: auto;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823545"] {
  color: #000000;
  z-index: 3;
  top: 129px;
  left: calc(50% - 600px + 130px);
  width: 221px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 480px + 59px);
    width: 221px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823545"] {
    text-align: left;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 96px;
    left: 40px;
    width: 215px;
    height: auto;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823541"] {
  z-index: 3;
  top: 126px;
  left: calc(50% - 600px + 120px);
  width: 1px;
  height: 60px;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823541"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 88px;
    left: 30px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823537"] {
  color: #000000;
  z-index: 3;
  top: 101px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 56px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823533"] {
  color: #000000;
  z-index: 3;
  top: 89px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 44px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747641823526"] {
  color: #000000;
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 120px);
  width: 168px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 480px + 51px);
    width: 168px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 21px;
    left: 31px;
    width: 511px;
    height: 18px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747751061223"] {
  z-index: 3;
  top: 244px;
  left: calc(50% - 600px + 7px);
  width: 100px;
  height: 100px;
}
#rec1179555861 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + -62px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 320px + -62px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 240px + -62px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 198px;
    left: 4px;
    width: 13px;
    height: 29px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1748339984293"] {
  z-index: 3;
  top: -54px;
  left: calc(50% - 600px + 360px);
  width: 25px;
  height: 100px;
}
#rec1179555861 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179555861 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 480px + 289px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 320px + 289px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 240px + 289px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -59px;
    left: 294px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747646631107"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 420px);
  width: 700px;
  height: 257px;
}
#rec1179555861 .tn-elem[data-elem-id="1747646631107"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 351px);
    width: 600px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 351px);
    width: 279px;
    height: 257px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 330px);
    width: 140px;
    height: 257px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 241px;
    left: 10px;
    width: 300px;
    height: 474px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747380721710"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 893px);
  width: 67px;
  height: 20px;
}
#rec1179555861 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 824px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 361px);
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 156px;
    left: calc(50% - 240px + 344px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 595px;
    left: 30px;
    width: 67px;
    height: 20px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382989615"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 459px);
  width: auto;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 390px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 395px);
    width: 60px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 263px;
    left: 126px;
    width: 67px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] {
    text-align: left;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747383077128"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 620px);
  width: 142px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 551px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 28px;
    left: calc(50% - 320px + 362px);
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 16px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 485px;
    left: 30px;
    width: 142px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747381853075"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 621px);
  width: 67px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 552px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 363px);
    width: 86px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 372px;
    left: 31px;
    width: 86px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382286729"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 460px);
  width: auto;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 391px);
    width: 66px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] {
    text-align: left;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 344px);
    width: 47px;
    height: 20px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 263px;
    left: 30px;
    width: 107px;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747380743405"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 459px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 396px);
    width: 30px;
    height: 30px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 290px;
    left: 126px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747383336368"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747383336368"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 511px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747384448888"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 629px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 511px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747384605122"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 705px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 71px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 511px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1748420444611"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 821px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1748420444611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 715px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 396px;
    left: 540px;
    width: 50px;
    height: 50px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747381124322"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 893px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 824px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 345px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 626px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747381888387"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747381888387"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 402px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382048808"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747382048808"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 708px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 402px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382213646"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747382213646"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 628px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 402px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747381231017"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 962px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747381231017"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 891px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 425px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 626px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747381773374"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 1030px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747381773374"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 824px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 385px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 626px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382850582"] {
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1179555861 .tn-elem[data-elem-id="1747382850582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 81px;
    left: calc(50% - 320px + 707px);
    width: 17px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 504px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 241px;
    left: 539px;
    width: 17px;
    height: 75px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747384632790"] {
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1179555861 .tn-elem[data-elem-id="1747384632790"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 530px);
    width: 1px;
    height: 145px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 530px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 241px;
    left: 394px;
    width: 1px;
    height: 145px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382870795"] {
  z-index: 3;
  top: 61px;
  left: calc(50% - 600px + 854px);
  width: 1px;
  height: 75px;
}
#rec1179555861 .tn-elem[data-elem-id="1747382870795"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 61px;
    left: calc(50% - 480px + 785px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 289px;
    left: calc(50% - 320px + 680px);
    width: 75px;
    height: 15px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 254px;
    left: calc(50% - 240px + 490px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 340px;
    left: 394px;
    width: 75px;
    height: 15px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1747382302775"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 460px);
  width: 50px;
  height: 50px;
}
#rec1179555861 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 391px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179555861 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 344px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 290px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1748613066534"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 1114px);
  width: 13px;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 480px + 944px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 263px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 236px;
    left: 4px;
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1179555861 .tn-elem[data-elem-id="1748613058267"] {
  color: #ffffff;
  z-index: 3;
  top: 7px;
  left: calc(50% - 600px + 414px);
  width: auto;
  height: auto;
}
#rec1179555861 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: -4px;
    left: calc(50% - 480px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 6px;
    left: calc(50% - 240px + 324px);
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179555861 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 708px;
    left: 303px;
    width: auto;
    height: auto;
  }
  #rec1179555861 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}

/* ---- assets/inline/css/courses_index-302de1cffbc2.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/courses_index-9fbe15eada29.css ---- */
#rec1124407246 .t396__artboard {
  height: 50px;
  background-color: #000000;
}
#rec1124407246 .t396__filter {
  height: 50px;
}
#rec1124407246 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .t396__artboard,
  #rec1124407246 .t396__filter,
  #rec1124407246 .t396__carrier {
  }
  #rec1124407246 .t396__filter {
  }
  #rec1124407246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .t396__artboard,
  #rec1124407246 .t396__filter,
  #rec1124407246 .t396__carrier {
  }
  #rec1124407246 .t396__filter {
  }
  #rec1124407246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .t396__artboard,
  #rec1124407246 .t396__filter,
  #rec1124407246 .t396__carrier {
  }
  #rec1124407246 .t396__filter {
  }
  #rec1124407246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .t396__artboard,
  #rec1124407246 .t396__filter,
  #rec1124407246 .t396__carrier {
  }
  #rec1124407246 .t396__filter {
  }
  #rec1124407246 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1748340397359"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -875px);
  width: 2951px;
  height: 51px;
}
#rec1124407246 .tn-elem[data-elem-id="1748340397359"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347211"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 140px);
  width: 55px;
  height: 30px;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347211"] .tn-atom:hover {
  }
  #rec1124407246 .tn-elem[data-elem-id="1747646347211"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 108px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 78px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 87px;
    left: 362px;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347209"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 196px);
  width: 55px;
  height: 30px;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"] .tn-atom:hover {
  }
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 164px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 134px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 126px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 87px;
    left: 418px;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347206"] {
  color: #eb1414;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 261px);
  width: 55px;
  height: 30px;
  pointer-events: none;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  color: #eb1414;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 217px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 187px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 179px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 87px;
    left: 471px;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347204"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 319px);
  width: 55px;
  height: 30px;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"] .tn-atom:hover {
  }
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 278px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 248px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 240px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 87px;
    left: 532px;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347213"] {
  z-index: 10;
  top: 9px;
  left: calc(50% - 600px + 708px);
  width: 1px;
  height: 30px;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347213"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 480px + 699px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 359px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 210px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 83px;
    left: 349px;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347200"] {
  color: #ffffff;
  z-index: 11;
  top: 20px;
  left: calc(50% - 600px + 420px);
  width: 246px;
  height: auto;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 19px;
    left: calc(50% - 480px + 411px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 18px;
    left: calc(50% - 320px + 90px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 70px);
    width: 130px;
    height: 20px;
  }
  #rec1124407246 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 15px;
    left: 70px;
    width: 243px;
    height: auto;
  }
  #rec1124407246 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1747646347196"] {
  z-index: 12;
  top: 8px;
  left: calc(50% - 600px + 80px);
  width: 35px;
  height: 35px;
}
#rec1124407246 .tn-elem[data-elem-id="1747646347196"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 480px + 80px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 80px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: 10px;
  }
}
#rec1124407246 .tn-elem[data-elem-id="1748341987415"] {
  color: #ffffff;
  z-index: 13;
  top: 17px;
  left: calc(50% - 600px + 729px);
  width: 402px;
  height: auto;
}
#rec1124407246 .tn-elem[data-elem-id="1748341987415"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124407246 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124407246 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124407246 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 230px);
    width: 239px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124407246 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: 720px;
    height: auto;
  }
}

/* ---- assets/inline/css/courses_index-22debccb330a.css ---- */
#rec1131005731 .t396__artboard {
  height: 600px;
  background-color: #000000;
}
#rec1131005731 .t396__filter {
  height: 600px;
}
#rec1131005731 .t396__carrier {
  height: 600px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .t396__artboard,
  #rec1131005731 .t396__filter,
  #rec1131005731 .t396__carrier {
    height: 598px;
  }
  #rec1131005731 .t396__filter {
  }
  #rec1131005731 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .t396__artboard,
  #rec1131005731 .t396__filter,
  #rec1131005731 .t396__carrier {
    height: 596px;
  }
  #rec1131005731 .t396__filter {
  }
  #rec1131005731 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .t396__artboard,
  #rec1131005731 .t396__filter,
  #rec1131005731 .t396__carrier {
    height: 1170px;
  }
  #rec1131005731 .t396__filter {
  }
  #rec1131005731 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .t396__artboard,
  #rec1131005731 .t396__filter,
  #rec1131005731 .t396__carrier {
    height: 969px;
  }
  #rec1131005731 .t396__filter {
  }
  #rec1131005731 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025557"] {
  color: #ffffff;
  z-index: 3;
  top: 472px;
  left: calc(50% - 600px + 180px);
  width: 346px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025557"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] {
    display: table;
    top: 485px;
    left: calc(50% - 480px + 90px);
    width: 272px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] {
    display: table;
    top: 464px;
    left: calc(50% - 320px + 10px);
    width: 276px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] {
    display: table;
    top: 490px;
    width: 409px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] {
    display: table;
    top: 453px;
    left: 10px;
    width: 274px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] {
    color: #ffffff;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025557"] .tn-atom {
    color: #ffffff;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025552"] {
  color: #ffffff;
  z-index: 3;
  top: 440px;
  left: calc(50% - 600px + 180px);
  width: 306px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025552"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] {
    display: table;
    top: 455px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] {
    display: table;
    top: 434px;
    left: calc(50% - 320px + 10px);
    width: 306px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] {
    display: table;
    top: 458px;
    left: calc(50% - 240px + 10px);
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] {
    display: table;
    top: 423px;
    left: 10px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] {
    color: #ffffff;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025552"] .tn-atom {
    color: #ffffff;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025535"] {
  color: #ffffff;
  z-index: 3;
  top: 540px;
  left: calc(50% - 600px + 595px);
  width: 412px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025535"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] {
    display: table;
    top: 538px;
    left: calc(50% - 480px + 520px);
    width: 335px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] {
    display: table;
    top: 512px;
    left: calc(50% - 320px + 341px);
    width: 274px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] {
    display: table;
    top: 1113px;
    left: calc(50% - 240px + 20px);
    width: 437px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] {
    display: table;
    top: 894px;
    left: 25px;
    width: 270px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025535"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025530"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 40px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025530"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025530"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 510px);
    width: 360px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025530"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 330px);
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025530"] {
    display: table;
    top: 1100px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 60px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025530"] {
    display: table;
    top: 884px;
    left: 10px;
    width: 300px;
    height: 40px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025522"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025522"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025522"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 397px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025522"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025522"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025522"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025337"] {
  z-index: 3;
  top: 175px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025337"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025337"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 90px);
    width: 360px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025337"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025337"] {
    display: table;
    top: 198px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025337"] {
    display: table;
    top: 163px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025348"] {
  z-index: 3;
  top: 406px;
  left: calc(50% - 600px + 527px);
  width: 39px;
  height: 46px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025348"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025348"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025348"] {
    display: table;
    top: 422px;
    left: calc(50% - 480px + 434px);
    width: 47px;
    height: 48px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025348"] {
    display: table;
    top: 410px;
    left: calc(50% - 320px + 297px);
    width: 20px;
    height: 10px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025348"] {
    display: table;
    top: 432px;
    left: calc(50% - 240px + 444px);
    width: 44px;
    height: 18px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025348"] {
    display: table;
    top: 397px;
    left: 285px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025333"] {
  color: #ffffff;
  z-index: 3;
  top: 63px;
  left: calc(50% - 600px + 180px);
  width: 348px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025333"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 90px);
    width: 337px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 10px);
    width: 320px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] {
    display: table;
    top: 73px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] {
    display: table;
    top: 73px;
    left: 10px;
    width: 302px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025333"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025327"] {
  color: #a5a5a5;
  z-index: 3;
  top: 111px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025327"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] {
    display: table;
    top: 153px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] {
    display: table;
    top: 118px;
    left: calc(50% - 320px + 10px);
    width: 305px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] {
    display: table;
    top: 133px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] {
    display: table;
    top: 113px;
    width: 272px;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025327"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025323"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025323"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.4;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731
  .tn-elem[data-elem-id="1753254025323"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025323"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 387px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025323"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025323"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025323"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025352"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025352"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025352"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025352"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025352"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025352"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025352"] {
    display: table;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025359"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025359"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025359"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025359"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025359"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025359"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025359"] {
    display: block;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025366"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 285px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025366"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025366"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 215px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025366"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 115px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025366"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 135px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025366"] {
    display: table;
    top: 514px;
    left: 106px;
    width: 25px;
    height: 25px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025378"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025378"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025378"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025378"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025378"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025378"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025378"] {
    display: table;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025384"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025384"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025384"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025384"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025384"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025384"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025384"] {
    display: block;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025392"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 335px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025392"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025392"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 275px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025392"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 165px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025392"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 195px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025392"] {
    display: table;
    top: 514px;
    left: 151px;
    width: 25px;
    height: 25px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025403"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025403"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025403"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025403"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025403"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025403"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025403"] {
    display: table;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025409"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025409"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025409"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025409"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025409"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025409"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025409"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025409"] {
    display: block;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025415"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 185px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025415"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025415"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 95px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025415"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 15px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025415"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 15px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025415"] {
    display: table;
    top: 514px;
    left: 16px;
    width: 25px;
    height: 25px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025427"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025427"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025427"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025427"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025427"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025427"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025427"] {
    display: table;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025432"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025432"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025432"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025432"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025432"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025432"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025432"] {
    display: block;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025439"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 235px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025439"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025439"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 155px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025439"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 65px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025439"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 75px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025439"] {
    display: table;
    top: 514px;
    left: 61px;
    width: 25px;
    height: 25px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025454"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025454"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025454"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025454"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025454"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025454"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025454"] {
    display: table;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025460"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025460"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025460"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025460"] .tn-atom:hover {
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025460"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025460"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025460"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025460"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025460"] {
    display: block;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025467"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 435px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025467"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025467"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 395px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025467"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 215px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025467"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 255px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025467"] {
    display: table;
    top: 514px;
    left: 196px;
    width: 25px;
    height: 25px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025479"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025479"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025479"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025479"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025479"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025479"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025479"] {
    display: table;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025485"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025485"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025485"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025485"] .tn-atom:hover {
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025485"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025485"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025485"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025485"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025485"] {
    display: block;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025492"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 385px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025492"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025492"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 335px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025492"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 265px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025492"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 315px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025492"] {
    display: table;
    top: 514px;
    left: 241px;
    width: 25px;
    height: 25px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025504"] {
  text-align: center;
  z-index: 3;
  top: 26px;
  left: calc(50% - 600px + 1087px);
  width: 33px;
  height: 33px;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025504"] .tn-atom {
  color: transparent;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025504"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025504"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025504"] {
    display: block;
    top: 36px;
    left: calc(50% - 480px + 837px);
    width: 33px;
    height: 33px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025504"] {
    display: block;
    top: 15px;
    left: calc(50% - 320px + 592px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025504"] {
    display: block;
    top: 20px;
    left: calc(50% - 240px + 437px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025504"] {
    display: block;
    top: 20px;
    left: 277px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025511"] {
  z-index: 3;
  top: 30px;
  left: calc(50% - 600px + 1091px);
  width: 25px;
  height: 25px;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1131005731
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254025511"] {
    opacity: 0;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025511"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025511"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 841px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025511"] {
    display: table;
    top: 19px;
    left: calc(50% - 320px + 596px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025511"] {
    display: table;
    top: 24px;
    left: calc(50% - 240px + 441px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025511"] {
    display: table;
    top: 24px;
    left: 281px;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025547"] {
  color: #ffffff;
  z-index: 3;
  top: 484px;
  left: calc(50% - 600px + 1013px);
  width: 13px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025547"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025547"] {
    display: table;
    top: 491px;
    left: calc(50% - 480px + 862px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025547"] {
    display: table;
    top: 467px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025547"] {
    display: table;
    top: 1072px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025547"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025547"] {
    display: table;
    top: 858px;
    left: 303px;
    width: 11px;
    height: auto;
  }
}
#rec1131005731 .tn-elem[data-elem-id="1753254025542"] {
  color: #ffffff;
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 574px);
  width: 13px;
  height: auto;
}
#rec1131005731 .tn-elem[data-elem-id="1753254025542"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025542"] {
    display: table;
    top: 96px;
    left: calc(50% - 480px + 504px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025542"] {
    display: table;
    top: 53px;
    left: calc(50% - 320px + 324px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025542"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 4px);
    width: auto;
    height: auto;
  }
  #rec1131005731 .tn-elem[data-elem-id="1753254025542"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131005731 .tn-elem[data-elem-id="1753254025542"] {
    display: table;
    top: 559px;
    left: 4px;
    width: 11px;
    height: auto;
  }
}

/* ---- assets/inline/css/courses_index-714886f1984b.css ---- */
#rec1131005731 [data-elem-id="1753254025337"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731 [data-elem-id="1753254025337"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731 [data-elem-id="1753254025337"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731 [data-elem-id="1753254025337"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731
  [data-elem-id="1753254025337"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731 [data-elem-id="1753254025337"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731 [data-elem-id="1753254025337"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131005731 [data-elem-id="1753254025337"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/courses_index-9f44a19260a6.css ---- */
#rec1131005731 [data-elem-id="1753254025337"] .t-input-block input[type="text"],
#rec1131005731 [data-elem-id="1753254025337"] .t-input-block input[type="tel"],
#rec1131005731 [data-elem-id="1753254025337"] .t-input-block input[type="url"],
#rec1131005731
  [data-elem-id="1753254025337"]
  .t-input-block
  input[type="email"],
#rec1131005731
  [data-elem-id="1753254025337"]
  .t-input-block
  .t-input-phonemask__select,
#rec1131005731 [data-elem-id="1753254025337"] .t-input-block textarea,
#rec1131005731 [data-elem-id="1753254025337"] .t-input-block select,
#rec1131005731 [data-elem-id="1753254025337"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/courses_index-38a6f40e7f51.css ---- */
#rec1124464641 .t-menu__link-item {
  -webkit-transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}
#rec1124464641 .t-menu__link-item.t-active:not(.t978__menu-link) {
  color: #eb1414 !important;
  opacity: 1 !important;
}
#rec1124464641 .t-menu__link-item:not(.t-active):not(.tooltipstered):hover {
  color: #eb1414 !important;
}
#rec1124464641
  .t-menu__link-item:not(.t-active):not(.tooltipstered):focus-visible {
  color: #eb1414 !important;
}
@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
  #rec1124464641 .t-menu__link-item,
  #rec1124464641 .t-menu__link-item.t-active {
    opacity: 1 !important;
  }
}

/* ---- assets/inline/css/team_index-10ee698900d2.css ---- */
.t-sbs-anim_started #sbs-1106160806-1748255447993 {
  animation: sbs-1106160806-1748255447993 0.3s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1106160806-1748255447993 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(30px);
  }
}

.t-sbs-anim_started #sbs-1124289401-1748015917462 {
  animation: sbs-1124289401-1748015917462 11s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1124289401-1748015917462 {
  0% {
    opacity: 1;
    animation-timing-function: 0;
  }
  9.09% {
    opacity: 1;
    animation-timing-function: 0;
  }
  100% {
    opacity: 0;
  }
}

.t-sbs-anim_started #sbs-1179556586-1747843115036 {
  animation: sbs-1179556586-1747843115036 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179556586-1747843115036 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179556586
  [data-elem-id="1747843115036"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179556586-1747899376007 {
  animation: sbs-1179556586-1747899376007 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179556586-1747899376007 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179556586
  [data-elem-id="1747899376007"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179556586-1747899501429 {
  animation: sbs-1179556586-1747899501429 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179556586-1747899501429 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179556586
  [data-elem-id="1747899501429"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179556586-1751014255987 {
  animation: sbs-1179556586-1751014255987 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179556586-1751014255987 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179556586
  [data-elem-id="1751014255987"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179556586-1747899420191 {
  animation: sbs-1179556586-1747899420191 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179556586-1747899420191 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179556586
  [data-elem-id="1747899420191"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1179556586-1747899484196 {
  animation: sbs-1179556586-1747899484196 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1179556586-1747899484196 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1179556586
  [data-elem-id="1747899484196"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202669 {
  animation: sbs-1131012396-1753254202669 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202669 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131012396
  [data-elem-id="1753254202669"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202647 {
  animation: sbs-1131012396-1753254202647 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202647 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131012396
  [data-elem-id="1753254202647"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202625 {
  animation: sbs-1131012396-1753254202625 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202625 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131012396
  [data-elem-id="1753254202625"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202604 {
  animation: sbs-1131012396-1753254202604 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202604 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131012396
  [data-elem-id="1753254202604"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202580 {
  animation: sbs-1131012396-1753254202580 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202580 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131012396
  [data-elem-id="1753254202580"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202693 {
  animation: sbs-1131012396-1753254202693 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202693 {
  0% {
    transform: translateY(0px);
    animation-timing-function: 0;
  }
  100% {
    transform: translateY(3px);
  }
}

#rec1131012396
  [data-elem-id="1753254202693"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.t-sbs-anim_started #sbs-1131012396-1753254202724 {
  animation: sbs-1131012396-1753254202724 0.2s linear forwards;
  backface-visibility: hidden;
}

@keyframes sbs-1131012396-1753254202724 {
  0% {
    transform: scale(1, 1);
    animation-timing-function: 0;
  }
  100% {
    transform: scale(0.78, 0.78);
  }
}

#rec1131012396
  [data-elem-id="1753254202724"].t-sbs-anim_started.t-sbs-anim_reversed
  .tn-atom__sbs-anim-wrapper {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/* ---- assets/inline/css/team_index-f46f4a4c1cfe.css ---- */
#rec1106160806 .t396__artboard {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 990;
}
#rec1106160806 .t396__artboard {
  height: 50px;
  background-color: #000000;
  overflow: visible;
}
#rec1106160806 .t396__filter {
  height: 50px;
}
#rec1106160806 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .t396__artboard,
  #rec1106160806 .t396__filter,
  #rec1106160806 .t396__carrier {
  }
  #rec1106160806 .t396__filter {
  }
  #rec1106160806 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .t396__artboard,
  #rec1106160806 .t396__filter,
  #rec1106160806 .t396__carrier {
  }
  #rec1106160806 .t396__filter {
  }
  #rec1106160806 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .t396__artboard,
  #rec1106160806 .t396__filter,
  #rec1106160806 .t396__carrier {
  }
  #rec1106160806 .t396__filter {
  }
  #rec1106160806 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .t396__artboard,
  #rec1106160806 .t396__filter,
  #rec1106160806 .t396__carrier {
  }
  #rec1106160806 .t396__filter {
  }
  #rec1106160806 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1748336375830"] {
  z-index: 3;
  top: -1px;
  left: calc(50% - 600px + -546px);
  width: 2293px;
  height: 51px;
}
#rec1106160806 .tn-elem[data-elem-id="1748336375830"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1748336375830"] {
    display: table;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747235389820"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 402px);
  width: 78px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747235389820"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1747235389820"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1106160806 .tn-elem[data-elem-id="1747235389820"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 240px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1485px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235389820"] {
    display: block;
    top: 7px;
    left: 509px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747235476777"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 500px);
  width: 78px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747235476777"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1747235476777"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1106160806 .tn-elem[data-elem-id="1747235476777"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 325px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1583px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235476777"] {
    display: block;
    top: 7px;
    left: 607px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747235487045"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 598px);
  width: 78px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747235487045"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    background-color: #eb1414;
    background-image: none;
  }
  #rec1106160806 .tn-elem[data-elem-id="1747235487045"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 410px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 0px;
    left: calc(50% - 320px + 1681px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235487045"] {
    display: block;
    top: 7px;
    left: 705px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1748421568956"] {
  color: #eb1414;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 696px);
  width: 78px;
  height: 30px;
  pointer-events: none;
}
#rec1106160806 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  color: #eb1414;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1748421568956"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 495px);
    width: 68px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: -1px;
    left: calc(50% - 320px + 1872px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1748421568956"] {
    display: block;
    top: 17px;
    left: 813px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747235609694"] {
  color: #000000;
  text-align: center;
  z-index: 9;
  top: 10px;
  left: calc(50% - 600px + 994px);
  width: 126px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747235609694"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1106160806 .tn-elem[data-elem-id="1747235609694"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 824px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 502px);
    width: 126px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    left: calc(50% - 240px + 343px);
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747235609694"] {
    display: block;
    top: 10px;
    left: 144px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747236375794"] {
  color: #000000;
  text-align: center;
  z-index: 10;
  top: 10px;
  left: calc(50% - 600px + 949px);
  width: 30px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747236375794"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1106160806 .tn-elem[data-elem-id="1747236375794"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 480px + 778px);
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 456px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    left: calc(50% - 240px + 297px);
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236375794"] {
    display: block;
    top: 9px;
    left: 392px;
    width: 30px;
    height: 30px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747236894336"] {
  z-index: 11;
  top: 15px;
  left: calc(50% - 600px + 954px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1106160806 .tn-elem[data-elem-id="1747236894336"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 783px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 461px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    left: calc(50% - 240px + 302px);
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236894336"] {
    display: table;
    top: 14px;
    left: 397px;
    width: 20px;
    height: 20px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747236388101"] {
  color: #000000;
  text-align: center;
  z-index: 12;
  top: 10px;
  left: calc(50% - 600px + 904px);
  width: 30px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747236388101"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
  #rec1106160806 .tn-elem[data-elem-id="1747236388101"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 480px + 732px);
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 10px;
    left: calc(50% - 320px + 410px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747236388101"] {
    display: block;
    top: 9px;
    left: 352px;
    width: 30px;
    height: 30px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747823134840"] {
  z-index: 13;
  top: 15px;
  left: calc(50% - 600px + 909px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1106160806 .tn-elem[data-elem-id="1747823134840"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 16px;
    left: calc(50% - 480px + 737px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 15px;
    left: calc(50% - 320px + 415px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747823134840"] {
    display: table;
    top: 14px;
    left: 357px;
    width: 20px;
    height: 20px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747308725321"] {
  z-index: 15;
  top: 10px;
  left: calc(50% - 600px + 1880px);
  width: 60px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747308725321"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308725321"] {
    display: table;
    top: 7px;
    left: 438px;
    width: 60px;
    height: 30px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747308857459"] {
  color: #000000;
  text-align: center;
  z-index: 17;
  top: 10px;
  left: calc(50% - 600px + 1880px);
  width: 30px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1747308857459"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: calc(50% - 480px + 1360px);
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1212px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747308857459"] {
    display: block;
    top: 7px;
    left: 438px;
    width: 30px;
    height: 30px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747326978217"] {
  z-index: 18;
  top: 10px;
  left: calc(50% - 600px + 1842px);
  width: 30px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1747326978217"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747326978217"] {
    display: table;
    top: 10px;
    left: 279px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1747225382228"] {
  z-index: 19;
  top: 5px;
  left: calc(50% - 600px + 79px);
  width: 40px;
  height: 40px;
}
#rec1106160806 .tn-elem[data-elem-id="1747225382228"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 480px + 9px);
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1747225382228"] {
    display: table;
    top: 5px;
    left: 10px;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1748255447993"] {
  color: #000000;
  text-align: center;
  z-index: 20;
  top: 10px;
  left: calc(50% - 600px + 1386px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1106160806
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1748255447993"] {
    opacity: 0;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1748255447993"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1106160806 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
  }
  #rec1106160806 .tn-elem[data-elem-id="1748255447993"] .tn-atom:hover {
    color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1272px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255447993"] {
    display: block;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1748255423628"] {
  color: #ffffff;
  text-align: center;
  z-index: 21;
  top: 10px;
  left: calc(50% - 600px + 1386px);
  width: 30px;
  height: 30px;
}
#rec1106160806 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #eb1414;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1106160806 .tn-elem[data-elem-id="1748255423628"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
    top: 6px;
    left: calc(50% - 320px + 1302px);
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1748255423628"] {
    display: block;
  }
}
#rec1106160806 .tn-elem[data-elem-id="1748422363740"] {
  color: #ffffff;
  z-index: 22;
  top: 9px;
  left: calc(50% - 600px + 129px);
  width: auto;
  height: auto;
}
#rec1106160806 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1106160806 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    left: calc(50% - 480px + 69px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1106160806 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1106160806 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1106160806 .tn-elem[data-elem-id="1748422363740"] {
    display: table;
    top: 14px;
    left: 64px;
    width: 66px;
    height: auto;
  }
  #rec1106160806 .tn-elem[data-elem-id="1748422363740"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/team_index-594b4454702b.css ---- */
#rec1124289401 .t396__artboard {
  height: 550px;
  background-color: #000000;
}
#rec1124289401 .t396__filter {
  height: 550px;
}
#rec1124289401 .t396__carrier {
  height: 550px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .t396__artboard,
  #rec1124289401 .t396__filter,
  #rec1124289401 .t396__carrier {
  }
  #rec1124289401 .t396__filter {
  }
  #rec1124289401 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .t396__artboard,
  #rec1124289401 .t396__filter,
  #rec1124289401 .t396__carrier {
    height: 760px;
  }
  #rec1124289401 .t396__filter {
  }
  #rec1124289401 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .t396__artboard,
  #rec1124289401 .t396__filter,
  #rec1124289401 .t396__carrier {
    height: 790px;
  }
  #rec1124289401 .t396__filter {
  }
  #rec1124289401 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .t396__artboard,
  #rec1124289401 .t396__filter,
  #rec1124289401 .t396__carrier {
    height: 810px;
  }
  #rec1124289401 .t396__filter {
  }
  #rec1124289401 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747232544453"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 630px;
  height: 550px;
}
#rec1124289401 .tn-elem[data-elem-id="1747232544453"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.3;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124289401
  .tn-elem[data-elem-id="1747232544453"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    left: calc(50% - 480px + -242px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + -46px);
    width: 733px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -2px);
    width: 312px;
    height: 406px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747232544453"] {
    display: table;
    top: 0px;
    left: -13px;
    width: 269px;
    height: 331px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1748015917462"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -182px);
  width: 602px;
  height: 550px;
}
#rec1124289401 .tn-elem.t396__elem--anim-hidden[data-elem-id="1748015917462"] {
  opacity: 0;
}
#rec1124289401 .tn-elem[data-elem-id="1748015917462"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -191px;
    left: calc(50% - 320px + -761px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1748015917462"] {
    display: table;
    top: -10px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1750777179302"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 80px);
  width: 275px;
  height: 275px;
}
#rec1124289401 .tn-elem[data-elem-id="1750777179302"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179302"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 7px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179302"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179302"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 61px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179302"] {
    display: table;
    top: 100px;
    left: 30px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1750777179315"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 90px);
  width: 275px;
  height: 275px;
}
#rec1124289401 .tn-elem[data-elem-id="1750777179315"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179315"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 17px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179315"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 186px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179315"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179315"] {
    display: table;
    top: 100px;
    left: 40px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1750777179330"] {
  z-index: 3;
  top: 136px;
  left: calc(50% - 600px + 92px);
  width: 275px;
  height: 275px;
}
#rec1124289401 .tn-elem[data-elem-id="1750777179330"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179330"] {
    display: table;
    top: 136px;
    left: calc(50% - 480px + 19px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179330"] {
    display: table;
    top: 76px;
    left: calc(50% - 320px + 188px);
    width: 275px;
    height: 275px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179330"] {
    display: table;
    top: 128px;
    left: calc(50% - 240px + 68px);
    width: 184px;
    height: 183px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1750777179330"] {
    display: table;
    top: 99px;
    left: 45px;
    width: 184px;
    height: 184px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1748343246927"] {
  z-index: 3;
  top: -26px;
  left: calc(50% - 600px + 421px);
  width: 932px;
  height: 594px;
}
#rec1124289401 .tn-elem[data-elem-id="1748343246927"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: var(--site-bg);
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: -29px;
    left: calc(50% - 480px + 330px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + -71px);
    width: 786px;
    height: 388px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 405px;
    left: calc(50% - 240px + -143px);
    width: 786px;
    height: 437px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1748343246927"] {
    display: table;
    top: 329px;
    left: -209px;
    width: 786px;
    height: 437px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747839299921"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 56px;
  left: calc(50% - 600px + 957px);
  width: 247px;
  height: 300px;
}
#rec1124289401 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 140px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 119px;
    left: calc(50% - 480px + 727px);
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 377px;
    left: calc(50% - 320px + 400px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 406px;
    left: calc(50% - 240px + 330px);
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    font-size: 80px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] {
    display: table;
    top: 508px;
    left: 144px;
    width: 177px;
    height: 200px;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747839299921"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 100px;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1750248542074"] {
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 877px);
  width: 400px;
  height: 400px;
}
#rec1124289401 .tn-elem[data-elem-id="1750248542074"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 95px;
    left: calc(50% - 480px + 630px);
    width: 394px;
    height: 394px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 361px;
    left: calc(50% - 320px + 353px);
    width: 334px;
    height: 334px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 414px;
    left: calc(50% - 240px + 225px);
    width: 315px;
    height: 315px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1750248542074"] {
    display: table;
    top: 481px;
    left: 89px;
    width: 282px;
    height: 282px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747728712611"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1124289401 .tn-elem[data-elem-id="1747728712611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747728712611"] {
    display: table;
    top: 652px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1748337022311"] {
  z-index: 3;
  top: 320px;
  left: calc(50% - 600px + 951px);
  width: 250px;
  height: 250px;
}
#rec1124289401 .tn-elem[data-elem-id="1748337022311"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 329px;
    left: calc(50% - 480px + 730px);
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 561px;
    left: calc(50% - 320px + 434px);
    width: 206px;
    height: 206px;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 334px);
    width: 146px;
    height: 146px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1748337022311"] {
    display: table;
    top: 662px;
    left: 168px;
    width: 152px;
    height: 152px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747234456600"] {
  z-index: 3;
  top: 457px;
  left: calc(50% - 600px + 421px);
  width: 928px;
  height: 50px;
}
#rec1124289401 .tn-elem[data-elem-id="1747234456600"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    left: calc(50% - 480px + 331px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 677px;
    left: calc(50% - 320px + -40px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 697px;
    left: calc(50% - 240px + -40px);
    width: 928px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234456600"] {
    display: table;
    top: 737px;
    left: -220px;
    width: 928px;
    height: 50px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747233003903"] {
  z-index: 3;
  top: 549px;
  left: calc(50% - 600px + -150px);
  width: 1500px;
  height: 1px;
}
#rec1124289401 .tn-elem[data-elem-id="1747233003903"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 548px;
    left: calc(50% - 480px + -240px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 759px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: 779px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747233003903"] {
    display: table;
    top: -192px;
    left: -470px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747312395611"] {
  z-index: 3;
  top: 609px;
  left: calc(50% - 600px + -140px);
  width: 1500px;
  height: 1px;
}
#rec1124289401 .tn-elem[data-elem-id="1747312395611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    left: calc(50% - 480px + -230px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 1107px;
    left: calc(50% - 320px + -250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 985px;
    left: calc(50% - 240px + -250px);
    width: 1500px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312395611"] {
    display: table;
    top: 809px;
    left: -460px;
    width: 1500px;
    height: 1px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747312777885"] {
  z-index: 3;
  top: 619px;
  left: calc(50% - 600px + -130px);
  width: 1500px;
  height: 1px;
}
#rec1124289401 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    left: calc(50% - 480px + -220px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 977px;
    left: calc(50% - 320px + -260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 11px);
    width: 600px;
    height: 1px;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747312777885"] .tn-atom {
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312777885"] {
    display: table;
    top: 169px;
    left: 97px;
    width: 320px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747234780565"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 243px;
  left: calc(50% - 600px + 479px);
  width: 353px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    left: calc(50% - 480px + 389px);
    width: 310px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 501px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 517px;
    left: calc(50% - 240px + 10px);
    width: 265px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] {
    display: table;
    top: 417px;
    left: 10px;
    width: 282px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747234780565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747301333026"] {
  color: #000000;
  z-index: 3;
  top: 475px;
  left: calc(50% - 600px + 480px);
  width: 608px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    left: calc(50% - 480px + 390px);
    width: 526px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 695px;
    left: calc(50% - 320px + 9px);
    width: 621px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 705px;
    left: calc(50% - 240px + 10px);
    width: 347px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"] {
    display: table;
    top: 749px;
    left: 10px;
    width: 242px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747301333026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297376732"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 480px);
  width: 99px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 390px);
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 10px);
    width: 95px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] {
    display: table;
    top: 550px;
    left: 10px;
    width: 95px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297376732"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297544627"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 649px);
  width: 193px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 508px);
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 128px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 118px);
    width: 193px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] {
    display: table;
    top: 613px;
    left: 10px;
    width: 193px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297544627"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297749026"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 395px;
  left: calc(50% - 600px + 793px);
  width: 107px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 376px;
    left: calc(50% - 480px + 630px);
    width: 68px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 622px;
    left: calc(50% - 320px + 250px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 642px;
    left: calc(50% - 240px + 226px);
    width: 68px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] {
    display: table;
    top: 680px;
    left: 10px;
    width: 68px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297749026"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297358565"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 522px);
  width: 100px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 300;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 420px);
    width: 105px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 40px);
    width: 105px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] {
    display: table;
    top: 519px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297358565"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297533439"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 690px);
  width: 69px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 538px);
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 158px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 148px);
    width: 105px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] {
    display: table;
    top: 584px;
    left: 47px;
    width: 105px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297533439"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297726676"] {
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 359px;
  left: calc(50% - 600px + 835px);
  width: 42px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.255turn,
    rgba(235, 20, 20, 1) 0%,
    rgba(235, 20, 20, 1) 47%,
    rgba(246, 255, 194, 1) 59%,
    rgba(235, 20, 20, 1) 72%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 25px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 348px;
    left: calc(50% - 480px + 660px);
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 594px;
    left: calc(50% - 320px + 280px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 614px;
    left: calc(50% - 240px + 256px);
    width: 42px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] {
    display: table;
    top: 652px;
    left: 47px;
    width: 42px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747297726676"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 20px;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747234162072"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 145px;
  left: calc(50% - 600px + 476px);
  width: 218px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    left: calc(50% - 480px + 386px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 403px;
    left: calc(50% - 320px + 9px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 423px;
    left: calc(50% - 240px + 9px);
    width: 218px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] {
    display: table;
    top: 326px;
    left: 9px;
    width: 218px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747234162072"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747312642704"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1200px;
  left: calc(50% - 600px + 780px);
  width: 218px;
  height: auto;
}
#rec1124289401 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 50px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    left: calc(50% - 480px + 396px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 112px;
    left: calc(50% - 320px + 871px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 168px;
    left: calc(50% - 240px + 241px);
    width: 305px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 70px;
    background-size: cover;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747312642704"] {
    display: table;
    top: 197px;
    left: 138px;
    height: auto;
  }
  #rec1124289401 .tn-elem[data-elem-id="1747312642704"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747296115209"] {
  z-index: 3;
  top: 224px;
  left: calc(50% - 600px + 480px);
  width: 270px;
  height: 1px;
}
#rec1124289401 .tn-elem[data-elem-id="1747296115209"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 482px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 502px;
    left: calc(50% - 240px + 10px);
    width: 270px;
    height: 1px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747296115209"] {
    display: table;
    top: 400px;
    left: 10px;
    width: 218px;
    height: 1px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297312260"] {
  z-index: 3;
  top: 354px;
  left: calc(50% - 600px + 480px);
  width: 32px;
  height: 32px;
}
#rec1124289401 .tn-elem[data-elem-id="1747297312260"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 390px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 10px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 10px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297312260"] {
    display: table;
    top: 513px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297507029"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 648px);
  width: 32px;
  height: 32px;
}
#rec1124289401 .tn-elem[data-elem-id="1747297507029"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 508px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 128px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 118px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297507029"] {
    display: table;
    top: 582px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1747297709612"] {
  z-index: 3;
  top: 356px;
  left: calc(50% - 600px + 793px);
  width: 32px;
  height: 32px;
}
#rec1124289401 .tn-elem[data-elem-id="1747297709612"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 343px;
    left: calc(50% - 480px + 630px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 589px;
    left: calc(50% - 320px + 250px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 609px;
    left: calc(50% - 240px + 226px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1747297709612"] {
    display: table;
    top: 647px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}
#rec1124289401 .tn-elem[data-elem-id="1751631360021"] {
  z-index: 3;
  top: 165px;
  left: calc(50% - 600px + 712px);
  width: 38px;
  height: 38px;
}
#rec1124289401 .tn-elem[data-elem-id="1751631360021"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"] {
    display: table;
    top: 164px;
    left: calc(50% - 480px + 624px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"] {
    display: table;
    top: 423px;
    left: calc(50% - 320px + 242px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"] {
    display: table;
    top: 443px;
  }
}
@media screen and (max-width: 479px) {
  #rec1124289401 .tn-elem[data-elem-id="1751631360021"] {
    display: table;
    top: 344px;
    left: 268px;
    width: 41px;
    height: 41px;
  }
}

/* ---- assets/inline/css/team_index-909c89d4907e.css ---- */
#rec1108467221 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1108467221 .t396__filter {
  height: 80px;
}
#rec1108467221 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108467221 .t396__artboard,
  #rec1108467221 .t396__filter,
  #rec1108467221 .t396__carrier {
  }
  #rec1108467221 .t396__filter {
  }
  #rec1108467221 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108467221 .t396__artboard,
  #rec1108467221 .t396__filter,
  #rec1108467221 .t396__carrier {
  }
  #rec1108467221 .t396__filter {
  }
  #rec1108467221 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108467221 .t396__artboard,
  #rec1108467221 .t396__filter,
  #rec1108467221 .t396__carrier {
  }
  #rec1108467221 .t396__filter {
  }
  #rec1108467221 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108467221 .t396__artboard,
  #rec1108467221 .t396__filter,
  #rec1108467221 .t396__carrier {
  }
  #rec1108467221 .t396__filter {
  }
  #rec1108467221 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108467221 .tn-elem[data-elem-id="1748507443928"] {
  z-index: 3;
  top: -9px;
  left: calc(50% - 600px + -735px);
  width: 2562px;
  height: 89px;
}
#rec1108467221 .tn-elem[data-elem-id="1748507443928"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507443928"] {
    display: table;
  }
}
#rec1108467221 .tn-elem[data-elem-id="1748507221481"] {
  z-index: 4;
  top: 0px;
  left: calc(50% - 600px + -350px);
  width: 2556px;
  height: 89px;
}
#rec1108467221 .tn-elem[data-elem-id="1748507221481"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    left: calc(50% - 320px + -354px);
  }
}
@media screen and (max-width: 639px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: calc(50% - 240px + -211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1108467221 .tn-elem[data-elem-id="1748507221481"] {
    display: table;
    top: 0px;
    left: -41px;
  }
}

/* ---- assets/inline/css/team_index-3706599d3001.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-e5d9a5b3e8c8.css ---- */
#rec1113059771 .t396__artboard {
  height: 80px;
  background-color: #000000;
}
#rec1113059771 .t396__filter {
  height: 80px;
}
#rec1113059771 .t396__carrier {
  height: 80px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1113059771 .t396__artboard,
  #rec1113059771 .t396__filter,
  #rec1113059771 .t396__carrier {
  }
  #rec1113059771 .t396__filter {
  }
  #rec1113059771 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1113059771 .t396__artboard,
  #rec1113059771 .t396__filter,
  #rec1113059771 .t396__carrier {
    height: 160px;
  }
  #rec1113059771 .t396__filter {
  }
  #rec1113059771 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1113059771 .t396__artboard,
  #rec1113059771 .t396__filter,
  #rec1113059771 .t396__carrier {
    height: 120px;
  }
  #rec1113059771 .t396__filter {
  }
  #rec1113059771 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1113059771 .t396__artboard,
  #rec1113059771 .t396__filter,
  #rec1113059771 .t396__carrier {
    height: 100px;
  }
  #rec1113059771 .t396__filter {
  }
  #rec1113059771 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1113059771 .tn-elem[data-elem-id="1750164845792"] {
  z-index: 3;
  top: 19px;
  left: calc(50% - 600px + 80px);
  width: 500px;
  height: 60px;
}
#rec1113059771 .tn-elem[data-elem-id="1750164845792"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113059771 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    left: calc(50% - 480px + 10px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113059771 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113059771 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113059771 .tn-elem[data-elem-id="1750164845792"] {
    display: table;
    top: 27px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1113059771 .tn-elem[data-elem-id="1750165865211"] {
  z-index: 4;
  top: 19px;
  left: calc(50% - 600px + 620px);
  width: 500px;
  height: 60px;
}
#rec1113059771 .tn-elem[data-elem-id="1750165865211"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113059771 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    left: calc(50% - 480px + 490px);
    width: 460px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113059771 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 87px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 70px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113059771 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 67px;
    width: 460px;
    height: 50px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113059771 .tn-elem[data-elem-id="1750165865211"] {
    display: table;
    top: 61px;
    left: 10px;
    width: 300px;
    height: 35px;
  }
}
#rec1113059771 .tn-elem[data-elem-id="1750166143073"] {
  color: #4f4a4a;
  z-index: 5;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 560px;
  height: auto;
}
#rec1113059771 .tn-elem[data-elem-id="1750166143073"] .tn-atom {
  vertical-align: middle;
  color: #4f4a4a;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113059771 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113059771 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113059771 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1113059771 .tn-elem[data-elem-id="1750166143073"] {
    display: table;
    left: 10px;
    height: auto;
  }
}

/* ---- assets/inline/css/team_index-67f4c4664d86.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-3c3dbfda3141.css ---- */
#rec1108440956 .t396__artboard {
  height: 740px;
  background-color: #000000;
}
#rec1108440956 .t396__filter {
  height: 740px;
}
#rec1108440956 .t396__carrier {
  height: 740px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .t396__artboard,
  #rec1108440956 .t396__filter,
  #rec1108440956 .t396__carrier {
    height: 670px;
  }
  #rec1108440956 .t396__filter {
  }
  #rec1108440956 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .t396__artboard,
  #rec1108440956 .t396__filter,
  #rec1108440956 .t396__carrier {
    height: 1500px;
  }
  #rec1108440956 .t396__filter {
  }
  #rec1108440956 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .t396__artboard,
  #rec1108440956 .t396__filter,
  #rec1108440956 .t396__carrier {
    height: 1270px;
  }
  #rec1108440956 .t396__filter {
  }
  #rec1108440956 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .t396__artboard,
  #rec1108440956 .t396__filter,
  #rec1108440956 .t396__carrier {
    height: 820px;
  }
  #rec1108440956 .t396__filter {
  }
  #rec1108440956 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750175591088"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 553px;
  height: auto;
}
#rec1108440956 .tn-elem[data-elem-id="1750175591088"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    width: 553px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] {
    display: table;
    top: 10px;
    left: calc(50% - 320px + 10px);
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 10px);
    width: 402px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] {
    display: table;
    top: 0px;
    left: 10px;
    width: 289px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] {
    text-align: left;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750175591088"] .tn-atom {
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163679625"] {
  z-index: 4;
  top: 52px;
  left: calc(50% - 600px + 80px);
  width: 520px;
  height: 340px;
}
#rec1108440956 .tn-elem[data-elem-id="1750163679625"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163679625"] {
    display: table;
    top: 58px;
    left: calc(50% - 480px + 10px);
    width: 470px;
    height: 304px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163679625"] {
    display: table;
    top: 61px;
    width: 620px;
    height: 410px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163679625"] {
    display: table;
    width: 460px;
    height: 310px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163679625"] {
    display: table;
    top: 35px;
    width: 300px;
    height: 200px;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163712529"] {
  z-index: 5;
  top: 392px;
  left: calc(50% - 600px + 600px);
  width: 520px;
  height: 340px;
}
#rec1108440956 .tn-elem[data-elem-id="1750163712529"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163712529"] {
    display: table;
    top: 362px;
    left: calc(50% - 480px + 480px);
    width: 470px;
    height: 304px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163712529"] {
    display: table;
    top: 778px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 410px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163712529"] {
    display: table;
    top: 667px;
    width: 460px;
    height: 310px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163712529"] {
    display: table;
    top: 426px;
    left: 10px;
    width: 300px;
    height: 200px;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163688847"] {
  z-index: 6;
  top: 52px;
  left: calc(50% - 600px + 600px);
  width: 520px;
  height: 340px;
}
#rec1108440956 .tn-elem[data-elem-id="1750163688847"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163688847"] {
    display: table;
    top: 58px;
    left: calc(50% - 480px + 480px);
    width: 470px;
    height: 304px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163688847"] {
    display: table;
    top: 1188px;
    left: calc(50% - 320px + 10px);
    width: 620px;
    height: 307px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163688847"] {
    display: table;
    top: 976px;
    width: 460px;
    height: 290px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163688847"] {
    display: table;
    top: 626px;
    left: 10px;
    width: 300px;
    height: 192px;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163718385"] {
  z-index: 7;
  top: 392px;
  left: calc(50% - 600px + 80px);
  width: 520px;
  height: 340px;
}
#rec1108440956 .tn-elem[data-elem-id="1750163718385"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163718385"] {
    display: table;
    top: 362px;
    left: calc(50% - 480px + 10px);
    width: 470px;
    height: 304px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163718385"] {
    display: table;
    top: 471px;
    width: 620px;
    height: 307px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163718385"] {
    display: table;
    top: 370px;
    width: 460px;
    height: 297px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163718385"] {
    display: table;
    top: 234px;
    width: 300px;
    height: 192px;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163728977"] {
  color: #000000;
  z-index: 8;
  top: 82px;
  left: calc(50% - 600px + 640px);
  width: 363px;
  height: auto;
}
#rec1108440956 .tn-elem[data-elem-id="1750163728977"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 80px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163728977"] {
    display: table;
    top: 73px;
    left: calc(50% - 480px + 520px);
    width: 323px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163728977"] {
    display: table;
    top: 1188px;
    left: calc(50% - 320px + 60px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163728977"] {
    display: table;
    top: 976px;
    left: calc(50% - 240px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163728977"] {
    display: table;
    top: 626px;
    left: 30px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163728977"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163771981"] {
  color: #000000;
  z-index: 9;
  top: 402px;
  left: calc(50% - 600px + 120px);
  width: 355px;
  height: auto;
}
#rec1108440956 .tn-elem[data-elem-id="1750163771981"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 80px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163771981"] {
    display: table;
    top: 371px;
    left: calc(50% - 480px + 50px);
    width: 315px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163771981"] {
    display: table;
    top: 471px;
    left: calc(50% - 320px + 50px);
    width: 416px;
    height: 125px;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163771981"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163771981"] {
    display: table;
    top: 370px;
    left: calc(50% - 240px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163771981"] {
    display: table;
    top: 234px;
    left: 30px;
    width: 178px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163771981"] .tn-atom {
    font-size: 50px;
    background-size: cover;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163865046"] {
  color: #ffffff;
  text-align: center;
  z-index: 10;
  top: 637px;
  left: calc(50% - 600px + 120px);
  width: 200px;
  height: 55px;
}
#rec1108440956 .tn-elem[data-elem-id="1750163865046"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1108440956 .tn-elem[data-elem-id="1750163865046"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163865046"] {
    display: block;
    top: 569px;
    left: calc(50% - 480px + 50px);
    width: 178px;
    height: 49px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163865046"] {
    display: block;
    top: 675px;
    left: calc(50% - 320px + 50px);
    width: 235px;
    height: 63px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163865046"] {
    display: block;
    top: 574px;
    left: calc(50% - 240px + 40px);
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163865046"] {
    display: block;
    top: 364px;
    left: 30px;
    width: 150px;
    height: 42px;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163865046"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163879332"] {
  color: #ffffff;
  text-align: center;
  z-index: 11;
  top: 297px;
  left: calc(50% - 600px + 640px);
  width: 200px;
  height: 55px;
}
#rec1108440956 .tn-elem[data-elem-id="1750163879332"] .tn-atom {
  color: #ffffff;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1108440956 .tn-elem[data-elem-id="1750163879332"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163879332"] {
    display: block;
    top: 265px;
    left: calc(50% - 480px + 520px);
    width: 178px;
    height: 49px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163879332"] {
    display: block;
    top: 1392px;
    left: calc(50% - 320px + 60px);
    width: 235px;
    height: 63px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163879332"] {
    display: block;
    top: 1173px;
    left: calc(50% - 240px + 40px);
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163879332"] {
    display: block;
    top: 756px;
    left: 35px;
    width: 150px;
    height: 42px;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163879332"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163902251"] {
  color: #000000;
  z-index: 12;
  top: 534px;
  left: calc(50% - 600px + 120px);
  width: 459px;
  height: auto;
}
#rec1108440956 .tn-elem[data-elem-id="1750163902251"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163902251"] {
    display: table;
    top: 489px;
    left: calc(50% - 480px + 50px);
    width: 408px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163902251"] {
    display: table;
    top: 578px;
    left: calc(50% - 320px + 50px);
    width: 539px;
    height: 77px;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163902251"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163902251"] {
    display: table;
    top: 494px;
    left: calc(50% - 240px + 40px);
    width: 416px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163902251"] {
    display: table;
    top: 307px;
    left: 30px;
    width: 263px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163902251"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108440956 .tn-elem[data-elem-id="1750163917864"] {
  color: #000000;
  z-index: 13;
  top: 207px;
  left: calc(50% - 600px + 640px);
  width: 459px;
  height: auto;
}
#rec1108440956 .tn-elem[data-elem-id="1750163917864"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163917864"] {
    display: table;
    top: 184px;
    left: calc(50% - 480px + 520px);
    width: 408px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163917864"] {
    display: table;
    top: 1295px;
    left: calc(50% - 320px + 60px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163917864"] {
    display: table;
    top: 1093px;
    left: calc(50% - 240px + 40px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1108440956 .tn-elem[data-elem-id="1750163917864"] {
    display: table;
    top: 699px;
    left: 35px;
    width: 256px;
    height: auto;
  }
  #rec1108440956 .tn-elem[data-elem-id="1750163917864"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/team_index-93f982baa3ce.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-19c91d034d13.css ---- */
#rec1108139256 .t396__artboard {
  height: 30px;
  background-color: #000000;
}
#rec1108139256 .t396__filter {
  height: 30px;
}
#rec1108139256 .t396__carrier {
  height: 30px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108139256 .t396__artboard,
  #rec1108139256 .t396__filter,
  #rec1108139256 .t396__carrier {
  }
  #rec1108139256 .t396__filter {
  }
  #rec1108139256 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108139256 .t396__artboard,
  #rec1108139256 .t396__filter,
  #rec1108139256 .t396__carrier {
  }
  #rec1108139256 .t396__filter {
  }
  #rec1108139256 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108139256 .t396__artboard,
  #rec1108139256 .t396__filter,
  #rec1108139256 .t396__carrier {
  }
  #rec1108139256 .t396__filter {
  }
  #rec1108139256 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108139256 .t396__artboard,
  #rec1108139256 .t396__filter,
  #rec1108139256 .t396__carrier {
    height: 20px;
  }
  #rec1108139256 .t396__filter {
  }
  #rec1108139256 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108139256 .tn-elem[data-elem-id="1747395034293"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + 80px);
  width: 157px;
  height: auto;
}
#rec1108139256 .tn-elem[data-elem-id="1747395034293"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    top: 0px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] {
    display: table;
    top: -1px;
    left: 10px;
    width: 427px;
    height: auto;
  }
  #rec1108139256 .tn-elem[data-elem-id="1747395034293"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}

/* ---- assets/inline/css/team_index-1f68c91f7058.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-0d886b0a4ded.css ---- */
#rec1108212246 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1108212246 .t396__filter {
  height: 300px;
}
#rec1108212246 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .t396__artboard,
  #rec1108212246 .t396__filter,
  #rec1108212246 .t396__carrier {
    height: 279px;
  }
  #rec1108212246 .t396__filter {
  }
  #rec1108212246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .t396__artboard,
  #rec1108212246 .t396__filter,
  #rec1108212246 .t396__carrier {
    height: 739px;
  }
  #rec1108212246 .t396__filter {
  }
  #rec1108212246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .t396__artboard,
  #rec1108212246 .t396__filter,
  #rec1108212246 .t396__carrier {
    height: 570px;
  }
  #rec1108212246 .t396__filter {
  }
  #rec1108212246 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .t396__artboard,
  #rec1108212246 .t396__filter,
  #rec1108212246 .t396__carrier {
    height: 400px;
  }
  #rec1108212246 .t396__filter {
  }
  #rec1108212246 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: 168px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: 224px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1108212246 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 11px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 348px);
  width: 168px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 250px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 177px;
    left: 170px;
    width: 98px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1736350073097"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 348px);
  width: 224px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 250px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 156px;
    left: 170px;
    width: 79px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1108212246 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 490px);
    width: 168px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 719px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 554px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 385px;
    left: 10px;
    width: 60px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1748356113901"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 615px);
  width: 224px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 490px);
    width: 224px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 698px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 533px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 364px;
    left: 10px;
    width: 83px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1108212246 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 383px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 298px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 209px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 881px);
  width: 168px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 732px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 723px;
    left: calc(50% - 320px + 320px);
    width: 168px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 552px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 385px;
    left: 168px;
    width: 85px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1736350076558"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 881px);
  width: 224px;
  height: auto;
}
#rec1108212246 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 732px);
    width: 224px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 702px;
    left: calc(50% - 320px + 320px);
    width: 224px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 533px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 364px;
    left: 168px;
    width: 80px;
    height: auto;
  }
  #rec1108212246 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1108212246 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 298px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 209px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108212246 .tn-elem[data-elem-id="1750174460396"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -465px);
  width: 365px;
  height: 310px;
}
#rec1108212246 .tn-elem[data-elem-id="1750174460396"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108212246 .tn-elem[data-elem-id="1750174460396"] {
    display: table;
    top: 7px;
    left: calc(50% - 480px + -397px);
    height: 240px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108212246 .tn-elem[data-elem-id="1750174460396"] {
    display: table;
    top: 0px;
    left: calc(50% - 320px + -355px);
  }
}
@media screen and (max-width: 639px) {
  #rec1108212246 .tn-elem[data-elem-id="1750174460396"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108212246 .tn-elem[data-elem-id="1750174460396"] {
    display: table;
  }
}

/* ---- assets/inline/css/team_index-d18de6c9b1d2.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-902576eb4a70.css ---- */
#rec1108877711 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1108877711 .t396__filter {
  height: 300px;
}
#rec1108877711 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .t396__artboard,
  #rec1108877711 .t396__filter,
  #rec1108877711 .t396__carrier {
    height: 279px;
  }
  #rec1108877711 .t396__filter {
  }
  #rec1108877711 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .t396__artboard,
  #rec1108877711 .t396__filter,
  #rec1108877711 .t396__carrier {
    height: 739px;
  }
  #rec1108877711 .t396__filter {
  }
  #rec1108877711 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .t396__artboard,
  #rec1108877711 .t396__filter,
  #rec1108877711 .t396__carrier {
    height: 560px;
  }
  #rec1108877711 .t396__filter {
  }
  #rec1108877711 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .t396__artboard,
  #rec1108877711 .t396__filter,
  #rec1108877711 .t396__carrier {
    height: 400px;
  }
  #rec1108877711 .t396__filter {
  }
  #rec1108877711 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    width: 156px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1108877711 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 250px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    opacity: 0.8;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 177px;
    left: 170px;
    width: 66px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1736350073097"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 250px);
    width: 170px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 156px;
    left: 170px;
    width: 113px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1108877711 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 490px);
    width: 168px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 719px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 545px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 385px;
    left: 10px;
    width: 90px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1748356113901"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 490px);
    width: 224px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 698px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 364px;
    left: 10px;
    width: 84px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1108877711 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 383px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 209px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 732px);
    width: 101px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 723px;
    left: calc(50% - 320px + 320px);
    width: 168px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 543px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 385px;
    left: 168px;
    width: 81px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1736350076558"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 881px);
  width: 224px;
  height: auto;
}
#rec1108877711 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 732px);
    width: 224px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 702px;
    left: calc(50% - 320px + 320px);
    width: 224px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 364px;
    left: 168px;
    width: 81px;
    height: auto;
  }
  #rec1108877711 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1108877711 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 209px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108877711 .tn-elem[data-elem-id="1750174867778"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -341px);
  width: 241px;
  height: 285px;
}
#rec1108877711 .tn-elem[data-elem-id="1750174867778"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108877711 .tn-elem[data-elem-id="1750174867778"] {
    display: table;
    left: calc(50% - 480px + -273px);
    height: 230px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108877711 .tn-elem[data-elem-id="1750174867778"] {
    display: table;
    left: calc(50% - 320px + -241px);
  }
}
@media screen and (max-width: 639px) {
  #rec1108877711 .tn-elem[data-elem-id="1750174867778"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108877711 .tn-elem[data-elem-id="1750174867778"] {
    display: table;
  }
}

/* ---- assets/inline/css/team_index-b531205667ac.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-0a4087bc07fe.css ---- */
#rec1108893006 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1108893006 .t396__filter {
  height: 300px;
}
#rec1108893006 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .t396__artboard,
  #rec1108893006 .t396__filter,
  #rec1108893006 .t396__carrier {
    height: 279px;
  }
  #rec1108893006 .t396__filter {
  }
  #rec1108893006 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .t396__artboard,
  #rec1108893006 .t396__filter,
  #rec1108893006 .t396__carrier {
    height: 739px;
  }
  #rec1108893006 .t396__filter {
  }
  #rec1108893006 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .t396__artboard,
  #rec1108893006 .t396__filter,
  #rec1108893006 .t396__carrier {
    height: 560px;
  }
  #rec1108893006 .t396__filter {
  }
  #rec1108893006 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .t396__artboard,
  #rec1108893006 .t396__filter,
  #rec1108893006 .t396__carrier {
    height: 400px;
  }
  #rec1108893006 .t396__filter {
  }
  #rec1108893006 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    width: 119px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1108893006 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 250px);
    width: 174px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 177px;
    left: 170px;
    width: 139px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1736350073097"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 250px);
    width: 109px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 156px;
    left: 170px;
    width: 73px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1108893006 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 490px);
    width: 168px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 719px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 545px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 385px;
    left: 10px;
    width: 115px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1748356113901"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 490px);
    width: 224px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 698px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 364px;
    left: 10px;
    width: 77px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1108893006 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 383px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 209px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 732px);
    width: 161px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 723px;
    left: calc(50% - 320px + 320px);
    width: 168px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 543px;
    left: calc(50% - 240px + 250px);
    width: 161px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 385px;
    left: 168px;
    width: 128px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1736350076558"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 881px);
  width: 224px;
  height: auto;
}
#rec1108893006 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 732px);
    width: 224px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 702px;
    left: calc(50% - 320px + 320px);
    width: 224px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 364px;
    left: 168px;
    width: 77px;
    height: auto;
  }
  #rec1108893006 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1108893006 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 209px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108893006 .tn-elem[data-elem-id="1750175003080"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -328px);
  width: 348px;
  height: 170px;
}
#rec1108893006 .tn-elem[data-elem-id="1750175003080"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108893006 .tn-elem[data-elem-id="1750175003080"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1108893006 .tn-elem[data-elem-id="1750175003080"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1108893006 .tn-elem[data-elem-id="1750175003080"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108893006 .tn-elem[data-elem-id="1750175003080"] {
    display: table;
    left: -322px;
    width: 322px;
  }
}

/* ---- assets/inline/css/team_index-62736d0ea680.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-82b05d41715d.css ---- */
#rec1108906566 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1108906566 .t396__filter {
  height: 300px;
}
#rec1108906566 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .t396__artboard,
  #rec1108906566 .t396__filter,
  #rec1108906566 .t396__carrier {
    height: 279px;
  }
  #rec1108906566 .t396__filter {
  }
  #rec1108906566 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .t396__artboard,
  #rec1108906566 .t396__filter,
  #rec1108906566 .t396__carrier {
    height: 739px;
  }
  #rec1108906566 .t396__filter {
  }
  #rec1108906566 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .t396__artboard,
  #rec1108906566 .t396__filter,
  #rec1108906566 .t396__carrier {
    height: 560px;
  }
  #rec1108906566 .t396__filter {
  }
  #rec1108906566 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .t396__artboard,
  #rec1108906566 .t396__filter,
  #rec1108906566 .t396__carrier {
    height: 410px;
  }
  #rec1108906566 .t396__filter {
  }
  #rec1108906566 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    line-height: 1.55;
    letter-spacing: 0px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    width: 171px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1108906566 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 250px);
    width: 165px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 177px;
    left: 170px;
    width: 132px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1736350073097"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 250px);
    width: 96px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 156px;
    left: 170px;
    width: 64px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1108906566 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 490px);
    width: 168px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 719px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 545px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    opacity: 1;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 385px;
    left: 10px;
    width: 107px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1748356113901"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 490px);
    width: 224px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 698px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 364px;
    left: 10px;
    width: 62px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1108906566 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 383px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 209px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 732px);
    width: 232px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 723px;
    left: calc(50% - 320px + 330px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 543px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 385px;
    left: 170px;
    width: 142px;
    height: 24px;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1736350076558"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 881px);
  width: 224px;
  height: auto;
}
#rec1108906566 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 732px);
    width: 224px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 702px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 364px;
    left: 170px;
    width: 85px;
    height: auto;
  }
  #rec1108906566 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1108906566 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 209px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108906566 .tn-elem[data-elem-id="1750175167985"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -340px);
  width: 358px;
  height: 170px;
}
#rec1108906566 .tn-elem[data-elem-id="1750175167985"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108906566 .tn-elem[data-elem-id="1750175167985"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1108906566 .tn-elem[data-elem-id="1750175167985"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1108906566 .tn-elem[data-elem-id="1750175167985"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108906566 .tn-elem[data-elem-id="1750175167985"] {
    display: table;
  }
}

/* ---- assets/inline/css/team_index-ab73a3a8b051.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-b5c157eea54f.css ---- */
#rec1108914946 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1108914946 .t396__filter {
  height: 300px;
}
#rec1108914946 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .t396__artboard,
  #rec1108914946 .t396__filter,
  #rec1108914946 .t396__carrier {
    height: 279px;
  }
  #rec1108914946 .t396__filter {
  }
  #rec1108914946 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .t396__artboard,
  #rec1108914946 .t396__filter,
  #rec1108914946 .t396__carrier {
    height: 739px;
  }
  #rec1108914946 .t396__filter {
  }
  #rec1108914946 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .t396__artboard,
  #rec1108914946 .t396__filter,
  #rec1108914946 .t396__carrier {
    height: 570px;
  }
  #rec1108914946 .t396__filter {
  }
  #rec1108914946 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .t396__artboard,
  #rec1108914946 .t396__filter,
  #rec1108914946 .t396__carrier {
    height: 400px;
  }
  #rec1108914946 .t396__filter {
  }
  #rec1108914946 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: 151px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    width: 118px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1108914946 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 348px);
  width: 165px;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 250px);
    width: 174px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 177px;
    left: 170px;
    width: 128px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1736350073097"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 250px);
    width: 118px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 156px;
    left: 170px;
    width: 78px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    transform: rotate(1deg);
  }
}
#rec1108914946 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1108914946 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 490px);
    width: 168px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 719px;
    left: calc(50% - 320px + 10px);
    width: 168px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 549px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 385px;
    left: 10px;
    width: 117px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1748356113901"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 490px);
    width: 224px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 698px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 528px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 364px;
    left: 10px;
    width: 72px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1108914946 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 383px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 293px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 209px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 732px);
    width: 154px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 723px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 547px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 385px;
    left: 168px;
    width: 123px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1736350076558"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 881px);
  width: 224px;
  height: auto;
}
#rec1108914946 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 732px);
    width: 224px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 702px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 528px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 364px;
    left: 168px;
    width: 84px;
    height: auto;
  }
  #rec1108914946 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1108914946 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 293px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 209px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108914946 .tn-elem[data-elem-id="1750175241657"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -320px);
  width: 340px;
  height: 217px;
}
#rec1108914946 .tn-elem[data-elem-id="1750175241657"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108914946 .tn-elem[data-elem-id="1750175241657"] {
    display: table;
    left: calc(50% - 480px + -340px);
  }
}
@media screen and (max-width: 959px) {
  #rec1108914946 .tn-elem[data-elem-id="1750175241657"] {
    display: table;
    left: calc(50% - 320px + -340px);
  }
}
@media screen and (max-width: 639px) {
  #rec1108914946 .tn-elem[data-elem-id="1750175241657"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108914946 .tn-elem[data-elem-id="1750175241657"] {
    display: table;
  }
}

/* ---- assets/inline/css/team_index-96116467d1d7.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-1297de116406.css ---- */
#rec1108922016 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1108922016 .t396__filter {
  height: 300px;
}
#rec1108922016 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .t396__artboard,
  #rec1108922016 .t396__filter,
  #rec1108922016 .t396__carrier {
    height: 279px;
  }
  #rec1108922016 .t396__filter {
  }
  #rec1108922016 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .t396__artboard,
  #rec1108922016 .t396__filter,
  #rec1108922016 .t396__carrier {
    height: 739px;
  }
  #rec1108922016 .t396__filter {
  }
  #rec1108922016 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .t396__artboard,
  #rec1108922016 .t396__filter,
  #rec1108922016 .t396__carrier {
    height: 560px;
  }
  #rec1108922016 .t396__filter {
  }
  #rec1108922016 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .t396__artboard,
  #rec1108922016 .t396__filter,
  #rec1108922016 .t396__carrier {
    height: 420px;
  }
  #rec1108922016 .t396__filter {
  }
  #rec1108922016 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: 143px;
    height: 24px;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    width: 91px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1108922016 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1736350073103"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 250px);
    width: 167px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 330px);
    width: 168px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] {
    display: table;
    top: 177px;
    left: 170px;
    width: 133px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073103"] .tn-atom {
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1736350073097"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 348px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 250px);
    width: 123px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 330px);
    width: 224px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] {
    display: table;
    top: 156px;
    left: 170px;
    width: 82px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350073097"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1748622686523"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 348px);
  width: 240px;
  height: 240px;
}
#rec1108922016 .tn-elem[data-elem-id="1748622686523"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622686523"] {
    display: table;
    top: 1px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1748356113957"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 490px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 719px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 545px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] {
    display: table;
    top: 397px;
    left: 10px;
    width: 140px;
    height: 24px;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113957"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1748356113901"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 615px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 490px);
    width: 224px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 698px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] {
    display: table;
    top: 376px;
    left: 10px;
    width: 60px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1748356113901"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1748622709701"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 615px);
  width: 240px;
  height: 240px;
}
#rec1108922016 .tn-elem[data-elem-id="1748622709701"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 490px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 383px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622709701"] {
    display: table;
    top: 221px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1736350076552"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 881px);
  width: auto;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 732px);
    width: 185px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 723px;
    left: calc(50% - 320px + 320px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 545px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] {
    display: table;
    top: 397px;
    left: 168px;
    width: 141px;
    height: 24px;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350076552"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1736350076558"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 881px);
  width: 224px;
  height: auto;
}
#rec1108922016 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
  vertical-align: middle;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 732px);
    width: 224px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 702px;
    left: calc(50% - 320px + 320px);
    width: 224px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 524px;
    left: calc(50% - 240px + 250px);
    width: auto;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] {
    display: table;
    top: 376px;
    left: 168px;
    width: 73px;
    height: auto;
  }
  #rec1108922016 .tn-elem[data-elem-id="1736350076558"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1748622733754"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 881px);
  width: 240px;
  height: 240px;
}
#rec1108922016 .tn-elem[data-elem-id="1748622733754"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 730px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 387px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 289px;
    left: calc(50% - 240px + 250px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1748622733754"] {
    display: table;
    top: 221px;
    left: 170px;
    width: 140px;
    height: 140px;
  }
}
#rec1108922016 .tn-elem[data-elem-id="1750175300327"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -339px);
  width: 359px;
  height: 170px;
}
#rec1108922016 .tn-elem[data-elem-id="1750175300327"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1108922016 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1108922016 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1108922016 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1108922016 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
    left: -275px;
    width: 275px;
    height: 171px;
  }
}

/* ---- assets/inline/css/team_index-8dab3a061d18.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-102e35bbb5c8.css ---- */
#rec1208442226 .t396__artboard {
  height: 300px;
  background-color: #000000;
  overflow: auto;
}
#rec1208442226 .t396__filter {
  height: 300px;
}
#rec1208442226 .t396__carrier {
  height: 300px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1208442226 .t396__artboard,
  #rec1208442226 .t396__filter,
  #rec1208442226 .t396__carrier {
    height: 279px;
  }
  #rec1208442226 .t396__filter {
  }
  #rec1208442226 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1208442226 .t396__artboard,
  #rec1208442226 .t396__filter,
  #rec1208442226 .t396__carrier {
    height: 359px;
  }
  #rec1208442226 .t396__filter {
  }
  #rec1208442226 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1208442226 .t396__artboard,
  #rec1208442226 .t396__filter,
  #rec1208442226 .t396__carrier {
    height: 270px;
  }
  #rec1208442226 .t396__filter {
  }
  #rec1208442226 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1208442226 .t396__artboard,
  #rec1208442226 .t396__filter,
  #rec1208442226 .t396__carrier {
    height: 200px;
  }
  #rec1208442226 .t396__filter {
  }
  #rec1208442226 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1208442226 .tn-elem[data-elem-id="1736349806083"] {
  color: #f8f8f8;
  z-index: 3;
  top: 276px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1208442226 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #f8f8f8;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 259px;
    left: calc(50% - 480px + 10px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 337px;
    left: calc(50% - 320px + 10px);
    width: auto;
    height: auto;
  }
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 257px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 8px;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 479px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] {
    display: table;
    top: 177px;
    left: 10px;
    width: 143px;
    height: 24px;
  }
  #rec1208442226 .tn-elem[data-elem-id="1736349806083"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 8px;
    background-size: cover;
  }
}
#rec1208442226 .tn-elem[data-elem-id="1736349543932"] {
  color: #eb1414;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 80px);
  width: auto;
  height: auto;
}
#rec1208442226 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #eb1414;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 238px;
    left: calc(50% - 480px + 10px);
    width: 103px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 316px;
    left: calc(50% - 320px + 10px);
    width: 224px;
    height: auto;
  }
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 236px;
    left: calc(50% - 240px + 10px);
    width: auto;
    height: auto;
  }
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] {
    display: table;
    top: 156px;
    left: 10px;
    width: auto;
    height: auto;
  }
  #rec1208442226 .tn-elem[data-elem-id="1736349543932"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1208442226 .tn-elem[data-elem-id="1748622593976"] {
  z-index: 3;
  top: 1px;
  left: calc(50% - 600px + 80px);
  width: 240px;
  height: 240px;
}
#rec1208442226 .tn-elem[data-elem-id="1748622593976"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1208442226 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 480px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 959px) {
  #rec1208442226 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1208442226 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 479px) {
  #rec1208442226 .tn-elem[data-elem-id="1748622593976"] {
    display: table;
    top: 1px;
    left: 10px;
    width: 140px;
    height: 140px;
  }
}
#rec1208442226 .tn-elem[data-elem-id="1750175300327"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -339px);
  width: 359px;
  height: 170px;
}
#rec1208442226 .tn-elem[data-elem-id="1750175300327"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1208442226 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1208442226 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1208442226 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1208442226 .tn-elem[data-elem-id="1750175300327"] {
    display: table;
    left: -275px;
    width: 275px;
    height: 171px;
  }
}
#rec1208442226 .tn-elem[data-elem-id="1754565830561"] {
  z-index: 3;
  top: 142px;
  left: calc(50% - 600px + -718px);
  width: 200px;
  height: auto;
}
#rec1208442226 .tn-elem[data-elem-id="1754565830561"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1208442226 .tn-elem[data-elem-id="1754565830561"] .tn-atom__img {
  border-radius: 0px 0px 0px 0px;
  object-position: center center;
}
@media screen and (max-width: 1199px) {
  #rec1208442226 .tn-elem[data-elem-id="1754565830561"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1208442226 .tn-elem[data-elem-id="1754565830561"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1208442226 .tn-elem[data-elem-id="1754565830561"] {
    display: table;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1208442226 .tn-elem[data-elem-id="1754565830561"] {
    display: table;
    height: auto;
  }
}

/* ---- assets/inline/css/team_index-41589a1ebeb3.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-9ef51b4ae9f3.css ---- */
#rec1113064831 .t396__artboard {
  height: 400px;
  background-color: #000000;
}
#rec1113064831 .t396__filter {
  height: 400px;
}
#rec1113064831 .t396__carrier {
  height: 400px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .t396__artboard,
  #rec1113064831 .t396__filter,
  #rec1113064831 .t396__carrier {
  }
  #rec1113064831 .t396__filter {
  }
  #rec1113064831 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .t396__artboard,
  #rec1113064831 .t396__filter,
  #rec1113064831 .t396__carrier {
    height: 360px;
  }
  #rec1113064831 .t396__filter {
  }
  #rec1113064831 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .t396__artboard,
  #rec1113064831 .t396__filter,
  #rec1113064831 .t396__carrier {
    height: 660px;
  }
  #rec1113064831 .t396__filter {
  }
  #rec1113064831 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .t396__artboard,
  #rec1113064831 .t396__filter,
  #rec1113064831 .t396__carrier {
    height: 549px;
  }
  #rec1113064831 .t396__filter {
  }
  #rec1113064831 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1734444925865"] {
  color: #a5a5a5;
  z-index: 3;
  top: 82px;
  left: calc(50% - 600px + 761px);
  width: 299px;
  height: auto;
}
#rec1113064831 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 590px);
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 60px;
    left: calc(50% - 320px + 329px);
    width: 268px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 57px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] {
    display: table;
    top: 59px;
    width: 295px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444925865"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1747748205706"] {
  z-index: 4;
  top: 158px;
  left: calc(50% - 600px + 760px);
  width: 360px;
  height: auto;
}
#rec1113064831 .tn-elem[data-elem-id="1747748205706"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 590px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 113px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 122px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1747748205706"] {
    display: table;
    top: 105px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1747996074770"] {
  z-index: 5;
  top: 373px;
  left: calc(50% - 600px + 1100px);
  width: 100px;
  height: 100px;
}
#rec1113064831 .tn-elem[data-elem-id="1747996074770"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1113064831 .tn-elem[data-elem-id="1747996074770"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 370px;
    left: calc(50% - 480px + 929px);
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 332px;
    left: calc(50% - 320px + 607px);
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 345px;
    left: calc(50% - 240px + 442px);
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1747996074770"] {
    display: table;
    top: 328px;
    left: 285px;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1734444979691"] {
  color: #ffffff;
  z-index: 6;
  top: 3px;
  left: calc(50% - 600px + 761px);
  width: 346px;
  height: auto;
}
#rec1113064831 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 47px;
    left: calc(50% - 480px + 590px);
    width: 273px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 3px;
    left: calc(50% - 320px + 329px);
    width: 283px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 1px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] {
    display: table;
    top: 2px;
    left: 10px;
    width: 280px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1734444979691"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1747839805877"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 7;
  top: 16px;
  left: calc(50% - 600px + 420px);
  width: 352px;
  height: 300px;
}
#rec1113064831 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 150px;
  font-family: "CYBER", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 289px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: -18px;
    left: calc(50% - 320px + 10px);
    width: 265px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 345px;
    left: calc(50% - 240px + 244px);
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
    font-size: 130px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1747839805877"] {
    display: table;
    top: 306px;
    left: 136px;
    height: auto;
  }
  #rec1113064831 .tn-elem[data-elem-id="1747839805877"] .tn-atom {
    font-size: 100px;
    background-size: cover;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1747747827856"] {
  z-index: 8;
  top: -129px;
  left: calc(50% - 600px + 74px);
  width: 640px;
  height: 640px;
}
#rec1113064831 .tn-elem[data-elem-id="1747747827856"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1113064831 .tn-elem[data-elem-id="1747747827856"] .tn-atom {
  -webkit-transform: rotate(359deg);
  -moz-transform: rotate(359deg);
  transform: rotate(359deg);
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: -67px;
    left: calc(50% - 480px + 10px);
    width: 545px;
    height: 545px;
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 30px;
    left: calc(50% - 320px + 7px);
    width: 417px;
    height: 417px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 286px;
    left: calc(50% - 240px + 6px);
    width: 470px;
    height: 470px;
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1747747827856"] {
    display: table;
    top: 310px;
    left: 10px;
    width: 300px;
    height: 296px;
  }
}
#rec1113064831 .tn-elem[data-elem-id="1747750359607"] {
  z-index: 10;
  top: 189px;
  left: calc(50% - 600px + 80px);
  width: 270px;
  height: 270px;
}
#rec1113064831 .tn-elem[data-elem-id="1747750359607"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1113064831 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    left: calc(50% - 480px + 10px);
  }
}
@media screen and (max-width: 959px) {
  #rec1113064831 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 187px;
    left: calc(50% - 320px + 10px);
    width: 221px;
    height: 221px;
  }
}
@media screen and (max-width: 639px) {
  #rec1113064831 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 487px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1113064831 .tn-elem[data-elem-id="1747750359607"] {
    display: table;
    top: 429px;
    left: 10px;
    width: 150px;
    height: 150px;
  }
}

/* ---- assets/inline/css/team_index-5c567e4ae87f.css ---- */
#rec1113064831 [data-elem-id="1747748205706"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831 [data-elem-id="1747748205706"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831 [data-elem-id="1747748205706"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831 [data-elem-id="1747748205706"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831
  [data-elem-id="1747748205706"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831 [data-elem-id="1747748205706"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831 [data-elem-id="1747748205706"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1113064831 [data-elem-id="1747748205706"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/team_index-40e77af65cf9.css ---- */
#rec1113064831 [data-elem-id="1747748205706"] .t-input-block input[type="text"],
#rec1113064831 [data-elem-id="1747748205706"] .t-input-block input[type="tel"],
#rec1113064831 [data-elem-id="1747748205706"] .t-input-block input[type="url"],
#rec1113064831
  [data-elem-id="1747748205706"]
  .t-input-block
  input[type="email"],
#rec1113064831
  [data-elem-id="1747748205706"]
  .t-input-block
  .t-input-phonemask__select,
#rec1113064831 [data-elem-id="1747748205706"] .t-input-block textarea,
#rec1113064831 [data-elem-id="1747748205706"] .t-input-block select,
#rec1113064831 [data-elem-id="1747748205706"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/team_index-545234425a34.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-dc17fda7e9e7.css ---- */
#rec1179556586 .t396__artboard {
  height: 280px;
  background-color: #000000;
}
#rec1179556586 .t396__filter {
  height: 280px;
}
#rec1179556586 .t396__carrier {
  height: 280px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .t396__artboard,
  #rec1179556586 .t396__filter,
  #rec1179556586 .t396__carrier {
  }
  #rec1179556586 .t396__filter {
  }
  #rec1179556586 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .t396__artboard,
  #rec1179556586 .t396__filter,
  #rec1179556586 .t396__carrier {
  }
  #rec1179556586 .t396__filter {
  }
  #rec1179556586 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .t396__artboard,
  #rec1179556586 .t396__filter,
  #rec1179556586 .t396__carrier {
  }
  #rec1179556586 .t396__filter {
  }
  #rec1179556586 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .t396__artboard,
  #rec1179556586 .t396__filter,
  #rec1179556586 .t396__carrier {
    height: 720px;
  }
  #rec1179556586 .t396__filter {
  }
  #rec1179556586 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747731093258"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 80px);
  width: 313px;
  height: 257px;
}
#rec1179556586 .tn-elem[data-elem-id="1747731093258"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 11px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 11px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 11px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747731093258"] {
    display: table;
    top: 1px;
    left: 11px;
    width: 300px;
    height: 217px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1748338987570"] {
  z-index: 3;
  top: 17px;
  left: calc(50% - 600px + 131px);
  width: 257px;
  height: 257px;
}
#rec1179556586 .tn-elem[data-elem-id="1748338987570"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 60px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 17px;
    left: calc(50% - 240px + 60px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1748338987570"] {
    display: table;
    top: 6px;
    left: 87px;
    width: 220px;
    height: 220px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747843115036"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747843115036"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747843115036"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747843115036"] {
    display: table;
    top: 168px;
    left: 32px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823555"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 120px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747641823555"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823555"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179556586
  .tn-elem[data-elem-id="1747641823555"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823555"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823555"] {
    display: block;
    top: 168px;
    left: 31px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823584"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 125px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823584"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 56px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 56px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 56px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823584"] {
    display: table;
    top: 173px;
    left: 36px;
    width: 20px;
    height: 20px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899376007"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899376007"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899376007"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899376007"] {
    display: table;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823558"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 160px);
  width: 30px;
  height: 30px;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823558"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179556586
  .tn-elem[data-elem-id="1747641823558"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823558"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 91px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 91px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 91px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823558"] {
    display: block;
    top: 168px;
    left: 72px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823566"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 165px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823566"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 96px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 96px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 96px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823566"] {
    display: table;
    top: 173px;
    left: 77px;
    width: 20px;
    height: 20px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899501429"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899501429"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899501429"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899501429"] {
    display: table;
    top: 168px;
    left: 112px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823578"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 200px);
  width: 30px;
  height: 30px;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823578"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179556586
  .tn-elem[data-elem-id="1747641823578"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823578"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 131px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 131px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 131px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823578"] {
    display: block;
    top: 168px;
    left: 112px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823581"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 205px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823581"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 136px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 136px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 136px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823581"] {
    display: table;
    top: 173px;
    left: 117px;
    width: 20px;
    height: 20px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1751014255987"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1751014255987"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1751014255987"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014255987"] {
    display: table;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1751014256015"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 240px);
  width: 30px;
  height: 30px;
}
#rec1179556586 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1751014256015"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179556586
  .tn-elem[data-elem-id="1751014256015"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179556586 .tn-elem[data-elem-id="1751014256015"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 171px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 171px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 171px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256015"] {
    display: block;
    top: 168px;
    left: 152px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1751014256062"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 245px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179556586 .tn-elem[data-elem-id="1751014256062"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 176px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 176px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 176px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1751014256062"] {
    display: table;
    top: 173px;
    left: 157px;
    width: 20px;
    height: 20px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899420191"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899420191"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899420191"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899420191"] {
    display: table;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823560"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 280px);
  width: 30px;
  height: 30px;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823560"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179556586
  .tn-elem[data-elem-id="1747641823560"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823560"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 211px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 211px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 211px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823560"] {
    display: block;
    top: 168px;
    left: 192px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823571"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 285px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823571"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 216px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 216px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 216px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823571"] {
    display: table;
    top: 173px;
    left: 197px;
    width: 20px;
    height: 20px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899484196"] {
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #rec1179556586
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1747899484196"] {
    opacity: 0;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747899484196"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747899484196"] {
    display: table;
    top: 168px;
    left: 232px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823563"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 199px;
  left: calc(50% - 600px + 320px);
  width: 30px;
  height: 30px;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823563"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#rec1179556586
  .tn-elem[data-elem-id="1747641823563"]
  .tn-atom
  .tn-atom__button-content {
  column-gap: 10px;
}
@media (hover), (min-width: 0\0) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    background-color: #333333;
    background-image: none;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823563"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 209px;
    left: calc(50% - 480px + 251px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 320px + 251px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 199px;
    left: calc(50% - 240px + 251px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823563"] {
    display: block;
    top: 168px;
    left: 232px;
    width: 30px;
    height: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823575"] {
  z-index: 3;
  top: 204px;
  left: calc(50% - 600px + 325px);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823575"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 214px;
    left: calc(50% - 480px + 256px);
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 320px + 256px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 204px;
    left: calc(50% - 240px + 256px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823575"] {
    display: table;
    top: 173px;
    left: 237px;
    width: 20px;
    height: 20px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823552"] {
  color: #000000;
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 130px);
  width: 254px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823552"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 154px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823552"] {
    display: table;
    top: 132px;
    left: 40px;
    height: auto;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823549"] {
  color: #000000;
  z-index: 3;
  top: 174px;
  left: calc(50% - 600px + 130px);
  width: 89px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823549"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 480px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 174px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823549"] {
    display: table;
    top: 118px;
    left: 40px;
    height: auto;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823545"] {
  color: #000000;
  z-index: 3;
  top: 129px;
  left: calc(50% - 600px + 130px);
  width: 221px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 480px + 59px);
    width: 221px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823545"] {
    text-align: left;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 320px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 129px;
    left: calc(50% - 240px + 59px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823545"] {
    display: table;
    top: 96px;
    left: 40px;
    width: 215px;
    height: auto;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823541"] {
  z-index: 3;
  top: 126px;
  left: calc(50% - 600px + 120px);
  width: 1px;
  height: 60px;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823541"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 480px + 51px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 320px + 51px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 126px;
    left: calc(50% - 240px + 51px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823541"] {
    display: table;
    top: 88px;
    left: 30px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823537"] {
  color: #000000;
  z-index: 3;
  top: 101px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 109px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823537"] {
    display: table;
    top: 56px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823537"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823533"] {
  color: #000000;
  z-index: 3;
  top: 89px;
  left: calc(50% - 600px + 120px);
  width: 141px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 12px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 480px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 97px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823533"] {
    display: table;
    top: 44px;
    left: 31px;
    width: 141px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823533"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747641823526"] {
  color: #000000;
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 120px);
  width: 168px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
  vertical-align: middle;
  color: #000000;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 480px + 51px);
    width: 168px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 320px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 70px;
    left: calc(50% - 240px + 51px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747641823526"] {
    display: table;
    top: 21px;
    left: 31px;
    width: 511px;
    height: 18px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747641823526"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747751061223"] {
  z-index: 3;
  top: 244px;
  left: calc(50% - 600px + 7px);
  width: 100px;
  height: 100px;
}
#rec1179556586 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1747751061223"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 480px + -62px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 320px + -62px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 244px;
    left: calc(50% - 240px + -62px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747751061223"] {
    display: table;
    top: 198px;
    left: 4px;
    width: 13px;
    height: 29px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1748339984293"] {
  z-index: 3;
  top: -54px;
  left: calc(50% - 600px + 360px);
  width: 25px;
  height: 100px;
}
#rec1179556586 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1179556586 .tn-elem[data-elem-id="1748339984293"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 480px + 289px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 320px + 289px);
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -54px;
    left: calc(50% - 240px + 289px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1748339984293"] {
    display: table;
    top: -59px;
    left: 294px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747646631107"] {
  z-index: 3;
  top: 12px;
  left: calc(50% - 600px + 420px);
  width: 700px;
  height: 257px;
}
#rec1179556586 .tn-elem[data-elem-id="1747646631107"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 480px + 351px);
    width: 600px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 320px + 351px);
    width: 279px;
    height: 257px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 330px);
    width: 140px;
    height: 257px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747646631107"] {
    display: table;
    top: 241px;
    left: 10px;
    width: 300px;
    height: 474px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747380721710"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 893px);
  width: 67px;
  height: 20px;
}
#rec1179556586 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 824px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 361px);
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 156px;
    left: calc(50% - 240px + 344px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380721710"] {
    display: table;
    top: 595px;
    left: 30px;
    width: 67px;
    height: 20px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747380721710"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382989615"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 459px);
  width: auto;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 390px);
    width: 82px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 178px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 395px);
    width: 60px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] {
    display: table;
    top: 263px;
    left: 126px;
    width: 67px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] {
    text-align: left;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382989615"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747383077128"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 157px;
  left: calc(50% - 600px + 620px);
  width: 142px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 157px;
    left: calc(50% - 480px + 551px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 28px;
    left: calc(50% - 320px + 362px);
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 16px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383077128"] {
    display: table;
    top: 485px;
    left: 30px;
    width: 142px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747383077128"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747381853075"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 621px);
  width: 67px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
  vertical-align: middle;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 552px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 363px);
    width: 86px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 106px;
    left: calc(50% - 240px + 344px);
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381853075"] {
    display: table;
    top: 372px;
    left: 31px;
    width: 86px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747381853075"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382286729"] {
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  z-index: 3;
  top: 59px;
  left: calc(50% - 600px + 460px);
  width: auto;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: transparent;
  background-image: linear-gradient(
    0.265turn,
    rgba(255, 255, 255, 1) 0%,
    rgba(170, 170, 170, 1) 100%
  );
  -webkit-background-clip: text;
  will-change: transform;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 59px;
    left: calc(50% - 480px + 391px);
    width: 66px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 103px;
    left: calc(50% - 320px + 538px);
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] {
    text-align: left;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 206px;
    left: calc(50% - 240px + 344px);
    width: 47px;
    height: 20px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] {
    display: table;
    top: 263px;
    left: 30px;
    width: 107px;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382286729"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747380743405"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 459px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 390px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 396px);
    width: 30px;
    height: 30px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747380743405"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747380743405"] {
    display: table;
    top: 290px;
    left: 126px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747383336368"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747383336368"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747383336368"] {
    display: table;
    top: 511px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747384448888"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 629px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747384448888"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384448888"] {
    display: table;
    top: 511px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747384605122"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 705px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747384605122"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 71px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384605122"] {
    display: table;
    top: 511px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1748420444611"] {
  z-index: 3;
  top: 180px;
  left: calc(50% - 600px + 821px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1748420444611"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 715px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 48px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 31px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1748420444611"] {
    display: table;
    top: 396px;
    left: 540px;
    width: 50px;
    height: 50px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747381124322"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 893px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 824px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747381124322"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 345px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381124322"] {
    display: table;
    top: 626px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747381888387"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 620px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747381888387"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 551px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 361px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 346px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381888387"] {
    display: table;
    top: 402px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382048808"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 754px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747382048808"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 708px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 426px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382048808"] {
    display: table;
    top: 402px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382213646"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 687px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747382213646"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 628px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 121px;
    left: calc(50% - 240px + 386px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382213646"] {
    display: table;
    top: 402px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747381231017"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 962px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747381231017"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 891px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 479px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 425px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381231017"] {
    display: table;
    top: 626px;
    left: 125px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747381773374"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 1030px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747381773374"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 180px;
    left: calc(50% - 480px + 824px);
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 198px;
    left: calc(50% - 320px + 420px);
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 171px;
    left: calc(50% - 240px + 385px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747381773374"] {
    display: table;
    top: 626px;
    left: 221px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382850582"] {
  z-index: 3;
  top: 62px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1179556586 .tn-elem[data-elem-id="1747382850582"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 62px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 81px;
    left: calc(50% - 320px + 707px);
    width: 17px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 12px;
    left: calc(50% - 240px + 504px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382850582"] {
    display: table;
    top: 241px;
    left: 539px;
    width: 17px;
    height: 75px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747384632790"] {
  z-index: 3;
  top: 154px;
  left: calc(50% - 600px + 579px);
  width: 1px;
  height: 75px;
}
#rec1179556586 .tn-elem[data-elem-id="1747384632790"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 154px;
    left: calc(50% - 480px + 510px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 101px;
    left: calc(50% - 320px + 530px);
    width: 1px;
    height: 145px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 85px;
    left: calc(50% - 240px + 530px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747384632790"] {
    display: table;
    top: 241px;
    left: 394px;
    width: 1px;
    height: 145px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382870795"] {
  z-index: 3;
  top: 61px;
  left: calc(50% - 600px + 854px);
  width: 1px;
  height: 75px;
}
#rec1179556586 .tn-elem[data-elem-id="1747382870795"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 61px;
    left: calc(50% - 480px + 785px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 289px;
    left: calc(50% - 320px + 680px);
    width: 75px;
    height: 15px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 254px;
    left: calc(50% - 240px + 490px);
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382870795"] {
    display: table;
    top: 340px;
    left: 394px;
    width: 75px;
    height: 15px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1747382302775"] {
  z-index: 3;
  top: 86px;
  left: calc(50% - 600px + 460px);
  width: 50px;
  height: 50px;
}
#rec1179556586 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: #eb1414;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 86px;
    left: calc(50% - 480px + 391px);
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 123px;
    left: calc(50% - 320px + 538px);
    width: 45px;
    height: 45px;
    border-radius: 0px 0px 0px 0px;
  }
  #rec1179556586 .tn-elem[data-elem-id="1747382302775"] .tn-atom {
    background-size: cover;
    border-radius: 0px 0px 0px 0px;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 231px;
    left: calc(50% - 240px + 344px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1747382302775"] {
    display: table;
    top: 290px;
    left: 30px;
    width: 70px;
    height: 70px;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1748613066534"] {
  color: #ffffff;
  z-index: 3;
  top: 253px;
  left: calc(50% - 600px + 1114px);
  width: 13px;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 480px + 944px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 253px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 263px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613066534"] {
    display: table;
    top: 236px;
    left: 4px;
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1748613066534"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}
#rec1179556586 .tn-elem[data-elem-id="1748613058267"] {
  color: #ffffff;
  z-index: 3;
  top: 7px;
  left: calc(50% - 600px + 414px);
  width: auto;
  height: auto;
}
#rec1179556586 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
  vertical-align: middle;
  white-space: nowrap;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 0.6;
  font-weight: 100;
  letter-spacing: -1px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: -4px;
    left: calc(50% - 480px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 345px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 6px;
    left: calc(50% - 240px + 324px);
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -0.5px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1179556586 .tn-elem[data-elem-id="1748613058267"] {
    display: table;
    top: 708px;
    left: 303px;
    width: auto;
    height: auto;
  }
  #rec1179556586 .tn-elem[data-elem-id="1748613058267"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    background-size: cover;
  }
}

/* ---- assets/inline/css/team_index-c9947ec83e96.css ---- */
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 479px) {
}

/* ---- assets/inline/css/team_index-4a60342c8bfe.css ---- */
#rec1124408336 .t396__artboard {
  height: 50px;
  background-color: #000000;
}
#rec1124408336 .t396__filter {
  height: 50px;
}
#rec1124408336 .t396__carrier {
  height: 50px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .t396__artboard,
  #rec1124408336 .t396__filter,
  #rec1124408336 .t396__carrier {
  }
  #rec1124408336 .t396__filter {
  }
  #rec1124408336 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .t396__artboard,
  #rec1124408336 .t396__filter,
  #rec1124408336 .t396__carrier {
  }
  #rec1124408336 .t396__filter {
  }
  #rec1124408336 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .t396__artboard,
  #rec1124408336 .t396__filter,
  #rec1124408336 .t396__carrier {
  }
  #rec1124408336 .t396__filter {
  }
  #rec1124408336 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .t396__artboard,
  #rec1124408336 .t396__filter,
  #rec1124408336 .t396__carrier {
  }
  #rec1124408336 .t396__filter {
  }
  #rec1124408336 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1748340397359"] {
  z-index: 3;
  top: 0px;
  left: calc(50% - 600px + -875px);
  width: 2951px;
  height: 51px;
}
#rec1124408336 .tn-elem[data-elem-id="1748340397359"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1748340397359"] {
    display: table;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347211"] {
  color: #ffffff;
  text-align: center;
  z-index: 5;
  top: 10px;
  left: calc(50% - 600px + 140px);
  width: 55px;
  height: 30px;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347211"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347211"] .tn-atom:hover {
  }
  #rec1124408336 .tn-elem[data-elem-id="1747646347211"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 108px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 78px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347211"] {
    display: block;
    top: 87px;
    left: 362px;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
  color: #ffffff;
  text-align: center;
  z-index: 6;
  top: 10px;
  left: calc(50% - 600px + 196px);
  width: 55px;
  height: 30px;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347209"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] .tn-atom:hover {
  }
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 164px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 134px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 126px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    display: block;
    top: 87px;
    left: 418px;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
  color: #ffffff;
  text-align: center;
  z-index: 7;
  top: 10px;
  left: calc(50% - 600px + 261px);
  width: 55px;
  height: 30px;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  color: #ffffff;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347206"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] .tn-atom:hover {
  }
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] .tn-atom:hover {
    color: #eb1414;
  }
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 217px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 187px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 179px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    display: block;
    top: 87px;
    left: 471px;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
  color: #eb1414;
  text-align: center;
  z-index: 8;
  top: 10px;
  left: calc(50% - 600px + 319px);
  width: 55px;
  height: 30px;
  pointer-events: none;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  color: #eb1414;
  font-size: 8px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  border-radius: 30px 30px 30px 30px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 10px;
    left: calc(50% - 480px + 278px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 110px;
    left: calc(50% - 320px + 248px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 169px;
    left: calc(50% - 240px + 240px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    display: block;
    top: 87px;
    left: 532px;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347213"] {
  z-index: 10;
  top: 9px;
  left: calc(50% - 600px + 708px);
  width: 1px;
  height: 30px;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347213"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #333333;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 480px + 699px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 9px;
    left: calc(50% - 320px + 359px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 10px;
    left: calc(50% - 240px + 210px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347213"] {
    display: table;
    top: 83px;
    left: 349px;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
  color: #ffffff;
  z-index: 11;
  top: 20px;
  left: calc(50% - 600px + 420px);
  width: 246px;
  height: auto;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 19px;
    left: calc(50% - 480px + 411px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 18px;
    left: calc(50% - 320px + 90px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 14px;
    left: calc(50% - 240px + 70px);
    width: 130px;
    height: 20px;
  }
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] {
    display: table;
    top: 15px;
    left: 70px;
    width: 243px;
    height: auto;
  }
  #rec1124408336 .tn-elem[data-elem-id="1747646347200"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1747646347196"] {
  z-index: 12;
  top: 8px;
  left: calc(50% - 600px + 80px);
  width: 35px;
  height: 35px;
}
#rec1124408336 .tn-elem[data-elem-id="1747646347196"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 480px + 80px);
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 320px + 80px);
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1747646347196"] {
    display: table;
    top: 8px;
    left: 10px;
  }
}
#rec1124408336 .tn-elem[data-elem-id="1748341987415"] {
  color: #ffffff;
  z-index: 13;
  top: 17px;
  left: calc(50% - 600px + 729px);
  width: 402px;
  height: auto;
}
#rec1124408336 .tn-elem[data-elem-id="1748341987415"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1124408336 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 480px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1124408336 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: calc(50% - 320px + 720px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1124408336 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 8px;
    left: calc(50% - 240px + 230px);
    width: 239px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1124408336 .tn-elem[data-elem-id="1748341987415"] {
    display: table;
    top: 17px;
    left: 720px;
    height: auto;
  }
}

/* ---- assets/inline/css/team_index-e6d757c2ea1e.css ---- */
#rec1131012396 .t396__artboard {
  height: 600px;
  background-color: #000000;
}
#rec1131012396 .t396__filter {
  height: 600px;
}
#rec1131012396 .t396__carrier {
  height: 600px;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .t396__artboard,
  #rec1131012396 .t396__filter,
  #rec1131012396 .t396__carrier {
    height: 598px;
  }
  #rec1131012396 .t396__filter {
  }
  #rec1131012396 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .t396__artboard,
  #rec1131012396 .t396__filter,
  #rec1131012396 .t396__carrier {
    height: 596px;
  }
  #rec1131012396 .t396__filter {
  }
  #rec1131012396 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .t396__artboard,
  #rec1131012396 .t396__filter,
  #rec1131012396 .t396__carrier {
    height: 1170px;
  }
  #rec1131012396 .t396__filter {
  }
  #rec1131012396 .t396__carrier {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .t396__artboard,
  #rec1131012396 .t396__filter,
  #rec1131012396 .t396__carrier {
    height: 969px;
  }
  #rec1131012396 .t396__filter {
  }
  #rec1131012396 .t396__carrier {
    background-attachment: scroll;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202669"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202669"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202669"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202669"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202669"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202669"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202669"] {
    display: table;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202675"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 430px);
  width: 40px;
  height: 40px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202675"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202675"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202675"] .tn-atom:hover {
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202675"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202675"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 390px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202675"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 210px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202675"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 250px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202675"] {
    display: block;
    top: 509px;
    left: 191px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202682"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 435px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202682"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202682"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 395px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202682"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 215px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202682"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 255px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202682"] {
    display: table;
    top: 514px;
    left: 196px;
    width: 25px;
    height: 25px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202647"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202647"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202647"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202647"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202647"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202647"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202647"] {
    display: table;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202653"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 230px);
  width: 40px;
  height: 40px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202653"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202653"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202653"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 150px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202653"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 60px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202653"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 70px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202653"] {
    display: block;
    top: 509px;
    left: 56px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202658"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 235px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202658"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202658"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 155px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202658"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 65px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202658"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 75px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202658"] {
    display: table;
    top: 514px;
    left: 61px;
    width: 25px;
    height: 25px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202625"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202625"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202625"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202625"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202625"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202625"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202625"] {
    display: table;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202631"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 180px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202631"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202631"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202631"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202631"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 90px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202631"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 10px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202631"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 10px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202631"] {
    display: block;
    top: 509px;
    left: 11px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202636"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 185px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202636"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202636"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 95px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202636"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 15px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202636"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 15px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202636"] {
    display: table;
    top: 514px;
    left: 16px;
    width: 25px;
    height: 25px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202604"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202604"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202604"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202604"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202604"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202604"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202604"] {
    display: table;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202609"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 330px);
  width: 40px;
  height: 40px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202609"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202609"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202609"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 270px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202609"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 160px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202609"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 190px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202609"] {
    display: block;
    top: 509px;
    left: 146px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202615"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 335px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202615"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202615"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 275px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202615"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 165px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202615"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 195px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202615"] {
    display: table;
    top: 514px;
    left: 151px;
    width: 25px;
    height: 25px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202580"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202580"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202580"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202580"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202580"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202580"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202580"] {
    display: table;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202587"] {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 280px);
  width: 40px;
  height: 40px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202587"] .tn-atom {
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202587"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202587"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 210px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202587"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 110px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202587"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 130px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202587"] {
    display: block;
    top: 509px;
    left: 101px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202593"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 285px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202593"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202593"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 215px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202593"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 115px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202593"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 135px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202593"] {
    display: table;
    top: 514px;
    left: 106px;
    width: 25px;
    height: 25px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202576"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202576"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  overflow: hidden;
  opacity: 0.4;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396
  .tn-elem[data-elem-id="1753254202576"]
  .tn-atom__video-play-icon
  svg
  circle {
  fill: #000000;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202576"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 387px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202576"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202576"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202576"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202573"] {
  color: #a5a5a5;
  z-index: 3;
  top: 111px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202573"] .tn-atom {
  vertical-align: middle;
  color: #a5a5a5;
  font-size: 15px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.5px;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] {
    display: table;
    top: 153px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] {
    display: table;
    top: 118px;
    left: calc(50% - 320px + 10px);
    width: 305px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] {
    display: table;
    top: 133px;
    left: calc(50% - 240px + 10px);
    width: 463px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] {
    display: table;
    top: 113px;
    width: 272px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202573"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202569"] {
  color: #ffffff;
  z-index: 3;
  top: 63px;
  left: calc(50% - 600px + 180px);
  width: 348px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202569"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 17px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] {
    display: table;
    top: 110px;
    left: calc(50% - 480px + 90px);
    width: 337px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 10px);
    width: 320px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] {
    display: table;
    top: 73px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] .tn-atom {
    font-size: 20px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] {
    display: table;
    top: 73px;
    left: 10px;
    width: 302px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202569"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202556"] {
  z-index: 3;
  top: 175px;
  left: calc(50% - 600px + 180px);
  width: 360px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202556"] .tn-atom {
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202556"] {
    display: table;
    top: 195px;
    left: calc(50% - 480px + 90px);
    width: 360px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202556"] {
    display: table;
    top: 174px;
    left: calc(50% - 320px + 10px);
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202556"] {
    display: table;
    top: 198px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: auto;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202556"] {
    display: table;
    top: 163px;
    left: 10px;
    width: 300px;
    height: auto;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202565"] {
  z-index: 3;
  top: 406px;
  left: calc(50% - 600px + 527px);
  width: 39px;
  height: 46px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202565"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-color: #000000;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202565"] .tn-atom {
  -webkit-transform: rotate(316deg);
  -moz-transform: rotate(316deg);
  transform: rotate(316deg);
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202565"] {
    display: table;
    top: 422px;
    left: calc(50% - 480px + 434px);
    width: 47px;
    height: 48px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202565"] {
    display: table;
    top: 410px;
    left: calc(50% - 320px + 297px);
    width: 20px;
    height: 10px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202565"] {
    display: table;
    top: 432px;
    left: calc(50% - 240px + 444px);
    width: 44px;
    height: 18px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202565"] {
    display: table;
    top: 397px;
    left: 285px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202553"] {
  z-index: 3;
  top: 60px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 440px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202553"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202553"] {
    display: table;
    top: 111px;
    left: calc(50% - 480px + 509px);
    width: 360px;
    height: 397px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202553"] {
    display: table;
    top: 68px;
    left: calc(50% - 320px + 330px);
    width: 300px;
    height: 416px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202553"] {
    display: table;
    top: 620px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 460px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202553"] {
    display: table;
    top: 564px;
    left: 10px;
    width: 300px;
    height: 300px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202549"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 580px);
  width: 440px;
  height: 40px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202549"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  border-color: #333333;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202549"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 510px);
    width: 360px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202549"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 330px);
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202549"] {
    display: table;
    top: 1100px;
    left: calc(50% - 240px + 10px);
    width: 460px;
    height: 60px;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202549"] {
    display: table;
    top: 884px;
    left: 10px;
    width: 300px;
    height: 40px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202545"] {
  color: #ffffff;
  z-index: 3;
  top: 540px;
  left: calc(50% - 600px + 595px);
  width: 412px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202545"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] {
    display: table;
    top: 538px;
    left: calc(50% - 480px + 520px);
    width: 335px;
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] {
    display: table;
    top: 512px;
    left: calc(50% - 320px + 341px);
    width: 274px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] {
    display: table;
    top: 1113px;
    left: calc(50% - 240px + 20px);
    width: 437px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] {
    display: table;
    top: 894px;
    left: 25px;
    width: 270px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202545"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202541"] {
  color: #ffffff;
  z-index: 3;
  top: 440px;
  left: calc(50% - 600px + 180px);
  width: 306px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202541"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] {
    display: table;
    top: 455px;
    left: calc(50% - 480px + 90px);
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] {
    display: table;
    top: 434px;
    left: calc(50% - 320px + 10px);
    width: 306px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] {
    display: table;
    top: 458px;
    left: calc(50% - 240px + 10px);
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] .tn-atom {
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] {
    display: table;
    top: 423px;
    left: 10px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] {
    color: #ffffff;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202541"] .tn-atom {
    color: #ffffff;
    font-size: 10px;
    background-size: cover;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202536"] {
  color: #ffffff;
  z-index: 3;
  top: 472px;
  left: calc(50% - 600px + 180px);
  width: 346px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202536"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 13px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] {
    display: table;
    top: 485px;
    left: calc(50% - 480px + 90px);
    width: 272px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] .tn-atom {
    font-size: 10px;
    background-size: cover;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] {
    display: table;
    top: 464px;
    left: calc(50% - 320px + 10px);
    width: 276px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] .tn-atom {
    vertical-align: middle;
    white-space: normal;
    background-size: cover;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] {
    display: table;
    top: 490px;
    width: 409px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] .tn-atom {
    font-size: 15px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] {
    display: table;
    top: 453px;
    left: 10px;
    width: 274px;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] {
    color: #ffffff;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202536"] .tn-atom {
    color: #ffffff;
    font-size: 12px;
    background-size: cover;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202693"] {
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202693"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202693"] .tn-atom {
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #cced00;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202693"] {
    display: table;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202693"] {
    display: table;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202693"] {
    display: table;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202693"] {
    display: table;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202699"] {
  color: #000000;
  text-align: center;
  z-index: 3;
  top: 526px;
  left: calc(50% - 600px + 380px);
  width: 40px;
  height: 40px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202699"] .tn-atom {
  color: #000000;
  font-size: 10px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #000000;
  border-style: solid;
  --t396-speedhover: 0s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202699"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202699"] .tn-atom:hover {
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202699"] .tn-atom:hover {
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202699"] {
    display: block;
    top: 525px;
    left: calc(50% - 480px + 330px);
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202699"] {
    display: block;
    top: 504px;
    left: calc(50% - 320px + 260px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202699"] {
    display: block;
    top: 546px;
    left: calc(50% - 240px + 310px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202699"] {
    display: block;
    top: 509px;
    left: 236px;
    width: 35px;
    height: 35px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202706"] {
  z-index: 3;
  top: 531px;
  left: calc(50% - 600px + 385px);
  width: 30px;
  height: 30px;
  pointer-events: none;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202706"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202706"] {
    display: table;
    top: 530px;
    left: calc(50% - 480px + 335px);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202706"] {
    display: table;
    top: 509px;
    left: calc(50% - 320px + 265px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202706"] {
    display: table;
    top: 551px;
    left: calc(50% - 240px + 315px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202706"] {
    display: table;
    top: 514px;
    left: 241px;
    width: 25px;
    height: 25px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202717"] {
  text-align: center;
  z-index: 3;
  top: 26px;
  left: calc(50% - 600px + 1087px);
  width: 33px;
  height: 33px;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202717"] .tn-atom {
  color: transparent;
  font-size: 14px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 600;
  border-width: 1px;
  border-radius: 0px 0px 0px 0px;
  background-color: #eb1414;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  --t396-speedhover: 0.2s;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202717"] .tn-atom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (hover), (min-width: 0\0) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202717"] .tn-atom:hover {
    background-color: #ffffff;
    background-image: none;
    border-color: #000000;
  }
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202717"] {
    display: block;
    top: 36px;
    left: calc(50% - 480px + 837px);
    width: 33px;
    height: 33px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202717"] {
    display: block;
    top: 15px;
    left: calc(50% - 320px + 592px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202717"] {
    display: block;
    top: 20px;
    left: calc(50% - 240px + 437px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202717"] {
    display: block;
    top: 20px;
    left: 277px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202724"] {
  z-index: 3;
  top: 30px;
  left: calc(50% - 600px + 1091px);
  width: 25px;
  height: 25px;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #rec1131012396
    .tn-elem.t396__elem--anim-hidden[data-elem-id="1753254202724"] {
    opacity: 0;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202724"] .tn-atom {
  border-radius: 0px 0px 0px 0px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202724"] {
    display: table;
    top: 40px;
    left: calc(50% - 480px + 841px);
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202724"] {
    display: table;
    top: 19px;
    left: calc(50% - 320px + 596px);
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202724"] {
    display: table;
    top: 24px;
    left: calc(50% - 240px + 441px);
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202724"] {
    display: table;
    top: 24px;
    left: 281px;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202738"] {
  color: #ffffff;
  z-index: 3;
  top: 44px;
  left: calc(50% - 600px + 574px);
  width: 13px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202738"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202738"] {
    display: table;
    top: 96px;
    left: calc(50% - 480px + 504px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202738"] {
    display: table;
    top: 53px;
    left: calc(50% - 320px + 324px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202738"] {
    display: table;
    top: 615px;
    left: calc(50% - 240px + 4px);
    width: auto;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202738"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202738"] {
    display: table;
    top: 559px;
    left: 4px;
    width: 11px;
    height: auto;
  }
}
#rec1131012396 .tn-elem[data-elem-id="1753254202734"] {
  color: #ffffff;
  z-index: 3;
  top: 484px;
  left: calc(50% - 600px + 1013px);
  width: 13px;
  height: auto;
}
#rec1131012396 .tn-elem[data-elem-id="1753254202734"] .tn-atom {
  vertical-align: middle;
  color: #ffffff;
  font-size: 20px;
  font-family: "Unbounded", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 100;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  transition:
    background-color var(--t396-speedhover, 0s) ease-in-out,
    color var(--t396-speedhover, 0s) ease-in-out,
    border-color var(--t396-speedhover, 0s) ease-in-out,
    box-shadow var(--t396-shadowshoverspeed, 0.2s) ease-in-out;
}
@media screen and (max-width: 1199px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202734"] {
    display: table;
    top: 491px;
    left: calc(50% - 480px + 862px);
    height: auto;
  }
}
@media screen and (max-width: 959px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202734"] {
    display: table;
    top: 467px;
    left: calc(50% - 320px + 623px);
    height: auto;
  }
}
@media screen and (max-width: 639px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202734"] {
    display: table;
    top: 1072px;
    left: calc(50% - 240px + 463px);
    width: auto;
    height: auto;
  }
  #rec1131012396 .tn-elem[data-elem-id="1753254202734"] .tn-atom {
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0.6;
    letter-spacing: -1px;
    background-size: cover;
  }
}
@media screen and (max-width: 479px) {
  #rec1131012396 .tn-elem[data-elem-id="1753254202734"] {
    display: table;
    top: 858px;
    left: 303px;
    width: 11px;
    height: auto;
  }
}

/* ---- assets/inline/css/team_index-a474e3663bdf.css ---- */
#rec1131012396 [data-elem-id="1753254202556"] input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396 [data-elem-id="1753254202556"] input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396 [data-elem-id="1753254202556"] input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396 [data-elem-id="1753254202556"] input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396
  [data-elem-id="1753254202556"]
  textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396 [data-elem-id="1753254202556"] textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396 [data-elem-id="1753254202556"] textarea:-moz-placeholder {
  color: #ffffff;
  opacity: 0.5;
}
#rec1131012396 [data-elem-id="1753254202556"] textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.5;
}

/* ---- assets/inline/css/team_index-5ae34249c544.css ---- */
#rec1131012396 [data-elem-id="1753254202556"] .t-input-block input[type="text"],
#rec1131012396 [data-elem-id="1753254202556"] .t-input-block input[type="tel"],
#rec1131012396 [data-elem-id="1753254202556"] .t-input-block input[type="url"],
#rec1131012396
  [data-elem-id="1753254202556"]
  .t-input-block
  input[type="email"],
#rec1131012396
  [data-elem-id="1753254202556"]
  .t-input-block
  .t-input-phonemask__select,
#rec1131012396 [data-elem-id="1753254202556"] .t-input-block textarea,
#rec1131012396 [data-elem-id="1753254202556"] .t-input-block select,
#rec1131012396 [data-elem-id="1753254202556"] .t-input-block .t-input__vis-ph {
  font-family: "Unbounded";
}

/* ---- assets/inline/css/team_index-de2a5072753a.css ---- */
#rec1124466406 .t-menu__link-item {
  -webkit-transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}
#rec1124466406 .t-menu__link-item.t-active:not(.t978__menu-link) {
  color: #eb1414 !important;
  opacity: 1 !important;
}
#rec1124466406 .t-menu__link-item:not(.t-active):not(.tooltipstered):hover {
  color: #eb1414 !important;
}
#rec1124466406
  .t-menu__link-item:not(.t-active):not(.tooltipstered):focus-visible {
  color: #eb1414 !important;
}
@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
  #rec1124466406 .t-menu__link-item,
  #rec1124466406 .t-menu__link-item.t-active {
    opacity: 1 !important;
  }
}

/* Tilda canvas element base */
.tn-atom { transform-origin: center center; }

/* -----------------------------------------------------------------------
   Contacts card: cut top-right & bottom-left corners via clip-path.
   Replaces the two rotated black overlay shapes that faked the chamfer.
   ----------------------------------------------------------------------- */

/* Hide the old overlay shapes on all pages */
.tn-elem[data-elem-id="1747751061223"],
.tn-elem[data-elem-id="1748339984293"] {
  display: none !important;
}

/* Apply chamfer clip-path to the white contacts card atom */
.tn-elem[data-elem-id="1747731093258"] .tn-atom {
  clip-path: polygon(
    0% 0%,
    calc(100% - 22px) 0%,
    100% 22px,
    100% 100%,
    22px 100%,
    0% calc(100% - 22px)
  );
}

/* Smaller chamfer on narrow mobile screens */
@media screen and (max-width: 479px) {
  .tn-elem[data-elem-id="1747731093258"] .tn-atom {
    clip-path: polygon(
      0% 0%,
      calc(100% - 14px) 0%,
      100% 14px,
      100% 100%,
      14px 100%,
      0% calc(100% - 14px)
    );
  }
}

/* -----------------------------------------------------------------------
   GROUP A — Form section bottom-right chamfer
   Records: rec1043197791 (index), rec1112862926 (aboutus), rec1113064831 (team)
   Overlay: 1747996074770 (100×100px, shared across all three records)
   Form container: 1747748205706 (shared)
   ----------------------------------------------------------------------- */
.tn-elem[data-elem-id="1747996074770"] {
  display: none !important;
}

.tn-elem[data-elem-id="1747748205706"] .tn-atom {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    0% 100%
  );
}

@media screen and (max-width: 479px) {
  .tn-elem[data-elem-id="1747748205706"] .tn-atom {
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% calc(100% - 14px),
      calc(100% - 14px) 100%,
      0% 100%
    );
  }
}

/* -----------------------------------------------------------------------
   GROUP B — Video card bottom-left chamfer
   Records: rec1051896271 (index), rec1131002046 (aboutus)
   Overlay: 1750160611890 (100×100px, shared)
   Video card: 1750159627036 (shared, opacity 0.4)
   ----------------------------------------------------------------------- */
.tn-elem[data-elem-id="1750160611890"] {
  display: none !important;
}

.tn-elem[data-elem-id="1750159627036"] .tn-atom {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    22px 100%,
    0% calc(100% - 22px)
  );
}

@media screen and (max-width: 479px) {
  .tn-elem[data-elem-id="1750159627036"] .tn-atom {
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% 100%,
      14px 100%,
      0% calc(100% - 14px)
    );
  }
}

/* -----------------------------------------------------------------------
   GROUP C — Form section bottom-right chamfer (small overlay)
   Record: rec1065473771 (aboutus)
   Overlay: 1749130937710 (54×17px)
   Form container: 1749130937685
   ----------------------------------------------------------------------- */
.tn-elem[data-elem-id="1749130937710"] {
  display: none !important;
}

.tn-elem[data-elem-id="1749130937685"] .tn-atom {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0% 100%
  );
}

/* -----------------------------------------------------------------------
   GROUP D (courses.html) — Form section bottom-right chamfer (small overlay)
   Record: rec1131005731
   Overlay: 1753254025348 (39×46px)
   Form container: 1753254025337
   ----------------------------------------------------------------------- */
.tn-elem[data-elem-id="1753254025348"] {
  display: none !important;
}

.tn-elem[data-elem-id="1753254025337"] .tn-atom {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0% 100%
  );
}

/* -----------------------------------------------------------------------
   GROUP D (team.html) — Form section bottom-right chamfer (small overlay)
   Record: rec1131012396
   Overlay: 1753254202565 (39×46px)
   Form container: 1753254202556
   ----------------------------------------------------------------------- */
.tn-elem[data-elem-id="1753254202565"] {
  display: none !important;
}

.tn-elem[data-elem-id="1753254202556"] .tn-atom {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0% 100%
  );
}

/* -----------------------------------------------------------------------
   Spacer replacements: margin-top substitutes former 40px spacer blocks.
   ----------------------------------------------------------------------- */
#rec1108504246 { margin-top: 40px; }
#rec1083953436 { margin-top: 40px; }
#rec1086334411 { margin-top: 40px; }
#rec1038917196 { margin-top: 40px; }
#rec1065451616 { margin-top: 40px; }
#rec1051508891 { margin-top: 40px; }
#rec1031581486 { margin-top: 40px; }
#rec1110238761 { margin-top: 40px; }
#rec1190205346 { margin-top: 40px; }
#rec1033862741 { margin-top: 40px; }
#rec1033875646 { margin-top: 40px; }
#rec1124518471 { margin-top: 40px; }
#rec1039094686 { margin-top: 40px; }
#rec1113058611 { margin-top: 40px; }
#rec1112976071 { margin-top: 40px; }
#rec1069091231 { margin-top: 40px; }
#rec1190588381 { margin-top: 40px; }
#rec1123799406 { margin-top: 40px; }
#rec1065473726 { margin-top: 40px; }
#rec1086443556 { margin-top: 40px; }
#rec1086349621 { margin-top: 40px; }
#rec1083290206 { margin-top: 40px; }
#rec1065473771 { margin-top: 40px; }
#rec1113408456 { margin-top: 40px; }
#rec1179555336 { margin-top: 40px; }
#rec1124404171 { margin-top: 40px; }
#rec1128991741 { margin-top: 40px; }
#rec1111603556 { margin-top: 40px; }
#rec1113031816 { margin-top: 40px; }
#rec1111561146 { margin-top: 40px; }
#rec1111561156 { margin-top: 40px; }
#rec1179555861 { margin-top: 40px; }
#rec1124407246 { margin-top: 40px; }
#rec1113059771 { margin-top: 40px; }
#rec1108440956 { margin-top: 40px; }
#rec1108139256 { margin-top: 40px; }
#rec1108212246 { margin-top: 40px; }
#rec1108877711 { margin-top: 40px; }
#rec1108893006 { margin-top: 40px; }
#rec1108906566 { margin-top: 40px; }
#rec1108914946 { margin-top: 40px; }
#rec1108922016 { margin-top: 40px; }
#rec1208442226 { margin-top: 40px; }
#rec1113064831 { margin-top: 40px; }
#rec1179556586 { margin-top: 40px; }
#rec1124408336 { margin-top: 40px; }

@media screen and (max-width: 479px) {
  #rec1108504246 { margin-top: 20px; }
  #rec1083953436 { margin-top: 20px; }
  #rec1086334411 { margin-top: 20px; }
  #rec1038917196 { margin-top: 20px; }
  #rec1065451616 { margin-top: 20px; }
  #rec1051508891 { margin-top: 20px; }
  #rec1031581486 { margin-top: 20px; }
  #rec1110238761 { margin-top: 20px; }
  #rec1190205346 { margin-top: 20px; }
  #rec1033862741 { margin-top: 20px; }
  #rec1033875646 { margin-top: 20px; }
  #rec1124518471 { margin-top: 20px; }
  #rec1039094686 { margin-top: 20px; }
  #rec1113058611 { margin-top: 20px; }
  #rec1112976071 { margin-top: 20px; }
  #rec1069091231 { margin-top: 20px; }
  #rec1190588381 { margin-top: 20px; }
  #rec1123799406 { margin-top: 20px; }
  #rec1065473726 { margin-top: 20px; }
  #rec1086443556 { margin-top: 20px; }
  #rec1086349621 { margin-top: 20px; }
  #rec1083290206 { margin-top: 20px; }
  #rec1065473771 { margin-top: 20px; }
  #rec1113408456 { margin-top: 20px; }
  #rec1179555336 { margin-top: 20px; }
  #rec1124404171 { margin-top: 20px; }
  #rec1128991741 { margin-top: 20px; }
  #rec1111603556 { margin-top: 20px; }
  #rec1113031816 { margin-top: 20px; }
  #rec1111561146 { margin-top: 20px; }
  #rec1111561156 { margin-top: 20px; }
  #rec1179555861 { margin-top: 20px; }
  #rec1124407246 { margin-top: 20px; }
  #rec1113059771 { margin-top: 20px; }
  #rec1108440956 { margin-top: 20px; }
  #rec1108139256 { margin-top: 20px; }
  #rec1108212246 { margin-top: 20px; }
  #rec1108877711 { margin-top: 20px; }
  #rec1108893006 { margin-top: 20px; }
  #rec1108906566 { margin-top: 20px; }
  #rec1108914946 { margin-top: 20px; }
  #rec1108922016 { margin-top: 20px; }
  #rec1208442226 { margin-top: 20px; }
  #rec1113064831 { margin-top: 20px; }
  #rec1179556586 { margin-top: 20px; }
  #rec1124408336 { margin-top: 20px; }
}

/* -----------------------------------------------------------------------
   Footer nav spacing hardening for unusual viewport scales.
   Prevents ABOUT US / COURSES label collisions in the bottom menu.
   ----------------------------------------------------------------------- */
#rec1039094686 .tn-elem[data-elem-id="1747646347211"] .tn-atom,
#rec1039094686 .tn-elem[data-elem-id="1747646347209"] .tn-atom,
#rec1039094686 .tn-elem[data-elem-id="1747646347206"] .tn-atom,
#rec1039094686 .tn-elem[data-elem-id="1747646347204"] .tn-atom,
#rec1124404171 .tn-elem[data-elem-id="1747646347211"] .tn-atom,
#rec1124404171 .tn-elem[data-elem-id="1747646347209"] .tn-atom,
#rec1124404171 .tn-elem[data-elem-id="1747646347206"] .tn-atom,
#rec1124404171 .tn-elem[data-elem-id="1747646347204"] .tn-atom,
#rec1124407246 .tn-elem[data-elem-id="1747646347211"] .tn-atom,
#rec1124407246 .tn-elem[data-elem-id="1747646347209"] .tn-atom,
#rec1124407246 .tn-elem[data-elem-id="1747646347206"] .tn-atom,
#rec1124407246 .tn-elem[data-elem-id="1747646347204"] .tn-atom,
#rec1124408336 .tn-elem[data-elem-id="1747646347211"] .tn-atom,
#rec1124408336 .tn-elem[data-elem-id="1747646347209"] .tn-atom,
#rec1124408336 .tn-elem[data-elem-id="1747646347206"] .tn-atom,
#rec1124408336 .tn-elem[data-elem-id="1747646347204"] .tn-atom {
  white-space: nowrap;
}

#rec1039094686 .tn-elem[data-elem-id="1747646347209"],
#rec1124404171 .tn-elem[data-elem-id="1747646347209"],
#rec1124407246 .tn-elem[data-elem-id="1747646347209"],
#rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
  left: calc(50% - 600px + 210px) !important;
}

#rec1039094686 .tn-elem[data-elem-id="1747646347206"],
#rec1124404171 .tn-elem[data-elem-id="1747646347206"],
#rec1124407246 .tn-elem[data-elem-id="1747646347206"],
#rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
  left: calc(50% - 600px + 292px) !important;
}

#rec1039094686 .tn-elem[data-elem-id="1747646347204"],
#rec1124404171 .tn-elem[data-elem-id="1747646347204"],
#rec1124407246 .tn-elem[data-elem-id="1747646347204"],
#rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
  left: calc(50% - 600px + 370px) !important;
}

@media screen and (max-width: 1199px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    left: calc(50% - 480px + 170px) !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347206"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    left: calc(50% - 480px + 252px) !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347204"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    left: calc(50% - 480px + 330px) !important;
  }
}

@media screen and (max-width: 959px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    left: calc(50% - 320px + 150px) !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347206"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    left: calc(50% - 320px + 232px) !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347204"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    left: calc(50% - 320px + 310px) !important;
  }
}

@media screen and (max-width: 639px) {
  #rec1039094686 .tn-elem[data-elem-id="1747646347209"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347209"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347209"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347209"] {
    left: calc(50% - 240px + 142px) !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347206"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347206"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347206"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347206"] {
    left: calc(50% - 240px + 224px) !important;
  }

  #rec1039094686 .tn-elem[data-elem-id="1747646347204"],
  #rec1124404171 .tn-elem[data-elem-id="1747646347204"],
  #rec1124407246 .tn-elem[data-elem-id="1747646347204"],
  #rec1124408336 .tn-elem[data-elem-id="1747646347204"] {
    left: calc(50% - 240px + 302px) !important;
  }
}

/* -----------------------------------------------------------------------
   Root pages hero block unification (index is canonical).
   ----------------------------------------------------------------------- */
:is(#rec1123735461, #rec1124278386, #rec1124282366, #rec1124289401)
  .tn-elem[data-elem-id="1747234162072"]
  .tn-atom {
  font-size: 27px;
}

:is(#rec1123735461, #rec1124278386, #rec1124282366, #rec1124289401)
  .tn-elem[data-elem-id="1748343246927"]
  .tn-atom {
  background-color: #1b1919;
}
