@font-face {
  font-family: "Craftwork Grotesk";
  src: url("../craftwork-grotesk-webfont/CraftworkGroteskGX.woff2") format("woff2"), url("../craftwork-grotesk-webfont/CraftworkGroteskGX.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Craftwork Grotesk";
  src: url("../craftwork-grotesk-webfont/CraftworkGrotesk-Medium.woff2") format("woff2"), url("../craftwork-grotesk-webfont/CraftworkGrotesk-Medium.woff2") format("woff");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Craftwork Grotesk";
  src: url("../craftwork-grotesk-webfont/CraftworkGrotesk-SemiBold.woff2") format("woff2"), url("../craftwork-grotesk-webfont/CraftworkGrotesk-SemiBold.woff2") format("woff");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Craftwork Grotesk";
  src: url("../craftwork-grotesk-webfont/CraftworkGrotesk-Bold.woff2") format("woff2"), url("../craftwork-grotesk-webfont/CraftworkGrotesk-Bold.woff2") format("woff");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Craftwork Grotesk";
  src: url("../craftwork-grotesk-webfont/CraftworkGrotesk-Heavy.woff2") format("woff2"), url("../craftwork-grotesk-webfont/CraftworkGrotesk-Heavy.woff2") format("woff");
  font-style: normal;
  font-weight: 900;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #020202;
  color: #fff;
  font-family: "Craftwork Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1,
.headline {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 auto 10px;
}
@media screen and (max-width: 1240px) {
  h1,
  .headline {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  h1,
  .headline {
    font-size: 30px;
  }
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  text-transform: uppercase;
  margin: 0 auto 40px;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 26px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button {
  padding: 14.5px 21px;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 50px 0 68px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.4s;
  background: linear-gradient(180deg, #FF41DF 0%, #FF41DF 50%, #752799 100%);
  background-size: 100% 200%;
}
@media screen and (max-width: 992px) {
  .button {
    font-size: 22px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 20px;
    line-height: 24px;
  }
}
.button:hover, .button:focus {
  background-position: bottom;
}
.button:active {
  background: linear-gradient(180deg, #A42A8F 0%, #A42A8F 100%);
}
.button:disabled {
  background: #9F9F9F;
  background: linear-gradient(180deg, #9F9F9F 0%, #9F9F9F 100%);
  cursor: not-allowed;
}
.button.is-loading .loader {
  display: inline-grid;
}
.button .loader {
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 30%, rgba(0, 0, 0, 0) 0 70%, rgb(255, 255, 255) 0) 50%/8% 100%, linear-gradient(90deg, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 0 70%, rgba(255, 255, 255, 0.75) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
  margin-right: 10px;
  vertical-align: middle;
  display: none;
}
.button .loader::before,
.button .loader::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}
.button .loader::after {
  opacity: 0.83;
  transform: rotate(60deg);
}
@keyframes l23 {
  100% {
    transform: rotate(1turn);
  }
}

/* Helpers */
.flex {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 36px;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.hide-desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  .hide-desktop {
    display: inherit;
  }
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

.is-hidden {
  display: none !important;
}

/* Header styles */
header {
  position: sticky;
  z-index: 111;
  top: 0;
  margin-top: 64px;
  padding: 8px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .flex {
  width: 100%;
  justify-content: space-between;
}
header .main-menu ul,
header .language-menu ul,
header .social-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
header .main-menu ul li.active a,
header .language-menu ul li.active a,
header .social-menu ul li.active a {
  color: #BDFD02;
}
header .main-menu ul a,
header .language-menu ul a,
header .social-menu ul a {
  text-decoration: none;
  transition: color 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
header .main-menu ul a:hover,
header .language-menu ul a:hover,
header .social-menu ul a:hover {
  color: #BDFD02;
}
header .main-menu ul a::before,
header .language-menu ul a::before,
header .social-menu ul a::before {
  content: "[";
}
header .main-menu ul a::after,
header .language-menu ul a::after,
header .social-menu ul a::after {
  content: "]";
}
header .main-menu {
  margin: 0 100px 0 auto;
}
header .main-menu li + li {
  margin-left: 100px;
}
header .main-menu a {
  color: #fff;
}
header .language-menu li + li {
  margin-left: 10px;
}
header .language-menu a {
  color: #C6C6C6;
}
@media screen and (max-width: 992px) {
  header .logo-link {
    max-width: 150px;
  }
  header .main-menu {
    margin-right: 50px;
  }
  header .main-menu li + li {
    margin-left: 50px;
  }
  header .main-menu ul a,
  header .language-menu ul a,
  header .social-menu ul a {
    font-size: 16px;
    line-height: 19px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 30px 0;
    margin-top: 0;
  }
  header.shown-mobile-menu .menu-toggle-close,
  header.shown-mobile-menu .main-menu,
  header.shown-mobile-menu .language-menu {
    display: block;
  }
  header .main-menu {
    position: fixed;
    display: none;
    top: 87px;
    left: 0;
    right: 0;
    background: #BDFD02;
    height: calc(100vh - 88px);
    height: calc(100svh - 88px);
    margin: 0;
    padding: 80px 36px 36px 36px;
    z-index: 111;
  }
  header .main-menu .flex {
    flex-direction: column;
    align-items: initial;
  }
  header .main-menu ul li {
    border-bottom: 1px solid #000;
    padding: 0 0 20px 0;
  }
  header .main-menu ul li + li {
    margin: 20px 0 0 0;
  }
  header .main-menu ul a {
    color: #000;
  }
  header .language-menu {
    display: none;
    position: fixed;
    top: calc(100vh - 52px);
    top: calc(100svh - 52px);
    transform: translateY(-100%);
    left: 16px;
    right: 16px;
    background: #020202;
    border-radius: 4px;
    padding: 2px;
    z-index: 111;
    text-align: center;
  }
  header .language-menu ul a {
    font-size: 20px;
    line-height: 1;
    color: #fff !important;
  }
  header .language-menu li {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  header .language-menu li.active {
    background: #FF41DF;
    border-radius: 5px;
  }
  header .menu-toggle {
    border: none;
    border-radius: 0;
    background: none;
    font-size: 0;
  }
  header .menu-toggle-close {
    position: fixed;
    right: 15px;
    top: 124px;
    z-index: 1111;
    display: none;
  }
  header .menu-toggle-close svg {
    width: 29px;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  header .logo-link {
    max-width: 130px;
  }
}

/* Hero styles */
@media screen and (max-width: 768px) {
  html[lang=en] .hero .hero-copies-mobile .headline4 {
    font-size: 32px;
  }
}
@media screen and (max-width: 440px) {
  html[lang=en] .hero .hero-copies-mobile .headline4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  html[lang=en] .hero .hero-copies-mobile .headline4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  html[lang=en] .hero .hero-copies-mobile .headline4 {
    font-size: 22px;
  }
}

.hero {
  border-top: 1px solid #BDFD02;
  border-bottom: 1px solid #BDFD02;
  padding-top: 126px;
  margin: -70px 0 0;
}
.hero .flex {
  align-items: flex-end;
}
.hero .hero-copies {
  max-width: 680px;
}
.hero .headline1 span:first-child {
  padding-left: 136px;
}
.hero .headline2 {
  padding-left: 140px;
}
.hero .headline3 span:first-child {
  padding-left: 140px;
}
.hero .hero-image {
  max-width: 488px;
  margin: 0 72px 0 auto;
}
.hero .hero-copies-mobile {
  display: none;
}
@media screen and (max-width: 1240px) {
  .hero .headline1 {
    margin-bottom: 15px;
  }
  .hero .button {
    margin: 40px 0 64px;
  }
  .hero .hero-image {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .hero .hero-copies {
    margin-right: -48px;
  }
  .hero .headline1 span:first-child {
    padding-left: 120px;
  }
  .hero .headline3 span:first-child {
    padding-left: 68px;
  }
  .hero .hero-image {
    max-width: 408px;
    min-width: 408px;
    margin: 0 -24px 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    border-bottom: none;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  .hero .flex {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-copies {
    margin: 0;
    width: 100%;
    max-width: 408px;
  }
  .hero .hero-copies .headline2, .hero .hero-copies .headline3, .hero .hero-copies .button {
    display: none;
  }
  .hero .hero-copies .headline1 span:first-child {
    padding: 0;
  }
  .hero .hero-copies .headline1 span:last-child {
    float: right;
  }
  .hero .hero-image {
    margin: 20px -15px 0;
    min-width: initial;
  }
  .hero .hero-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid #BDFD02;
  }
  .hero .hero-copies-mobile {
    text-align: center;
    display: block;
    margin: 30px auto 0;
  }
  .hero .hero-copies-mobile .headline4 {
    font-size: 38px;
  }
  .hero .hero-copies-mobile .headline5 {
    font-size: 30px;
  }
  .hero .hero-copies-mobile .button {
    width: 100%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .hero .headline1 {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 400px) {
  .hero .hero-copies-mobile .headline4 {
    font-size: 34px;
    margin-bottom: 4px;
  }
  .hero .hero-copies-mobile .headline5 {
    font-size: 26px;
    margin: 0;
  }
}
@media screen and (max-width: 400px) {
  .hero .hero-copies-mobile .headline4 {
    font-size: 30px;
  }
  .hero .hero-copies-mobile .headline5 {
    font-size: 22px;
  }
}

/* About styles */
.about {
  padding: 90px 0 0;
}
.about h2 {
  margin-bottom: 80px;
}
.about .flex {
  margin: 0 auto 20px;
  justify-content: space-between;
  max-width: 1094px;
}
.about .flex p {
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  margin: 0;
}
.about .flex:nth-of-type(1) {
  margin-bottom: 50px;
}
.about .flex:nth-of-type(1) p {
  color: #BDFD02;
}
.about .flex:nth-of-type(1) img {
  margin: 0 25px;
  max-width: 360px;
}
.about .flex:nth-of-type(2) img {
  margin: 0 0 0 30px;
  max-width: 300px;
}
.about .flex:nth-of-type(3) img {
  margin: 0 24px 0 0;
  max-width: 662px;
}
.about .flex:nth-of-type(4) img {
  margin: 0 0 0 30px;
  max-width: 116px;
}
.about .about-ftd {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 43px;
  padding: 22px;
  text-align: center;
  margin: 80px auto 0;
  max-width: 1094px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1094" height="89" fill="none"><g clip-path="url(%23a)"><path fill="%23BDFD02" d="m1047.28 0 .23.126 44.98 25 .51.286V88.25H45.72l-.226-.126-44.98-25L0 62.838V0h1047.28ZM2 2v59.661L46.24 86.25H1091V26.589L1046.76 2H2Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h1094v89H0z"/></clipPath></defs></svg>') no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 1130px) {
  .about .flex p {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1072px) {
  .about .flex p {
    font-size: 22px;
  }
  .about .flex:nth-of-type(3) img {
    max-width: 600px;
  }
}
@media screen and (max-width: 992px) {
  .about .flex p {
    font-size: 20px;
  }
  .about .flex:nth-of-type(1) img {
    max-width: 247px;
  }
  .about .flex:nth-of-type(2) img {
    max-width: 207px;
  }
  .about .flex:nth-of-type(3) img {
    max-width: 477px;
    margin-right: 10px;
  }
  .about .flex:nth-of-type(4) img {
    max-width: 78px;
  }
  .about .about-ftd {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 820px) {
  .about .flex p {
    font-size: 18px;
  }
  .about .flex:nth-of-type(3) img {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: -30px;
  }
  .about h2 {
    margin-bottom: 36px;
  }
  .about .about-ftd {
    margin-top: 28px;
    font-size: 26px;
    padding: 15px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="783" height="74" fill="none"><path fill="%23BDFD02" d="m750.098 0 .247.158 32.198 20.68.46.296v52.212h-750.1l-.248-.159L.457 52.508l-.46-.295V0h750.101ZM1.998 2v49.12L33.49 71.345h747.513v-49.12L749.51 2H1.997Z"/></svg>');
  }
}
@media screen and (max-width: 576px) {
  .about .flex {
    flex-wrap: wrap;
  }
  .about .flex p {
    font-size: 24px;
  }
  .about .flex:nth-of-type(1) {
    flex-wrap: wrap;
  }
  .about .flex:nth-of-type(1) p {
    color: #fff;
    width: 50%;
  }
  .about .flex:nth-of-type(1) p:first-child {
    width: 100%;
  }
  .about .flex:nth-of-type(1) img {
    order: 1;
    max-width: calc(50% - 20px);
    margin: 0 0 0 20px;
  }
  .about .flex:nth-of-type(2) {
    flex-wrap: wrap;
  }
  .about .flex:nth-of-type(2) p:first-child {
    width: 100%;
  }
  .about .flex:nth-of-type(2) img {
    margin: 0 8px 0 0;
    max-width: 125px;
  }
  .about .flex:nth-of-type(3) img {
    margin: 4px 0 0 0;
    max-width: 100%;
    order: 1;
  }
  .about .flex:nth-of-type(4) img {
    display: none;
  }
  .about .about-ftd {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="363" height="63" fill="none"><path fill="%23BDFD02" d="m347.88.352 14.884 17.481.238.28V62.31H15.419l-.299-.351L.236 44.477l-.238-.28V.001h163.725V0h183.858l.299.352ZM199.277 2H1.998V43.46l14.346 16.85h344.658V18.85L346.656 2H199.277v.001Z"/></svg>');
  }
}
@media screen and (max-width: 450px) {
  .about .flex p {
    font-size: 21px !important;
  }
  .about .flex:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .about .flex:nth-of-type(1) p {
    width: auto;
  }
  .about .flex:nth-of-type(1) p:first-child {
    font-size: 24px !important;
  }
  .about .flex:nth-of-type(1) img {
    max-width: 136px;
  }
  .about .flex:nth-of-type(4) p {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 376px) {
  .about .flex p {
    font-size: 18px !important;
  }
  .about .flex:nth-of-type(1) p:first-child {
    font-size: 20px !important;
  }
  .about .flex:nth-of-type(1) img {
    max-width: 111px;
  }
  .about .flex:nth-of-type(2) img {
    max-width: 106px;
  }
  .about .flex:nth-of-type(4) p {
    font-size: 16px !important;
  }
}
.about .about-mobile-image {
  display: none;
}
@media screen and (max-width: 576px) {
  .about .flex {
    display: none;
  }
  .about .about-mobile-image {
    display: block;
  }
}

/* Features styles */
.features {
  margin: 100px auto 0;
}
.features .flex:nth-of-type(1) {
  justify-content: flex-end;
  margin-bottom: 48px;
}
.features .flex:nth-of-type(1) .feature {
  color: #000;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="264" height="175" fill="none"><g clip-path="url(%23a)"><path fill="%23BDFD02" d="M0 6a6 6 0 0 1 6-6h252a6 6 0 0 1 6 6v157.487l-5.749 5.756-5.749 5.757H11.038l-5.059-5.066L0 163.947V6Z"/><path stroke="%2383A912" d="M11 5.5h242a5.5 5.5 0 0 1 5.5 5.5v147.935l-5.382 5.281-5.385 5.284H15.824L5.5 159.368V11A5.5 5.5 0 0 1 11 5.5Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h264v175H0z"/></clipPath></defs></svg>') no-repeat center;
}
.features .flex:nth-of-type(1) .feature:after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="86" height="86" fill="none"><g clip-path="url(%23a)"><path fill="%23A6DB0C" fill-opacity=".7" d="M82 0H4a4 4 0 0 0-4 4v13.73a4 4 0 0 0 1.172 2.829l64.27 64.27A4 4 0 0 0 68.27 86H82a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h86v86H0z"/></clipPath></defs></svg>') no-repeat center;
}
.features .flex:nth-of-type(2) .feature {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="264" height="175" fill="none"><g clip-path="url(%23a)"><path fill="%23FF41DF" d="M0 6a6 6 0 0 1 6-6h252a6 6 0 0 1 6 6v157.487l-5.749 5.756-5.749 5.757H11.038l-5.059-5.066L0 163.947V6Z"/><path stroke="%239D1F88" d="M11 5.5h242a5.5 5.5 0 0 1 5.5 5.5v147.935l-5.382 5.281-5.385 5.284H15.824L5.5 159.368V11A5.5 5.5 0 0 1 11 5.5Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h264v175H0z"/></clipPath></defs></svg>') no-repeat center;
}
.features .flex:nth-of-type(2) .feature:after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="86" height="86" fill="none"><g clip-path="url(%23a)"><path fill="%23E812C4" fill-opacity=".7" d="M82 0H4a4 4 0 0 0-4 4v13.73a4 4 0 0 0 1.172 2.829l64.27 64.27A4 4 0 0 0 68.27 86H82a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h86v86H0z"/></clipPath></defs></svg>') no-repeat center;
}
.features .feature {
  width: 264px;
  height: 175px;
  padding: 15px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.features .feature + .feature {
  margin-left: 75px;
}
.features .feature:after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  top: -10px;
  right: -10px;
  pointer-events: none;
}
.features .feature strong {
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  text-transform: uppercase;
  display: block;
}
.features .feature strong span {
  font-size: 30px;
  line-height: 36px;
}
.features .feature strong span:last-child {
  margin-left: 6px;
}
.features .feature p {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .features .flex:nth-of-type(1) {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 995px) {
  .features .feature strong.is-smaller {
    font-size: 50px;
  }
}
@media screen and (max-width: 996px) {
  .features .feature {
    background-size: contain !important;
    background-position: top center !important;
    aspect-ratio: 246/175;
    width: calc(100% - 32px);
    height: auto;
  }
  .features .feature::after {
    width: 66px;
    height: 66px;
    background-size: contain !important;
    top: -4px;
    right: -4px;
  }
  .features .feature + .feature {
    margin-left: 48px;
  }
  .features .feature strong {
    font-size: 48px;
    line-height: 1.2;
  }
  .features .feature strong span {
    font-size: 20px;
    line-height: 1.2;
  }
  .features .feature p {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 860px) and (min-width: 767px) {
  .features .feature strong {
    font-size: 36px;
  }
  .features .feature strong span {
    font-size: 16px;
  }
  .features .feature p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .features {
    margin: 70px auto 0;
  }
  .features h2 {
    margin-bottom: 30px;
  }
  .features .flex {
    padding: 12px 15px;
    max-width: 100vw;
    overflow-x: scroll;
    margin: 0 -15px;
  }
  .features .flex:nth-of-type(1) {
    margin-bottom: 24px;
  }
  .features .feature {
    min-width: 264px;
  }
  .features .feature + .feature {
    margin-left: 25px;
  }
}

/* Team styles */
.team {
  margin: 120px auto 0;
}
.team .container > .flex {
  align-items: flex-start;
}
.team h2 {
  font-style: normal;
  font-weight: 900;
  font-size: 52px;
  line-height: 62px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin: 0 auto 44px;
}
.team h2:after {
  content: "";
  display: block;
  width: 165px;
  height: 14px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="169" height="22" fill="none"><path fill="%23FF41DF" d="M94.44 21.645c.043.167-.54.25-1.604.242-.042-.168.538-.252 1.604-.242Zm-55.068-.498c-.002.11.007.222.008.332-.625.005-1.263.003-1.869.008-.603.006-1.346.052-1.346-.077.732-.006 1.398.018 1.876-.093.483-.113.125-.202 1.331-.17Zm1.056-.254 1.08.412c.904-.059 1.774-.118 2.67-.176-.298.28-1.469.364-3.197.344l-.553-.58Zm5.917.225 1.05.086-1.609.005-.52.25-.015-.5 1.063-.003c.01.054.022.108.031.162Zm4.262.076c.105.082-.352.273-1.068.252-.002-.084-.008-.167-.008-.25l1.076-.003Zm-16.588-.026c.02.015.007.029-.017.043l1.091.035c-.75.228-2.328.18-3.742.226-.858.028-1.026.033-1.6-.077.46-.014.893-.029 1.347-.044l.244-.171c.915-.017 1.3.065 1.877.158-.09-.055-.183-.11-.273-.166.352-.003.706.001 1.061-.004h.012Zm26.22.258h-.533a3.724 3.724 0 0 1-.005-.166l.532-.001c.003.055.005.111.005.167ZM65.483.089c1.217.062 2.273.094 3.203.247.71-.22 1.666-.076 2.49-.09 2.247-.037 4.569-.042 6.42.024 1.847.066 1.574.09 3.432.077 1.342-.009 3.294.069 4.75.091-.061.055-.17.112-.248.167.777-.026 1.612-.04 2.408-.057.199-.004.383.046.516.04 1.129-.04 2.02-.163 3.217-.144.791.113.639.278 1.895.25-.178-.083-.366-.167-.54-.25.81.005 1.615.088 2.388.088.438 0 .848-.07 1.107-.074 2.213-.04 3.332.09 4.808.323l1.596-.247 1.866.165c-.365-.083-.713-.168-1.068-.25.748-.042 1.188.052 1.863.062.463.006.569-.065 1.087-.065 1.631 0 3.41.006 5.073.004.007.083.009.166.011.25.62-.056 1.219-.112 1.863-.168-.087.083-.175.167-.265.25l1.878-.251c.358.166.728.333 1.071.5.652-.045.087-.283.821-.376.63-.078.702.02 1.353.018.648-.002.664-.133 1.631-.15.966-.016 3.141-.032 4.168-.004 1.339.034 2.028.166 3.246.163a552.88 552.88 0 0 1 4.385.002c.43.002 1.639.143 2.052.217.561-.197 2.034-.12 2.808-.19.703-.07.038-.198.94-.246.123.05.354.107.479.16.157-.011.195-.026.231-.04.055-.019.106-.037.495-.04.661-.005 2.803.023 3.438.053 1.061.05.912.177 2.015.141-.017-.054.004-.11.004-.164l2.4-.022.006.166c2.608-.37 5.209-.502 8.018-.153.762-.047 1.394-.147 2.222-.162 2.186-.034 4.73.085 6.956.191.23.013.472.027.746.053.141.013.29.028.511.062.112.018.243.04.436.088.195.056.474.105 1.016.407.118.069.259.157.431.293.182.155.34.253.698.739.316.433.658 1.222.63 2.072a3.51 3.51 0 0 1-.685 1.997c-.486.618-.754.746-1.008.917-.197.118-.287.159-.402.212-.234.104-.316.128-.423.165-.101.034-.191.06-.247.075-.27.074-.421.105-.581.139-.306.064-.56.11-.79.153a58.3 58.3 0 0 0-1.406.276c-.468-.078-.953-.159-1.418-.243.018.11.03.222.05.329-.81.143-1.176.075-1.903.147-.687.067-.279.157-1.266.282-.392.05-2.08.212-3.046.314-1.676.18-3.491.383-5.4.583-1.607.17-3.314.177-3.367-.134-.007-.046.681-.05.263-.138-.657-.137-2.124-.232 1.239-.544-.045-.089-.037-.164-.033-.253 1.429.047 3.034-.352 1.176-.263-.656.03-3.138.492-3.522.641-.941.377.734.426.173.797-.087.058-2.796.514-3.263.567-.695.077-.745.01-1.167.036-.745.045-.782.155-1.564.215-.925.071-1.849.029-2.899.17.335-.143.69-.284 1.026-.426-.772.066-1.208.16-1.548.262-.412.13-.675.277-1.336.408-.38-.022-.771-.043-1.16-.064l-1.256.152c-1.452-.08-3.388-.34.478-.421.058-.171-.166-.266.046-.463.146-.132.684-.25-.402-.26-.063.114-.155.235-.228.352-1.631.168-1.916.467-2.357.707-.182.098.696.127.256.223-.68.147-1.749.017-1.562-.11-.196.014-.362.03-.547.045-.001.056.009.109.003.166-1.072.047-1.913.24-2.878.332-.794.076-.864-.01-1.639.052-1.429.113-1.668.271-3.446.45-.776.079-3.804.19-5.096.295-.323.026-.476.12-1.031.14-1.252.045-2.7-.027-2.472-.287-.273.078-.52.155-.782.232.673.05 1.397.056 1.37.22-1.347-.004-2.522.246-3.978.323-.333.018-.956-.113-1.367-.043-.01.082.047.165.001.249-.401.081-1.606.074-1.766.087-1.083.085-1.978.083-2.695.132-.715.048-1.179.248-1.6.273-1.247.075-1.914-.05-2.764-.093-.071.06-.172.125-.255.187l-1.571.13c-.005-.055-.029-.11-.028-.164-1.209.237-1.9.343-3.515.455-.91.064-1.33.013-2.057.25-.38-.02-.723-.042-1.087-.062-2.585.38-4.627.262-7.204.41-.014-.054-.03-.108-.04-.161l-1.062.129 1.096.201c-.835.102-1.63.067-2.359.112-1.16.071-1.893.219-2.968.324-.014-.051-.037-.104-.053-.156l-2.373.021-2.111.505-1.14-.07-1.004.163.23-.354-2.866.819c-.373-.11-.743-.22-1.116-.328l-1.304.44-2.118.085-.05-.16-1.313.191c-.004-.055-.018-.11-.013-.166-.83.16-1.443.304-2.65.37-.667.037-3.072.157-3.563.223-1.556.209-1.43.336-3.1.408.009-.053-.037-.103-.051-.155-1.166.008-2.288.013-3.464.022.022.054.041.108.063.163l.774.02c-1.001.136-2.006.27-2.972.404-1.855.008-3.294.252-5.316.328-.853.032-1.653-.103-2.91.088-.033.052-.005.109-.023.164-1.24.127-3.181.138-4.26.133-.815-.002-.653-.09-1.608.086-.272-.063-.56-.123-.836-.185l-.227.352c-1.296-.011-1.993.066-2.877.305l-.045.012-.817-.06c.768-.18.446-.229-.312-.268-.451.05-.283.14-.51.209-.879.273-1.458.236-2.62.315-1.93.132-3.461.294-5.36.39-.365.017-.825-.036-1.323.033-.028-.084-.027-.165-.043-.248-1.349.195-2.189.44-3.702.55-.014-.054-.034-.107-.048-.16-.701.056-1.403.114-2.089.172l.004.166c-.418-.02-.923-.03-1.336-.05-.815.127-1.57.248-2.351.382-.196-.226 1.012-.217 1.81-.424.351-.088.482-.22.76-.314-.884.075-1.763.155-2.629.241-.174.156-.256.306-.481.467a9.682 9.682 0 0 1-.595.07l-.325.03c-.048.005-.08.008-.1.008-.009 0-.005-.001.024-.01l.065-.018.053-.017c.04-.013.117-.037.225-.08.11-.047.258-.106.508-.268.238-.175.66-.415 1.075-1.246a3.052 3.052 0 0 0 .225-1.878 3.028 3.028 0 0 0-.804-1.522c-.588-.563-.892-.62-1.09-.71-.195-.07-.314-.094-.32-.096a2.27 2.27 0 0 0-.176-.031c-.082-.009-.036.001-.014.006a7.793 7.793 0 0 0 .764.067c3.627.045 6.643-.085 10.283-.017.129.002.245-.003.359-.011.316-.025.615-.08 1.206-.077 1.011.004 2.737.135 3.69.229.57-.055 1.052-.113 1.585-.169.741.076 1.473.155 2.207.23 1.064-.017 2.095-.109 3.162-.095 1.253.018 1.733.129 2.926-.015.09.056.18.11.273.166 1.823-.173 3.636-.081 5.36.061.083-.083.183-.169.254-.25 1.354-.063 1.719.117 3.01.134.648.009 1.115-.128 2.118-.057.63.045 1.061.181 2.066.062.882.115.584.27 1.99.252-.123-.502 2.315-.144 2.66-.135 1.963.057 2.65-.028 4.233.029-.01-.058-.02-.11.038-.164 1.082-.073 3.05.07 3.867.075 2.144.016 4.157.013 5.898-.01 2.097-.026 2.683.093 4.434.156 1.462.053 2.703-.02 4.221.026.324.01.831.097 1.318.075.03.057.025.109.044.164 1.922-.193 3.43-.14 5.542-.07 1.202.041 2.16.042 3.392.077.48.014.816-.086 1.466-.062.495.018 1.2.114 1.876.08a.375.375 0 0 1 .039.165c1.409-.138 1.952-.033 3.474.01 1.104.032 1.308-.023 2.841-.01 1.768.014 5.2.082 7.242.149 1.102.035 2.373.215 3.229.235.854.02.592-.1 1.432-.05-.449.215.539.29.962.473 1.092.473 1.13 1.019 1.224 1.488.023.119-.699.129-.553.218.528-.001 1.061.005 1.598.011-.188.123.45.265.552.367.131.132-.394.17-.473.265h-.015c-.118.138.255.193-.007.338-.059.032.055.114-.09.147-.938.221-2.491.123-2.641-.135l-1.327-.009c0 .056.002.112.004.167l-2.411-.18c.357.07.717.143 1.074.214-.267.068-.537.135-.801.204-.861-.081-1.702-.052-2.636-.111-.93-.06-.936-.182-2.138-.084-.556-.045-1.134-.22-1.622-.247-1.496-.082-.212.299-.289.407.9-.022 1.78-.047 2.673-.07.005.083.01.166.017.25.77.017 2.164.18 2.671.05l-.009-.12.535.004.519.214 1.625.049.012.332c.976.015 1.776.162 2.671.06-.71-.09-1.421-.178-2.13-.266-.115-.27.625-.442 1.845-.613.748.13 1.5.185 1.288.386-.077.072-.951.24-.898.321.102.154 1.177.225.961.388-1.047.02-2.123.044-3.182.066-.446.08-.907.158-1.345.238-.361-.116.767-.172 1.04-.243.331-.087-.401-.157-.25-.252-1.122-.026-1.709.026-2.405.153-.756-.084-.653-.166-.825-.29-.121-.088-1.031-.053-1.315-.14-.318.11.467.164.182.297-.162.075-1.221.154-.978.283-1.708.004-2.645-.23-4.289-.268l1.61.215-2.944-.135c-1.097.18-.408.367-2.399.323l1.07.336c-1.352.06-2.375-.118-3.492-.162-1.937-.075-2.515-.014-3.437-.318.53-.15 1.046-.302 1.57-.453l-1.62.048c-.128.237-1.306.046-1.86-.057.18-.082.353-.166.532-.248-1.47.195-2.063.35-1.873.66l-1.034.003a8.615 8.615 0 0 1-.019.248l-2.137-.003c.164-.042.325-.084.49-.125l-.764-.127-1.058.155-1.343-.074c.399.2-.001.38.013.584-.991.007-1.973-.015-2.95-.005-.668.007-.885.095-1.634.086-.907-.01-1.849-.133-2.903-.084.07-.113.78-.124 1.438-.159.654-.034.844-.031.699-.174.97.04 1.692.04 2.66.002-.053.155.067.182 1.087.165-.29-.117.35-.187.368-.289.017-.102-.603-.131-.337-.25.116-.05 1.205-.144 1.008-.21l-1.877.08-.252.25c-1.918-.044-2.79.196-4.537.251l-.54-.167-.257.417c-1.646.004-3.456.075-3.748-.249l2.142.083c.176-.111.353-.223.53-.333 1.767-.03 3.561-.057 5.337-.084l-.55-.5 2.674-.083.014.25 5.082.166 1.326-.241-2.144-.128c.754-.14 1.571-.133 2.674-.121-.787-.222.475-.388-.815-.585l.276.334h-1.591a3.783 3.783 0 0 0-.048.158c-1.284-.007-1.083.088-1.028.254-.776.016-1.203.008-1.077-.125.075-.08.633-.138.263-.21-.729.152-1.24-.01-2.058.007-.594.012-.648.128-1.189.149-.96.038-1.94.044-2.9.09.071-.118-.244-.213.593-.293.486-.046 1.089.06 1.537-.08-.426-.04-.894-.08-1.334-.12l-1.864.16.54.25-2.14.084c-.01-.168.228-.325-.545-.46l1.066-.083a5592.67 5592.67 0 0 0-4.282-.123c1.067.097 2.155.193 3.216.29l-.525.209c-1.454.025-.592-.148-1.613-.166l-.014.167-2.117.001.816.166c1.783-.127 2.484-.048 3.755.162l2.385-.08c.186.139.352.278.552.417-.57.024-.838-.135-1.467-.163-.29-.013-1.301.018-1.744-.005.07-.053.098-.153-.271-.164-.475-.013-1.263-.07-1.558-.064-.88.015-1.066.102-1.929.063-.176-.263-1.778-.275-2.952-.413-.148.073.13.216.563.246.612.041.737-.036 1.382.051.654.088 1.154.325 2.073.407-1.222.074-2.489.141-3.723.213-.216-.249-1.408-.335-2.886-.252-1.073-.105-3.466-.09-4.017-.282-.085-.03.409-.03.324-.09-.032-.024-.347-.237-.934-.195-.54.148-1.063.307-1.596.459.443.074.856-.106 1.072.003.117.06-.27.131.056.208-.654-.009-1.09 0-1.654-.001l1.34.247h.268c.032-.08-.068-.173.05-.246.124.029 1.496.11 1.457.203-.013.032-.396.034-.27.089.213.091 1.49.213.079.281-.52.025-1.216-.07-1.3-.16.341-.03.711-.057 1.064-.086-2.61.017-3.933-.218-5.63-.487-.543.07-.765.157-1.065.253-.411.131-.215.194-1.33.17.005-.09-.275-.28.273-.327.762-.066 1.469-.209 2.065-.24.59-.03.465.093 1.07.051.49-.033.733-.1 1.389-.081-.16-.042-.325-.082-.485-.123.252-.043.508-.085.763-.127l1.841-.046c-.529-.076-1.748-.059-2.316-.03-.558.03-.89.187-1.412.163-.349-.109.434-.2.396-.288-.057-.124-1.042-.117-.86-.265-.365.09-.696.178-1.055.267l.447.29-1.617-.162c.358.083.718.165 1.08.247-1.288-.02-2.488.084-3.725.012-.178.071-.354.143-.528.215l-2.689.213c.521-.1 1.046-.201 1.576-.301.146-.216.035-.168-1.062-.207-.031-.002-.023-.068-.265-.067-.243.001-.226.066-.26.069-.361.027-.705 0-1.074.01.354.095.698.192 1.042.288-.569.126-.357.224-1.525.22a4.403 4.403 0 0 1-.069.155c-.708.06-1.38.12-2.098.181a359.17 359.17 0 0 1-1.351-.411c-.436.127-.88.254-1.327.38l1.079.204c-.345.003-.707 0-1.063.005h-.012c-.239-.124-.434-.212-.01-.334-.356.085-.71.17-1.06.256-.744.011-1.173.028-1.05-.113-.55-.014-1.093-.027-1.627-.042l1.594-.091c.166-.266.981-.426-.522-.622.344-.1.7-.198 1.04-.297.439.082.885.163 1.334.244l1.07-.254c.747.11.639.27 1.87.243l-.255.334 1.338-.006-.53-.367c.695-.116 1.402-.232 2.115-.348-.901.072-1.77.147-2.664.218.04-.096.081-.309-.867-.315-.362-.002-.75.085-1.267-.01-.022.087 0 .167-.006.252l-1.597.006a1.935 1.935 0 0 1-.01-.118l-1.075.04c.267-.112.533-.225.793-.337l1.074.245c.085-.084.174-.168.262-.251l1.612.076c-.268-.118.315-.187.381-.292.044-.069-.41-.09-.418-.167-.01-.116.026-.253.004-.374-.876-.025-1.796-.048-2.676-.072-.091-.148.034-.24.809-.338l1.547.075c.455-.057.914-.114 1.38-.17.18.165.379.332.553.497 1.312-.069 1.002-.262 1.676-.42.121-.028 1.17-.003 1.233-.091.307.055.54.109.823.164-.536.057-1.05.115-1.595.173l1.872.074.81-.25 4.263-.098-1.06.087c.18.11.361.22.54.331.432-.056.901-.114 1.318-.17.845.048.379.16.933.239.541.08 1.936.07 2.557.17.571-.004 1.072-.004 1.618-.006-.359-.055-.714-.11-1.067-.166.174-.111.343-.222.523-.333-.482-.009-.996.118-1.419.161-.421.044-1.37.154-1.781.055 1.74-.326 3.338-.381 5.614-.138l-.009-.25 1.352.372-2.672.34c.663.058.275.266 1.368.197.557-.035 1.477-.306 2.047-.312 1.206-.011 1.919.05 3.012.06-.838-.135-1.637-.275-2.456-.412.101-.055.197-.11.297-.164-3.054-.11-.733-.459.517-.42.442.137.906.276 1.34.413 1.047-.114.614-.153.331-.292-.454-.224 1.413-.056 2.06-.043.02.084.015.167.023.25l2.142-.086-1.077-.165c2.16.018 3.656-.158 3.735-.503-.448.111-.89.223-1.335.334-.27-.138-.54-.276-.808-.415l1.06-.169-1.6.134-.993.243.471.209-1.594.084-.03-.165-3.725.087c0-.083-.006-.166-.009-.25l1.064.082.807-.251.29.165 2.123-.002c-.613-.377-2.121-.337-4.02-.17l-1.067-.15-1.876.164.278-.168-1.889-.079.545.331-1.033.01a4.1 4.1 0 0 1-.054.157c-1.172-.013-1.711.083-2.65.176l.529-.334c1.026.015 1.39.103 2.134-.047l-.841-.123c.1-.083.198-.167.295-.25l-1.597.17-.55-.332c-.533.001-1.077.001-1.596.005-.028.135 1.44.04 1.038.198-.406.159-.857.08-1.537.054-.022.053-.025.109-.04.163l-1.598.008c.744.178 1.528.236.279.416-.642-.093-1.048-.15-1.352-.294-.075-.034-.44-.196-.403-.237.114-.126.636-.172.4-.3-.18.057-.37.111-.554.168-.702-.007-1.201.087-1.835.095-.47.006-.664-.06-1.094-.06-.432-.001-.482.086-1.031.055-.669-.039-.95-.188-1.907-.15.35.12.719.244 1.079.365-.176.072-.356.142-.53.213l-1.6.008.277.333c-.616-.067-1.254-.135-1.879-.2.372-.09.79-.145.952-.261.228-.164.124-.38-.439-.53.356-.005.72-.007 1.067-.01v-.248l-2.147-.075.55.499c-1.028-.095-1.232.011-2.137.092l-.015-.166-1.322.089c.08-.056.195-.11.25-.168-.722.04-1.786-.086-2.327-.068-1.09.036-.652.25-.881.316-.236.066-.456.005-.725.027-1.867.156-3.695.323-5.392.522l-.832-.332c-.422.099-1.114.01-1.545.113-.412.103-.223.339-1.371.403.095-.105.17-.223.257-.332-.612.086-1.262.174-1.862.26a56.54 56.54 0 0 1-.141-.008c-.878-.048-1.688-.095-2.55-.143.082.054.196.112.26.163-.811.049-1.368-.116-1.847-.142-1.073-.058-1.834.102-2.585.071-1.015-.042-.832-.192-1.99-.158.022.082.008.167.017.25-.898-.033-1.796-.062-2.672-.127l.004-.084a10.728 10.728 0 0 1-.38-.026 1.744 1.744 0 0 1-.132-.018l-.04-.01c-.003.002.007-.006.045.038.052.053.014.175-.007.184-.043.04-.03.019-.004.014a3.531 3.531 0 0 1 .291-.059l.083.408c.166-.083.312-.158.485-.235a78.928 78.928 0 0 1 1.608-.044c-.361.09-.678.18-1.037.272.039.092.792-.075 1.035-.056.445.045-.428.264-.197.347.839-.164 1.778-.331 2.62-.487l.8-.07.037.248 2.126-.092c-.37-.012-.722-.026-1.07-.038.048-.155.336-.294.48-.462.073-.08-.026-.179.805-.184.334-.002.612.097 1.056.06.72-.06 1.159-.12 1.85-.127.021.05.04.103.059.154l1.604-.085.547.169c.551-.072 1.032-.138 1.57-.209.012.055.024.109.038.163 1.336-.087 1.988-.194 2.107-.416l4.246-.421c-.153.235-.307.47-.457.705.517-.07 1.044-.14 1.582-.21a8.232 8.232 0 0 1-.015-.25c.136-.012.26-.022.376-.03.63-.038.977.01 1.501.044.617-.117 1.253-.236 1.85-.352l-1.608.087-.035-.248a1192.759 1192.759 0 0 1-2.366.099c-.478-.1-.947-.2-1.41-.301l1.324-.19c.102.104.202.208.308.311l.39-.031 1.719-.14.002-.164 1.078-.086c.012.055.02.11.032.165l1.837-.23c.251.106.5.212.755.317l-.439.24-1.05.128c1.112.12 2.475.016 4.034-.029 1.192-.255.234-.31.225-.52l1.283-.021 1.099-.251c.64.032 1.268.063 1.892.098.588-.464 2.883-.503 5.002-.75.858-.1 1.065-.336 2.136-.408.276.085.559.178.837.265-1.14.037-2.042.15-3.19.258 0 .083 0 .166-.002.248l-1.052.088c-.357.197 1.256.24 2.175.159-.178-.19 1.107-.4.476-.54l2.168.076c.507-.32.998-.638 1.502-.957l.83.354c1.102.021 2.177.044 3.27.066.006.084.003.168.014.251.69-.169 1.56-.323 1.263-.477-.261-.135-1.512.042-2.03.026-.514-.017-.165-.158-.834-.16l.005-.001h-.01c.34-.09.64-.17.966-.255l1.66.2 1.837-.233c.189.097.376.194.568.29l-1.067.044c.005.069.015.137.023.207a29.63 29.63 0 0 0 3.202-.26c-.37-.136-.744-.274-1.12-.41.73.024 1.435.05 2.157.076l-.055-.498 1.133.367-.005.126c-1.562.12-1.149.222-.222.27.794-.093 1.587-.184 2.375-.277l-.552-.164 1.575-.337c1.337.026 1.212.298 2.713.28.165-.161-1.587-.16-1.048-.324.315-.095 1.129.016 1.537-.093-.521.002-.288-.166-.865-.133-.989.055-1.416.15-1.295-.065 1.093-.111 1.388.018 2.155.032.55.01 1.006-.145 1.594-.17-.352.055-.706.114-1.06.17.196.151.392.303.59.454l3.719-.387c.21-.123-.419-.098-.482-.182-.107-.147.708-.266-.115-.355l2.15-.09-.44.16c.154.027.306.055.46.084-.353.03-.702.06-1.057.092.007.082.014.165.023.247l1.599-.13c-.011-.11-.025-.221-.036-.332l3.21-.178-.298-.14c.648-.407-.005-.53-2.442-.305l1.094.161-1.323.192c-.75-.034-.904-.115-.842-.265l-1.595.129-.031-.164-2.13.09 3.187-.345-.022-.25c.992-.096 1.105-.082 1.12.071l1.035-.076-.522.208 2.664-.26c-.73-.082-2.221.009-2.188-.196-1.635.102-2.403.263-3.436.53l-.516.041c-.796-.047-1.276-.146-2.433-.052.17.072.405.131.533.21-1.15.073-2.96.517-3.822.548-1.77.063-.1-.393-.476-.532-1.84.07-1.756.374-2.875.549-.93.145-1.85.145-2.656.226-.582.058-.698.137-1.127.168-2.065.152-3.476-.038-5.588.13l1.644.201-2.657.127c-.019-.052-.039-.104-.055-.156l-2.653.211c.006.084.015.166.024.25l-.549-.124c-.918.165-1.462.311-2.652.381l1.635.12-2.128.083c-.024-.05-.05-.1-.073-.15-.786-.023-1.598-.044-2.397-.065-.089.062-.164.125-.26.187-.574.077-.953.02-1.37.037-.679.03-.87.165-1.508.188-.48.017-.756-.039-1.356.029-.022-.053-.033-.108-.057-.157-.567-.002-.862.139-1.303.165-1.098.067-1.627-.055-2.844.075.133-.067.27-.128.395-.194-.526.055-1.385.054-1.583.182-.199.127-.108.136-1.019.2-.005.054-.02.107-.034.163-1.064.099-1.96.142-2.898.145-.618.003-.263-.144-.334-.22l2.667-.214c.026-.285-1.737-.247-1.672-.535l1.604-.086c-.196-.054-.36-.11-.574-.164-.437.128-1.554.24-2.004.331-.435.091.063.129-.117.208-.1.043-.391.092-.432.136-.089.1.543.085.453.197-.041.05-.452.135-.475.214-.031.108.075.254.056.368-.69.077-1.11.02-1.71.054a7.18 7.18 0 0 0-.155.01c-.718.058-1.127.197-1.865.233.339-.095.682-.194 1.032-.291-.363-.04-.719-.082-1.075-.122-.006.08.248.184-.236.265-.276.048-.816.14-1.034.153-.88.05-1.252-.011-2.176.105l-.52.21c-.268-.064-.56-.122-.804-.19.593-.014 2.247-.312 1.477-.356-.597-.033-1.55.275-2.316.186-.833.148-1.566.285-2.382.427-.2-.054.32-.26.544-.32.747-.204 1.645-.237 1.526-.43-.875.1-1.78.198-2.654.296-.011-.082-.02-.165-.032-.247l-1.604.128c.04-.058.262-.145.56-.212.046-.01.521-.04.5-.08-.027-.045-.476.002-.505-.003-.216-.037.016-.114-.064-.163l-.264.021c-.07.063-.186.123-.225.186l.523-.041h.004l.006.083-.535-.04c-1.452.252.128.328.38.413.243.085-.385.134-.38.208 0 .118.994.206.53.33-.349.093-1.452.085-1.252-.069.225-.155-.352-.317-1.365-.294-.187.152 1.507.146.52.325-.768.14-1.72.068-2.632.182-.026.165-.48.296-1.578.384.82-.327.269-.555-1.679-.436.172-.1.362-.2.517-.298-.626.029-1.275.061-1.877.096-.354.023-.634.04-.981.07-.13.009-.366.035-.521.055-.118.019-.226.031-.423.088-.12.05-.231.028-.62.347-.165.189-.597.478-.469 1.438.227.823.664.948.812 1.05.178.088.283.112.35.131a2.188 2.188 0 0 0 .209.046c.21.057.276.086.395.123.12.036.224.069.314.1.19-.075.398-.152.566-.231-.15-.007-.32-.016-.491-.027-.149-.01-.351-.023-.528-.042-.075-.01-.243-.024-.435-.073-.052-.014-.156-.038-.315-.114-.137-.093-.514-.185-.756-.918-.173-.872.247-1.218.401-1.39.19-.17.304-.218.392-.262.173-.077.256-.092.278-.1.037-.01.07-.017.104-.024.31-.064.382-.065.606-.094.68-.076 1.248-.117 1.918-.169.194.205.395.408.607.611l-.516.091c-.176.032-.372.065-.54.096.744-.047 1.437-.081 2.143-.117-1.419.215-2.43.283-3.73.353-.079.006-.145.01-.242.024a2.24 2.24 0 0 0-.116.02c-.025.007-.092.007-.244.092-.061.06-.26.095-.292.533a.602.602 0 0 0 .205.43c.077.065.129.088.17.107.182.068.142.046.188.06a2.702 2.702 0 0 0 .532.07c.163.005.358 0 .994.014.65.015 1.533.141 2.355.103.089.246-.44.448-1.055.664.458.031.906.058 1.345.088.629-.078.084-.166.373-.3.059-.025.848-.232 1.23-.287.706-.1 2.466-.211 3.456-.18.02.055.017.11.031.166.899-.1 1.742-.08 2.762-.094l.178-.003c.664-.013.862-.104 1.637-.096 1.257.012 2.13.143 3.432-.019-.348.087-.714.171-1.062.257a21.03 21.03 0 0 1 2.43.065c.181.015.29.02.482.026.096-.064.2-.128.302-.192l3.737-.102c-.32.185-1.395.416.554.414l-.552-.33 2.657-.099c.184-.056.375-.111.555-.167-.083.083-.197.17-.266.25.295.091.962.032 1.253.09.61.126.322.255 1.715.235-.587.104-.099.109-.137.206-.024.098-1.507.288-1.996.175.324-.071.713-.14 1.045-.213-.588.017-1.622.04-2.08.09.097-.005.57-.176.915-.202-.221.006-.46.021-.695.03l-.547-.07c-.767.097-1.325.332.326.242-.446.05-.324.155-.869.168-1.183.03-1.79-.108-2.91.02.143-.072-.512-.282-1.044-.24-.524.042-.66.12-1.109.168.458.11.896.217 1.354.326.46-.058.884-.115 1.328-.173l.276.332 1.075-.172.802.122c-1.12.247 1.217.732-.848.86-.24.015-.972-.09-1.245.069.141.09.372.19.547.283h1.05c-.26.084-.527.168-.797.253-.83-.246-1.596-.493-2.433-.739l-.53.253c-1.21.01-2.075-.1-3.202.017l-.017-.417c-.592.022-.855-.036-1.34-.057-.203-.009-.337.056-.506.05-.932-.035-1.514-.123-2.176-.22-.084.139-.172.278-.255.417-.349-.033-.69-.067-1.026-.1l-.585-.057c-.352.28-.692.561-1.029.841l-.572-.164c-1.106.118-1.797-.09-2.928.014-.428-.077.514-.174.77-.212.401-.06.71.008 1.06-.063.352-.07.345-.233 1.09-.284l-.997-.242c.157-.07.3-.141.452-.212-.786.082-1.278.018-2.142.01.103.157-.071.274-1.057.338-.362-.235-1.252-.415-1.093-.662-.594.144-1.319.365-1.844.488-.56.122-.868.149-1.397.248.38.003.719.009 1.092.01.1.23-.4.439.023.666-1.092-.085-.792-.273-2.262-.29.1.032.215.063.319.094.089.03.182.06.278.09-.186.01-.377.018-.594.023a7.449 7.449 0 0 1-.756-.01 3.986 3.986 0 0 1-.535-.08c-.03-.007-.052-.01-.18-.046-.224-.085-.508-.093-1.226-.65a3.271 3.271 0 0 1-1.109-1.86 3.297 3.297 0 0 1 .405-2.361c.606-.923 1.041-1.06 1.296-1.224.512-.258.684-.27.727-.291.077-.023.141-.04.2-.056.115-.03.232-.055.305-.072.236-.056.497-.104.67-.14.043.08.123.136.008.195-.067.03-.12.052-.372.098l-.183.035a18.605 18.605 0 0 0-.3.06 4.889 4.889 0 0 0-.257.063c-.062.019-.067.012-.322.103a3.195 3.195 0 0 0-.468.218c-.213.132-.527.286-.968.849-.215.297-.445.66-.572 1.313-.15.733.056 1.603.375 2.115.673 1.037 1.184 1.136 1.455 1.29.271.118.495.169.533.18l.133.03c.16.032.275.048.385.061-.12-.035-.241-.07-.443-.137a6.698 6.698 0 0 1-.082-.027 3.752 3.752 0 0 1-.316-.106c-.256-.156-.744-.11-1.576-1.32-.41-.584-.531-1.858-.26-2.482.21-.614.526-.972.757-1.198.477-.439.733-.515.922-.602.181-.074.321-.111.39-.127a2.063 2.063 0 0 1 .303-.03c.105-.002.236-.005.285.008-.067.015-.213.045-.346.08a4.902 4.902 0 0 0-.18.052l-.132.042c-.146.055-.32.1-.696.338-.187.13-.45.305-.764.736a2.84 2.84 0 0 0-.42.881 2.912 2.912 0 0 0 .006 1.551c.324 1.026.897 1.393 1.184 1.595.313.2.501.262.648.314.338.106.287.079.368.1.112.021.197.033.275.042.165.02.248.022.322.025.349.014.542.006.827.003.452.068.928.128 1.391.187-.206-.226-1.365-.405-1.065-.638.037-.027.37-.055.638-.09.291-.033.524-.07.408-.106-1.038-.02-1.665.025-2.253.064a3.27 3.27 0 0 1-.33-.008c-.073-.007-.106-.005-.245-.035-.13-.035-.288-.066-.598-.237a2.258 2.258 0 0 1-.605-.499 2.335 2.335 0 0 1-.555-1.357c.007-1.292.51-1.588.746-1.869.266-.24.432-.322.557-.391.234-.121.4-.17.422-.185a3.7 3.7 0 0 0 .188-.095c.194-.107.262-.183.264-.256.708-.114 1.199-.157 1.764-.217-.085.064-.144.126-.246.192-.548-.041-1.14.027-.837.14.052.022.192.054.315.086.112.034.236.065.31.076.514.076 1.015.097 1.903.039-.288-.004-.553-.007-.802-.012-.487-.285-1.244-.375 1.53-.64l-.032-.249c-.521.102-1.085.208-1.584.314-.278-.296 1.321-.41 2.378-.732.145-.045-.065-.252.21-.333.787-.057 1.29.1 1.895.074 1.337-.055 2.194-.274 3.472-.354.148.228-1.02.246-2.105.338-.174.208-.323.417-.503.623-.563.048-2.027.149-2.003.304.005.084.708.116-.079.289.716-.057 1.43-.12 2.142-.177l.236-.354c.793-.009 1.643-.022 2.415-.028a68.496 68.496 0 0 0-1.105-.246l1.595-.13c.348-.138.718-.28 1.043-.417-.412.343-1.398.627.071.79-.576.143-1.24.293-1.82.436-1.002-.034-2.957-.076-2.938.242 1.082-.193 1.846-.06 2.923-.155 1.775-.158 1.14-.07 2.937-.161.51-.026 2.857-.365 3.453-.18.36-.088.541-.155.838-.235-.918.044-1.75.082-2.676.128l-.043-.248c-.264.046-.523.09-.78.136-.263-.06-.545-.117-.827-.174.989-.1 2.039-.212 2.998-.309.956-.096 1.911-.187 2.842-.28-.583-.086-1.54-.017-2.385.06-.683.064-1.852.415-2.324.34-.702-.108 1.981-.525.919-.64.59-.053 1.056-.085 1.608-.13-.167.069-.36.14-.504.207.997-.072 2.796-.175 3.422-.11.712.076-.014.146.471.268.386.107 1.678.25 2.34.349-.083-.1-.201-.207-.3-.309l.481-.075.577-.092-.578.077c-.342.045-.68.09-1.033.134-.023-.147-1.236-.243.39-.442.114-.014.335-.024.617-.034.777-.027 2.08-.053 2.674-.15.09.05.043.104.08.157l2.652-.21c.168.059-.806.206-.941.287-.053.032.374.015.296.06-.239.134-1.099.227-.903.362.51-.18 1.038-.361 1.567-.543l1.605.04-.548-.242.494-.256 1.608-.045.014-.165c.812-.058 1.696-.24 2.378-.194l-.286-.18c1.169-.263 2.82-.637 2.661-.177.44-.09.891-.183 1.326-.274l-.233.353 1.602-.045c.027-.118-.02-.223-.308-.31-.405-.12-1.301-.142-1.361-.308 1.407-.122 1.898.091 2.981.082.762-.007 1.19-.122 1.871-.094.563.024.678.168 1.343.183 1.004-.096 1.275-.204 1.305-.354l.016-.001-.002-.002c.349-.023.696-.058 1.047-.084.013.082.025.165.039.247l2.138-.088c.118.149-.034.182-1.045.252.192.123.389.246.58.369l2.124-.17-1.03.417c.704-.111 1.405-.227 2.123-.337-.042.166-.175.423.833.423 1.012 0 .667-.128.816-.22.52-.046 1.056-.088 1.585-.132.145-.209-.66-.231-1.181-.356l.027-.305 1.116.16 1.028-.08.046.246 2.63-.385c.256-.187.515-.375.764-.561.104.103.206.207.31.309.36-.018.696-.075 1.063-.08.033.002.024.07.27.049.247-.021.212-.082.257-.091.269-.05.466-.024.74-.075.865-.16 1.286-.293 2.442-.356-.258.1-.43.133-1.052.169l.577.371c-.536.016-1.067.03-1.608.047.466.077.25.148.035.286.592.073 1.197.041 2.12-.039.019.053.035.105.057.158l1.585-.128c-.011-.083-.013-.165-.03-.249-1.558.284-2.858.183-1.32-.053.631-.097 1.357-.08 2.082-.187.625-.093.972-.26 1.862-.31-.184-.124-.382-.245-.573-.369l-1.597.13c.005.055.016.11.019.166-.356.025-.714.06-1.07.087l1.04-.297-1.062-.162 1.271-.396c.82.11 1.81-.016 2.966-.033l.48.046-.415.118c.562.078 1.176.042 2.096-.046-.036.256-.344.405-1.862.654-.328.054-1.488.167-.994.247l2.041-.244.88.006c-.179-.083-.02-.398 1.053-.321.108.008.196.21.812.165.447-.083.878-.183 1.317-.272l.664.048c.523-.168.565-.245-.152-.3l1.238-.068 2.478-.36-2.667.217 1.03-.42c-.88.157-1.761.312-2.64.467l1.023-.462 1.606-.088-2.17-.158 3.22-.095 1.936.428 1.85-.235.581.372-2.666.218c.023-.17.217-.291-1.096-.161.883.172-.198.4-1 .668l2.648-.384.026.248c-1.09.116-1.622.24-2.666.22.017.055-.005.109.033.166.423-.081 1.086-.018 1.28-.037.934-.094 1.862-.396 2.605-.443 1.764-.11.224.397.427.433.71.126 1.17-.172 1.275-.242.28-.192.032-.279 1.321-.364l-2.15.01 3.732-.307c-.6-.131-1.39-.152-2.69-.03.062-.218-.243-.359-1.13-.451l1.591-.088c-.037.146.04.237.847.255l.539-.115.28.141c.7-.154 1.397-.312 2.09-.464-1.43-.034-.589.223-1.85.268-.801.03-.91-.136-.838-.254.354-.061.706-.116 1.06-.174a42.952 42.952 0 0 0-4.799.395c-.025-.135.895-.142 1.33-.281.392-.125.238-.28.997-.406 1.628-.201.24.185.371.196.979.082 2.33.035 3.438.071 0-.086-.018-.166-.025-.25.364.023.7.041 1.085.066.57-.178 1.072-.086 1.56-.136 1.067-.11.76-.342 1.874-.468.09.1.2.206.297.308.612-.103-.215-.156.789-.188.514-.017 1.036-.031 1.598-.092.09.237-.348.507.876.596l2.382-.407-1.599.133.411-.118c-.901-.068-1.104-.174-1.014-.376l2.124-.178c.005-.055-.005-.11.008-.164.738-.108 1.3-.053 1.893-.085.802-.043 1.047-.184 1.829-.223.061.16.274.24-1.012.337-.17.18-.341.36-.508.54 1.411-.115 3.659-.488 3.695-.728l.809.012c.346-.11.68-.22 1.034-.332.735.041.978.074-.041.248-1.167.199-2.091.244-1.753.487 2.223-.18 2.276-.584 4.403-.772 1.634-.144 1.8-.26 3.393-.455.816-.1 2.513-.264 3.567-.297 1.044-.03 1.609.09 2.968-.098.383.11.743.215 1.113.323l-1.044.091.027.33-1.345-.04c-.99.19-1.838.13-2.941.236.186-.181 1.277-.19 1.864-.165.423-.117.871-.236 1.307-.354l-3.996.254c-.438.176-.861.351-1.295.527l2.384-.202.843.18-3.218.104.047.415c1.27-.106 2.464-.27 3.728-.315.251-.16.494-.32.746-.48 1.88-.063 1.24.118.325.389.706-.02 2.005-.274 2.354-.358.35-.085.096-.15.288-.188 1.096-.212 2.436-.247 3.426-.471-.259.163-.504.322-.751.482l-2.666.27c.119.209 1.688.003 2.418-.164.094.047.183.096.278.143.418-.034.829-.042 1.055-.133.099-.04.419-.176.405-.193-.193-.178-.441-.17.603-.402-.182-.05-.364-.103-.545-.154l1.578-.22-.495.294 2.121-.309c-.353.045-.708.09-1.068.134l.48-.543 1.603-.012-1.042.173c.718.05 1.412.1 2.151.148l-.503.253c-.375.005-.708.005-1.068.008.007.083.02.166.029.249a35.87 35.87 0 0 0 3.399-.257 46 46 0 0 0 .856-.114l-.021-.249 1.316-.03c.255-.065.534-.132.805-.197l-1.074.01c.754-.136 1.606-.28 2.372-.419l.288.142c.505-.074 1.053-.152 1.565-.226.347-.17.675-.337 1.025-.507 1.584-.055.266.15.642.277.057.016 1.154-.08.98-.139.027-.042-.007-.077-.001-.116l1.072-.097.038.162 3.167-.288c-.456-.04-.88-.081-1.314-.125l.017-.002h-.002c.571-.075 1.525-.213 2.002-.272.478-.06.456-.037.858-.082-.2.088-.339.17-.51.255.715.056 1.777-.067 1.63.142.543-.07 1.147-.223 1.569-.317.09.018.175.04.275.055.244-.017.213-.094.255-.102 1.305-.244 2.565-.23 3.972-.405.188.037.358.075.559.11-.106-.1-.215-.2-.312-.302.543-.057 1.053-.111 1.591-.17-.11.268.323.414 1.14.542-.675.106-1.416.215-2.093.315.19.064.366.128.554.192.734-.052 1.404-.098 2.137-.157.064-.106.473-.253.472-.353.011-.1-.488-.152-.826-.192-.615-.066-.995-.003-.03-.25.792.02 1.613.03 2.37.029l-.024-.247c.32-.05.656-.108.856-.158-.019-.08-.031-.164-.055-.24.048-.009.079-.025-.05.028a1.826 1.826 0 0 0-.183.092c-.089.054-.308.172-.56.476a2.094 2.094 0 0 0-.467 1.251 2.103 2.103 0 0 0 .395 1.287c.219.284.294.321.397.408.094.072.165.115.222.147.349.18.395.149.439.16.04 0 .045-.008.048-.016.002-.018-.013-.041-.025-.063-.031-.045-.055-.092-.195-.128-.367-.093-1.051-.035-1.685-.072-.32-.019-.5-.092-1.14-.08-.994.018-2.758.298-3.912.253-.267-.194 1.078-.385.511-.545.362-.042.701-.085 1.049-.125 1.079.013.261.205-.042.276-.282.072-1.071.148-1.011.227 1.807-.016 3.304-.108 3.19-.421.703.03 1.425.062 2.111.105a23.163 23.163 0 0 0-.529-.426c-.744-.01-1.274.09-1.859-.012-.414.06.807.24-.571.159-.169-.01-1.213-.165-1.254-.195-.238-.207 1.702-.148 1.542-.382-.839-.011-.263.114-.845.165-.766.07-1.445.157-2.334.177l.001.332-1.07-.036c.176-.098.348-.196.517-.294l-1.025-.001c-.029-.053-.021-.105-.072-.158-1.151.008-3.052-.045-3.628.148-.571.193 1.852.092 2.387.18l1.272.005c.176.067.364.135.554.203-.179.098-.356.196-.524.294-.348-.082-.737-.163-1.084-.245l-1.066.05a36.02 36.02 0 0 0-.273-.29c-.337.085-.726.173-1.054.257-.774-.048-.437-.158-.9-.232-.466-.075-1.958-.09-2.573-.073-.036.056-.031.107-.053.161l-1.005.018c-.258.165-.246.355-1.622.343l-.272-.247c-.44-.025-.89-.049-1.351-.073.737-.089 1.415-.18 2.135-.267-.909.05-1.694.182-2.449.256-.967.097-1.952.075-1.827.28-.82.048-2.221-.105-2.945-.128a18.858 18.858 0 0 0-1.011-.002c-.255.005-.513.011-.831.005.288-.044.557-.081.831-.11.53-.053 1.09-.081 1.799-.083.014-.053.031-.104.045-.157 2.11-.083 1.76-.362-.31-.332-.443.007-.384.171-.77.212-.253.01-.509.019-.767.027l-.832.029c-.133.146-.587.268-.528.419a24.18 24.18 0 0 1-1.618-.073l-.005.248c-1.056.017-1.585.093-1.599.262-.742-.024-1.392-.049-2.122-.074.148-.07.292-.14.436-.21-.517-.233-1.05-.466-1.586-.7-.941-.015-1.53-.123-2.375.002-.187-.11-.369-.218-.561-.328-.831.126-.884.136-.234.294.557.13 1.287.326 2.143.409.517.05.696-.081 1.059-.003-.173.068-.339.14-.513.21-.444-.054-.895-.106-1.354-.16-1.296-.017-1.71.165-2.914.172 0-.039.005-.077.005-.115l-1.646-.049.56.25c-.561 0-1.069.002-1.602.003.012.11-.003.224.021.332-.941.027-.208-.201-.859-.158-1.196.079-2.727.056-3.687.243-.787-.151-1.513-.138-2.649-.171-.899-.026-2.364-.076-3.223-.077-2.676-.002-4.871-.047-7.556-.077-1.699-.019-4.021.078-5.015-.21-.608-.18 1.142-.058.997-.207-1.703-.072-2.369-.293-4.275-.251.718.027 1.434.056 2.142.084-.17.11-.35.222-.515.333-.75.004-1.138-.056-1.89-.087-.469-.02-1.02.026-1.58-.01-.658-.04-.963-.19-1.884-.155-.01.054-.005.11-.01.166-.627-.028-1.241-.057-1.885-.083-.26.047-.907.091-.493.163.984.166 2.43-.143 2.388.171l-6.138-.006c-.958-.112-.889-.243-.838-.414-.184.053-.34.114-.547.163-1.469.118-2.904-.178-3.92-.22-1.014-.041-.989.128-1.957.052.203-.104.354-.221.534-.33l-1.545.207c.161.07.334.14.487.21-.368.005-.943-.006-1.266-.01-1.28-.016-1.675-.064-2.86-.15-.349-.026-1.35-.035-1.751-.091.095.205-.448.326-1.608.416-.003-.11-.009-.222-.011-.334l-3.201.167 1.06-.168c-.271-.11-.54-.222-.808-.332l.274.25h-4.28c0 .084.006.168.008.25h-1.606c.494-.124.065-.199-.01-.332l1.343.075 1.32-.201-1.07-.208 2.141.083-1.063-.085c-.008-.083-.015-.166-.02-.249-1.473.003-2.678.19-4.012.002l.287.5c-1.324.027-1.787-.076-2.688-.208-.642-.094-1.134-.165-1.579.005-.484.185.66.024 1.053.078-.672.085-.372.186-.81.297-.483.122-1.053.115.03.246l2.924-.334c.053.167.269.262-1.038.253l-.015.248-2.656-.001c0-.055-.032-.111-.014-.164-1.164-.035-.915.111-2.01.155-.567.023-1.673.103-2.603.07-.93-.034-2.106-.247-3.409-.136.325-.09.704-.168 1.049-.253l-1.908.166-1.83-.08.54.167c-.71 0-1.427 0-2.14.002.173-.112.349-.223.523-.334l-.814.08c0-.054.005-.108.005-.162h-2.39l-.043-.16-1.319-.08c-1.263.202-2.922.17-4.536.253l.829.25c.435-.03.874-.058 1.312-.087l.01.25-1.332.08-1.07-.153-2.946.166c.088-.055.174-.111.261-.167l-.798.002c-.09.056-.182.112-.27.169-2.462.026-4.74-.138-6.942.093-1.723-.223-3.304-.112-5.486-.135-.528-.005-1.116.086-1.708-.002-.034.056-.022.111-.039.167-.789-.05-1.604-.098-2.409-.15-1.54.26-2.123.144-3.793.027-.974-.068-1.619-.128-2.688-.157-.49-.013.005.263-1.25.16-.032-.104-.013-.22-.026-.33-.85.086-1.258.07-1.621-.073 1.084.002 1.755.026 1.61-.177l1.04-.01c.153-.157.686-.219-.257-.329-1.508.065-3.052.13-4.535.196-.238-.2 1.76-.4 2.1-.597-1.375-.004-1.702-.122-1.616-.323-.6-.016-.929.028-1.312.092-.776.13-.624.273-1.89.265.101-.084.178-.165.287-.25-.701-.097.023-.204.106-.288.082-.084-.568-.077-.7-.123-.385-.135-.232-.183-1.298-.162l-.032-.414.794.075C.696 3.036.6 2.954.514 2.872a76.675 76.675 0 0 1 4.007-.117c.395-.001.815.05 1.036.055 1.947.038 2.476-.02 4.485-.08.401-.011 1.64.105 2.539.055.31-.018.489-.136 1.186-.158.83-.025 2.544.072 3.616.064.852-.006 1.776-.081 2.645-.095.007.054.008.111.01.166.885-.082 1.797-.163 2.67-.245l3.472.06c.01.056.023.109.03.165.96-.075 1.448.001 2.399-.005.95-.006 1.628-.134 2.666-.091.37.08.723.165 1.084.247-.085-.11-.203-.223-.266-.331.729-.057 1.77.056 2.337.054 1.737-.008 3.032-.146 4.598-.025.623.048 1.38.257 1.846.275 1.91.074 2.059-.153 3.235-.232.682-.046.641.054 1.067.05 2.232-.02 4.245-.204 6.418-.23 2.166-.027 4.371.217 6.385.238 1.606.017 2.09-.149 3.533.003-.01-.058.004-.111.016-.167.737 0 1.694-.008 2.379-.004.474.003.757.066 1.067.067.93 0 1.749-.174 2.622-.137 1.05.046 1.193.21 2.47.157-.005.041.008.077.01.117l.818-.032.528.163.797-.25-1.607-.083 2.12-.045 1.605.049c.014.054.03.108.045.161h1.568c-.088-.202.524-.174 1.62-.165l1.077.167-.544-.25 1.6-.167 1.878.335c-.091-.083-.186-.168-.273-.25.596-.03.852.056 1.32.061.468.006.592-.062 1.096-.064.75-.002 1.614.004 2.385.005.01.055.013.11.017.166h.536c0-.055.016-.11.009-.165a58.267 58.267 0 0 1 3.956-.075c4.204.056 8.213-.085 12.308.16a48.275 48.275 0 0 1 4.596-.163c-.357-.083-.715-.167-1.078-.25l2.12.084c.265.083.549.166.825.25l.794-.501c1.607.128.533.28.558.5 1.273 0 2.756 0 3.989-.005.494-.001.794.072 1.051.067 1.217-.025 2.097-.212 3.259-.077.516-.081 1.054-.16 1.559-.241.545.063.804.147 1.39.208.691.072 1.224.022 1.075.2.703.028 1.399.057 2.126.084l.012-.248 1.033-.007c.004-.083.006-.165.011-.248.538.027 1.028.053 1.588.08.129-.195 1.586-.407 1.622-.09l-1.074.046 1.064.04c.008.083.015.165.02.248 1.03.054 2.196-.195 2.126-.341l1.333.157c1.504-.132 2.062-.23 1.866-.506.536.026 1.008.052 1.561.078.021.052.044.104.067.155.641.054 1.254.107 1.838.16.054-.02.109-.038.163-.057.212-.066.424-.133.632-.2l-.633.002h-.389a79.843 79.843 0 0 0-.856-.234c-1.219.008-2.26.013-3.478.019.523.24.489.33-.771.503l-.282-.498c-.608.113-1.235.227-1.879.34.091-.055.185-.11.276-.166-1.445-.004-2.38-.121-3.756.01.105-.253-.02-.414-1.338-.578-.619.057-1.261.113-1.89.17l1.631.08c.005.194.017.389.02.583-1.313-.045-2.682-.039-3.951-.084-.45-.016-.551-.093-.863-.116-.889-.069-1.191-.03-1.101-.207-.515.03-1.044.058-1.576.086.052.184.152.335-1.082.417l-.028-.248-1.001-.008c-.014-.053-.028-.107-.045-.16l-1.019-.006-.064-.16-1.586.001a3.12 3.12 0 0 1-.036.162c-.636.027-1.218.054-1.835.081-.943-.107-1.111-.34-2.427-.327l.255-.333-1.86.083c-.283.272 1.73.423 1.616.667-1.265-.111-2.363.018-3.739 0l1.073-.125-1.406-.207-1.281.04c.92-.187 1.514-.357.246-.542l-.251.416h-2.134l-.53.333c-1.715-.15-.747-.193-.08-.375-1.46-.397.682-.168 1.412-.042.378.004.402-.086.249-.123-.719-.174-2.079-.129-3.21-.128.176.084.36.167.538.25l-1.59.125v.083l1.071.21-3.212-.002c-.363-.169 1.191-.34 2.137-.333-.049-.215-.872-.268-2.157-.251.002.083.005.167.01.25-1.456-.063-2.794.01-4.275-.002-.624.194-1.244.389-1.86.583l-1.874-.252c.492-.02 1.315.12 1.59.038.275-.081.514-.19.536-.287a21.443 21.443 0 0 0-3.468.332c-.62-.113-1.325-.174-1.818-.312-.318-.09-.15-.146-1.134-.108.183.08.364.166.544.25l-1.888.08c.096.057.197.112.292.168l-1.613-.002c.171-.139.349-.278.523-.416-.714.11-1.412.22-2.124.331l.257-.333-.531.063-.812-.231 2.136.002-2.413-.251c-.701.127-1.939.133-1.905.324l-1.004.007-.014.248-1.069-.043.521-.374-2.431.41c-.813-.003-1.82.027-2.57-.006-.479-.021-.762-.13-1.097-.138-.973-.027-.822-.041-1.794-.098-.793-.047-3.416-.05-3.87-.218.326-.11.694-.22 1.043-.33-.603-.082-.947-.181-1.632-.256-.684-.074-1.243-.025-1.07-.205-.361-.006-.704-.001-1.06-.003-.01-.04-.02-.078.02-.12.886-.164 1.457-.235 2.959-.21 1.017.016 1.31.09 2.13-.082ZM22 20.977l-.02.166 1.34-.048-.55-.206 2.135-.01.56.33-2.14.01c.003.084.002.168.003.25l-2.401.015-.285-.167-.516.12c-.511.02-1.092.04-1.614.058.508-.128 1.07-.256 1.571-.384-.336-.067-.707-.135-1.059-.202 1.125-.008 1.572-.089 1.597-.259.456.109.94.218 1.38.327Zm3.472.44-.271.043-.811-.12.266-.043.816.12Zm3.215-.016c-.003-.053.504-.056.507-.003.002.053-.506.055-.507.003Zm18.724-.073c-.002-.052.509-.053.51-.001.003.052-.51.054-.51.001Zm4.797.029-1.065.002v-.083l1.065-.003v.084Zm9.641-.058c-.002-.052.507-.053.508 0 .002.052-.508.052-.508 0Zm-48.142.1c-.002-.053.498-.055.5-.003.002.053-.501.055-.5.002Zm23.007-.117c-.004-.053.512-.055.51-.003.006.053-.51.055-.51.003Zm-14.167-8.416 1.082-.085c-.086.113.314.132.547.207l-1.603.127c-.009-.083-.02-.166-.026-.25ZM8.15 14.389c-.02-.052-.037-.105-.056-.157-.39.037-.69.065-1.089.107a3.603 3.603 0 0 1-.021-.165c.412-.045.72-.076 1.127-.115.185.093.373.187.57.28l-.528.05H8.15Zm70.265 6.83c.8-.133 1.714-.202 1.605.046l-.8-.08-.805.035Zm-50.284-.191c.102.082-.331.274-1.064.255-.002-.083-.007-.167-.007-.25l1.071-.005Zm1.892-8.673 1.08-.086c.005.027.007.055.009.083l-1.083.085-.006-.082Zm28.072 8.67c.467-.086 1.805.099 1.592.138-.474.085-1.803-.1-1.592-.138Zm-37.652-7.741a3.711 3.711 0 0 1-.018-.167l1.08-.085c-.246.075-.533.154-.794.23l-.268.021Zm-1.617-.04.545-.043c.009.083.02.166.027.25l-.544.042c-.009-.083-.016-.166-.028-.249Zm58.52 7.933c-.357 0-.713 0-1.068-.002-.003-.083-.007-.166-.006-.25l1.066.002c.002.083.007.166.007.25Zm5.317-.258c.317-.046-.19-.23 1.09-.143-.028.202-1.812.444-3.202.406 0-.11-.006-.225-.005-.332.707.002 1.38.176 2.117.07Zm-70.583.36c-.615.02-1.047-.014-1.617-.038-.522-.023-1.132-.02-1.092-.126.741.002 1.46 0 2.15-.001.178-.056.364-.112.55-.168.003.111.009.223.01.334Zm24.397-9.023c.388-.143.615-.253.503-.375l1.588-.126c.011.111.025.221.036.332l-2.127.17Zm-8.571.349.504.036.58.045-.573.046-.493.038c-.007-.055-.014-.11-.018-.165Zm-9.619.808c.004.052-.494.091-.497.04-.007-.053.492-.093.497-.04Zm41.94 7.596c-.06-.28 1.976-.155 3.203-.17-.449.084-.906.167-1.361.25l-1.843-.08Zm-16.596-.295c-.38.114-.636.205-.522.335l-.529.002a15.47 15.47 0 0 1-.01-.333l1.061-.004ZM32.7 12.352c.006.052-.499.092-.505.04-.006-.053.498-.092.505-.04Zm-6.922.551c.006.053-.512.094-.515.041-.007-.052.51-.093.515-.04Zm34.679-2.747 2.684-.048-2.658.297c-.009-.083-.02-.165-.026-.249Zm31.56 9.81c-.499.008-.06.125-.57.161-.31.022-.697.071-1.095.073-1.082.005-1.441-.149-2.336.043.35.014.707.03 1.062.046.005.166.005.331.01.496l-1.06.04c.65.124.394.24 1.609.214-.016-.064-.6-.103-.287-.165.76-.15 1.033-.08 1.512-.295.442-.2 2.769-.386 1.154-.614Zm-40.094-9.113c.597-.013.938.023 1.606-.044l.041.33-1.064.085-.583-.371Zm-2.663.214c.18-.015.36-.03.534-.043.048.114.475.177.562.287l-.014.001v.002c-.35.024-.688.058-1.046.084-.014-.11-.025-.22-.036-.331Zm5.627 9.826c-.003-.053.503-.053.504-.001.002.053-.504.053-.504 0Zm4.71-.215c.554.073-.644.28-.894.247-.551-.072.642-.28.895-.247Zm27.904.271c.04-.167-.544-.256-1.608-.255l1.608.255Zm-52.64-8.648 1.068-.085a.894.894 0 0 1 .01.083l-1.07.084a.918.918 0 0 1-.009-.082Zm-6.94.595c.005.052-.508.093-.511.04-.007-.052.504-.092.51-.04Zm-4.786.341 2.131-.168.006.083-2.13.169-.007-.083Zm50.137-3.95c.918.017 1.388-.052 2.335-.185.828.002 1.66.002 2.49.003-1.375.32-2.705.202-4.254.47-.192-.095-.379-.192-.57-.288Zm-3.201.26c.356-.03.714-.058 1.07-.087.004.028.006.056.008.084l-1.07.086c-.005-.028-.006-.056-.008-.083Zm-59.198 4.932c1.077-.088 1.644-.221 1.588-.385-1.091.087-1.643.222-1.588.385Zm-1.515 5.885c.685.005.836.131 1.08.21.417.134.732.223.566.374H11c-1.415.03-.883-.061-1.087-.207-.203-.145-.717-.229-.556-.377Zm74.08-11.576 2.107-.423-1.03.42-1.076.003Zm-51.246 3.854c.006.053-.496.093-.5.04-.006-.052.494-.091.5-.04Zm23.749 8.124-1.072.002c-.002-.056-.005-.111-.005-.167l1.072-.002c.002.056.005.111.005.167ZM67.433 9.97l1.049-.21c.009.083.02.165.026.248l-.265.022-.81-.06Zm-52.3 3.99c.18-.016.365-.03.55-.045.006.055.013.11.017.166l-.55.044a3.713 3.713 0 0 1-.018-.166Zm85.747 6.837c0-.053.504-.05.505.002.002.053-.506.05-.505-.002ZM86.089 8.404l1.628.118-1.602.13c-.01-.082-.015-.165-.026-.248Zm-48.355 12.29c0-.053-.502-.05-.5.002 0 .052.501.05.5-.002Zm-8.201-7.757c.005.052-.494.09-.5.039-.006-.052.495-.092.5-.04Zm-3.72.298c.005.052-.51.093-.515.04-.007-.052.51-.093.515-.04Zm-6.39.464.521-.042c.007.056.014.111.018.166l-.521.042c-.007-.056-.014-.11-.018-.166Zm43.725-3.383c.005.052-.502.093-.506.04-.006-.052.5-.092.506-.04Zm-2.134.172c.006.052-.498.092-.502.04-.007-.052.497-.092.502-.04ZM12.148 20.53c.231-.033 1.448.168.896.243-.252.034-1.452-.168-.896-.243Zm33.968-8.71a3.69 3.69 0 0 0-.018-.166l-1.075.086c.005.056.011.11.018.166l1.075-.086Zm-5.342.302c.004.053.509.012.502-.04-.006-.052-.509-.012-.502.04Zm24.783 8.256c.456-.037 1.15.023 1.604.041-.003.056.005.112.004.167H66.1l-.543-.208Zm72.849-16.086.269-.065.818.055-.264.065-.823-.055Zm-105.61 8.845-.555-.165.789-.188c.276.048.556.095.835.142l-1.066.21h-.003Zm31.45-2.785 1.076.039-.785.19-.265.02c-.01-.083-.02-.165-.027-.249ZM129.88 5.1c.004.052-.495.094-.5.041-.004-.052.495-.094.5-.041ZM77.108 9.852c.528-.105.398-.134-.021-.162-.802-.053-1.733.043-1.637-.162l2.67-.132c.016.138.035.275.051.412l-1.063.044Zm16.25 10.117 1.098.419 3.191.142c-1.43-.297-1.573-.58-4.289-.561Zm-74.99-5.935 1.082-.086.002-.001.006.083-1.082.087c-.005-.028-.006-.056-.009-.083Zm46.46-3.225 1.596-.13c.012-.062-.476-.026-.428-.094.048-.068.595-.164.402-.236l2.374-.28 1.378.183c.126.153-.305.13-1.053.21l-.275-.06-1.857.067c-.181.07-.35.138-.54.21h.004c-.06.074-.494.138-.516.21l-.534.043-.55-.123ZM24.36 20.38v.083l1.078-.005v-.084l-1.078.006Zm26.585-8.614a3.836 3.836 0 0 0-.017-.165c-.531.026-1.73.194-1.578.293l1.595-.128Zm-7.007 2.402c.368-.084.375-.236.83-.305.454-.069 1.23.075.995-.128-.233-.204-.772-.056-1.556-.106-.36-.022.169-.24-.606-.225.53-.09 1.038-.17 1.568-.256.149-.165.296-.33.448-.494-1.165-.089-1.927-.235-3.73-.076.095-.053.637-.175.519-.21l-2.121.255a3.711 3.711 0 0 0-.018-.167l-2.671.214c.002.028.003.056.008.083l2.681-.13c.007.055.014.11.018.165.684-.038.981-.13 1.585-.21-.113.155.092.231.844.266l1.323-.147-2.655.338c.372.082.73.165 1.112.245-.923.065-.541-.148-1.435-.13-.474.008-1.48.112-2.061.16-.573.047-.87.046-.802.148 1.713-.15.842.22 1.659.327l-1.605.17.573.203 1.87-.07c.681-.151 1.337-.277 1.293-.432l1.083-.045c-.113.166-1.123.299-1.038.46 1.23-.125 1.15.047 1.889.097Zm12.246 5.846c-.55.076-.896.131-.8.251l1.611-.002c.092-.12-.253-.174-.81-.249Zm-7.354-7.911c-.006-.083-.017-.166-.026-.249l-1.07.086c.007.083.019.165.028.248l1.068-.085Zm-22.872 7.935c.44.08.891.16 1.345.24.46-.028.882-.058 1.33-.087-.448-.08-.877-.16-1.34-.24l-1.335.087Zm14.716.185-.269-.083.533-.002-.264.085Zm16.848-.212c0 .056.003.111.005.167 1.024.013 1.745-.01 2.139-.17l-2.144.003Zm17.48-9.695c.003-.135-.196-.278-.59-.368l-1.595.086 2.184.282Zm61.01-5.265-.053-.003-.748-.053-.004-.042a1369.762 1369.762 0 0 0 1.601-.137l-.794.235h-.002ZM38.159 12.96a3.69 3.69 0 0 0-.018-.165l-1.057.085.81.102.265-.022Zm5.99 7.169 1.606-.006v-.041c-.268-.041-.527-.082-.802-.123l-.804.17ZM151.186 3.6l1.057-.1c.005.027.006.055.009.083l-1.057.1c-.005-.027-.007-.055-.009-.083Zm-90.62 7.553c-.004-.027-.006-.056-.008-.083l2.13-.173c.005.056.011.112.018.167l-2.14.09ZM146.92 4.04l.808-.116.03.003-.015.002-.819.11-.004.001Zm-43.674 3.662c.004.052.506.01.501-.042-.005-.052-.508-.01-.501.042ZM85.338 19.983l1.072.128-.006-.25h-.265l-.801.122Zm-69.017.15c-.004-.052-.522-.049-.518.004 0 .052.519.049.517-.003Zm33.591-8.158c.006.052.505.012.499-.04-.004-.053-.505-.012-.499.04Zm-4.272.469c-.004-.055-.01-.11-.018-.166-.18.014-.358.03-.537.043.005.056.011.111.018.166l.537-.043Zm-30.398 6.735c-.362.13-.72.251-1.069.38.313.067.835.183 1.057.243.386.101.088.12.289.212.257-.114.531-.226.806-.339l1.681-.01.443-.002c.127.109-.152.136-.442.158-.321.023-.653.042-.57.142.025.032.283.042.571.053.29.011.616.023.713.062.286-.167.525-.338.81-.503.922-.049 1.219.112 1.88.143.987.048 1.554-.028 2.398-.084-.021.19.71.317.012.499l1.61-.008c-.697-.271-1.138-.533-1.108-.828-1.34.013-1.717.146-1.593.342-1.365-.076-3.218-.364-4.725-.31l-.094.003c-.082.084-.186.17-.255.251-1.002-.074-.468-.205-.91-.32-.188-.055-1.233-.013-1.504-.084ZM126.153 5.863c.006.052-.499.095-.506.043-.007-.052.502-.096.506-.043Zm36.133-3.338c.332-.043.693-.092 1.007-.14-.225.09-.473.181-.726.27l-.002.002-.253.033c-.007-.055-.019-.11-.026-.165ZM23.248 14.315c.029-.17-.589-.207-1.623-.122-.022.17.537.213 1.623.123Zm-13.896.926c0 .052.506.007.505-.045-.009-.053-.516-.007-.505.045Zm46.953-3.586c-.463.123-1.801.045-1.598-.01.456-.123 1.804-.045 1.598.01Zm103.771-5.557c-.004-.052.499-.052.502 0-.003.053-.503.053-.502 0Zm-34.429-.067c.682-.043 1.003-.134 1.585-.218.004.055.014.11.018.165l-1.594.136-.009-.083Zm2.872.235-.546.001c-.001-.055-.006-.111-.006-.167l.547-.001c0 .055.005.112.005.167Zm-43.735 13.09c-1.341-.024-1.081.08-1.065.249.178.002.357-.001.535 0 .18.113.362.224.543.336-.005-.195-.007-.39-.013-.584Zm-1.603.539c-.001-.052-.504-.054-.502-.001 0 .052.504.053.502 0Zm70.154-16.247c.211-.087.278-.127.538-.053l-.538.053ZM12.024 19.988c-.003-.053-.52-.052-.515 0-.002.053.514.052.515 0ZM54.162 11.8c.006.052-.498.092-.502.04-.005-.052.498-.092.502-.04Zm50.948 8.187c.001-.052-.507-.055-.505-.003 0 .053.508.056.505.003Zm-67.981-6.693c-.005-.056-.011-.111-.018-.166-.337.082-.709.168-1.057.252l1.075-.086Zm4.321 6.552c0-.053-.51-.05-.506.002.001.052.508.05.506-.002Zm1.614-.256-1.61-.12c.355.027.718.054 1.069.082.01.083.016.165.026.248l1.322.073 2.4-.21-1.062-.075a.58.58 0 0 0 .005.066c-.357.02-.72.038-1.076.057l-1.08-.33c.003.07.006.14.006.209Zm7.486.228c0-.052-.512-.051-.51.002.005.052.513.05.51-.002Zm20.7-9.363c.355-.024.71-.059 1.065-.086l-1.047.252c-.004-.055-.014-.11-.018-.166Zm43.217-3.439c.006.052.506.01.499-.042-.005-.052-.505-.01-.499.042ZM12.565 19.777c0 .056.003.111.005.167l1.078-.005c0-.055-.002-.11-.005-.166l-1.078.004Zm132-13.746c-.001-.052.516-.056.516-.004.004.053-.514.057-.516.004Zm5.342 0-1.605.013c-.002-.028-.002-.056-.002-.084l1.605-.013c.002.028.002.056.002.083ZM47.328 13.143c1.688-.114 2.165-.396 3.703-.549.018.053.022.107.053.16 1.021-.055 2.022-.006 2.59-.251.503-.214-1.019-.013-1.518-.006l-.075-.002c-.12-.014.113-.08-.044-.099-.629-.08-1.215-.11-1.059-.3-1.612.124-2.68.433-4.25.426-.159.18-.312.36-.476.54l1.582-.21-.506.291Zm49.013-4.496c-.105.27 2.082.048 2.668-.18-.508.016-.349-.168-.81-.132-1.593.122-.009.341-1.858.312Zm41.032-3.504c.008.052-.495.096-.503.044-.006-.052.5-.097.503-.044Zm18.413.845c-.001-.056-.007-.111-.007-.167l1.066-.006c-.335.057-.727.115-1.059.173Zm-37.076.754c.008.052-.508.096-.508.043-.01-.052.502-.095.508-.043Zm22.369-.72c-.462-.024-.889-.049-1.335-.073h-.004c0-.055-.005-.11-.006-.166l2.141-.019c-.264.086-.528.172-.796.257Zm-36.734 1.965 1.051-.173c-.719.06-1.276.201-1.858.158-.879.16-.527.156-.339.24.292.132-.497.267-.396.403.505-.21 1.031-.418 1.542-.628ZM81.581 19.683l2.142.088c.003-.055-.014-.111-.004-.166-.257-.004-.51.001-.767 0l-.572-.17-.799.248Zm65.126-13.752c-.001-.052.508-.057.51-.004.004.052-.508.056-.51.004Zm7.468-.266c.111.083-.362.276-1.058.258-.006-.083-.008-.167-.011-.25l1.069-.008Zm-25.651.309c-.002-.053.51-.055.51-.002.003.053-.509.054-.51.002Zm27.051-1.708c-.361-.048-.748-.093-1.095-.143.701-.069 1.394-.138 2.125-.212-.008-.083-.02-.165-.031-.247-1.246.07-2.501.138-3.743.2.116.088-.344.18-.22.273h-.003c.198.143.934.234.84.42.733-.097 1.397-.191 2.127-.291Zm-43.223 3.178-1.612.01a.776.776 0 0 0 .01.082h-.003l1.341-.028.264-.064Zm31.59-1.502c1.745-.213 1.709-.519 3.685-.67a69.69 69.69 0 0 1-1.108-.234c1.148-.042 2.211-.186 3.409-.323.25-.03.319-.098.658-.127 1.031-.09 1.885.01 1.759-.26-.702.068-1.423.135-2.125.201l-.052-.413c-.652.12-.895.15-1.572.147l-.043.165-.998.1c-.005.082-.007.165-.013.247l-1.004.1c-.007.055-.01.11-.019.163l-1.068.101.511.076c-.248.064-.5.129-.757.193l-1.328.037c1.142.12 1.14.18.06.497h.005Zm-70.1 13.483c-.22-.021-.74-.01-.774-.003-.4.092.353.197.759.25.446-.056.895-.11 1.334-.166h-.004c-.632.025-.9-.041-1.315-.081Zm12.02.101c0 .056.002.112.004.168l1.068.002c0-.055-.002-.11-.004-.166l-1.068-.004Zm-36.996-7.09 1.602-.13c.005.028.006.056.008.084l-1.6.128a.968.968 0 0 1-.01-.083Zm85.386-6.476c-.125-.206.496-.41 1.737-.561.108-.014.22-.026.337-.039l.037.332-.346.043c-.577.074-1.165.15-1.765.225ZM99.25 19.704c-.002-.053.503-.05.507.002.002.053-.507.05-.507-.002Zm59.96-16.317c-.003-.027-.005-.055-.01-.082-.503.096-1.053.196-1.563.29l.269.015c.409-.07.89-.15 1.304-.223Zm-30.166 2.46a7.954 7.954 0 0 0-1.357.078c-.801-.078-1.581-.156-2.401-.235l3.749-.01c.003.056.009.111.009.167Zm16.056-.07c-.002-.052.506-.056.507-.004.004.053-.506.057-.507.005ZM91.2 19.21c-.096.222-.042.398 1.618.423l1.06-.33-2.678-.093Zm2.671.386c0-.053-.507-.055-.504-.002 0 .052.506.054.504.002Zm1.956-10.738c-.002-.027-.004-.055-.008-.082l-1.068.088c.002.027.004.055.008.082l1.068-.088Zm56.211-3.094-1.077.008a3.085 3.085 0 0 1-.006-.167l.268-.002c.279.054.55.107.815.161ZM37.68 13.5c-.002-.027-.003-.055-.008-.083l-2.137.171.006.084 2.14-.172Zm-3.185.339c-.004-.056-.013-.11-.018-.166l-.525.041c.004.056.011.111.018.167l.525-.042Zm-22.407 1.876c-.227-.275-1.678-.123-3.24.032.007.083.02.166.03.248.567-.037 1.097-.07 1.633-.101.513-.06 1.067-.121 1.577-.179Zm94.414-7.657a.767.767 0 0 0-.01-.083l-1.069.09a.767.767 0 0 0 .01.082l1.069-.09ZM75.696 19.34l1.072.168c0-.055-.002-.11-.005-.166l-1.068-.002Zm-18.278-7.428 1.065-.086c.005.056.014.11.018.166l-1.065.087a3.712 3.712 0 0 1-.018-.167ZM9.703 5.728c-.002-.055-.008-.11-.009-.166l1.068-.006-1.059.172Zm105.374-1.192c.893.195.078.227-.445.38-.265.077.267.144-.143.196-.412.052-1.274.022-1.537.134.354.095.743.194 1.106.29l.787-.077c.985.11.353.171.278.327.89-.085 1.737-.17 2.658-.254 0-.082-.005-.165-.005-.247-.358-.028-.739-.056-1.085-.084l1.619-.126c-.905-.069-1.807-.138-2.686-.207l2.672-.127-1.625-.04c.172-.056.352-.112.534-.167-.728 0-1.406 0-2.128.002Zm-33.64 5.588c.077-.075-.183-.068-.573-.041l.573.041Zm-44.806 9.031.77.078.31.251.546-.25 1.056-.006c0-.056-.004-.111-.01-.167l-2.672.094Zm10.694.255c-.001-.053-.51-.051-.508.002 0 .052.51.05.508-.002ZM19.59 15.274c-.01-.11-.024-.22-.035-.331l-1.08.086c.189.096.383.192.576.288l.54-.043Zm40.57 3.065c.026.185.808.255.438.466-.24.14-2.252.437-2.015.62 1.33-.18 2.095-.119 3.733-.085.056-.126-.587-.068-1.09-.126-.74-.086-.516-.242-.529-.373.358.081.717.166 1.077.248l.514-.454c-.712-.099-1.44-.194-2.128-.296ZM98.525 5.702H96.92a.932.932 0 0 1-.003-.083h1.608c.002.028.002.056.001.083Zm46.915-.65-.029-.248a6.838 6.838 0 0 0-1.575.268c.505.04.828.066 1.604-.02Zm.531-.257c.008.052.508.007.501-.045-.004-.053-.507-.007-.501.045Zm-42.117.867c-.002-.052-.504-.052-.502 0 0 .053.503.053.502 0ZM87.46 19.322l.805.128.268-.04-.808-.128-.265.04Zm20.145-14.035c.639.167-.212.327 1.072.417l.02-.296-1.092-.12Zm3.739-.168-1.583.127.545.374 2.125.084-1.603-.292c-.126-.197.813-.091 1.585-.126-.066-.225.859-.362 1.6-.541h-.004l-2.674-.125.009.499Zm-70.45 8.208c.63-.054.895.07 1.03.133s.06.126.078.196l-1.595.128c.162-.152.32-.305.486-.457Zm35.272-2.189c.147-.088-.279-.337-.6-.346-.843-.024-1.185.124-1.068-.101-1.37.042-2.623.545-2.607.715l.782-.23c1.162-.014 2.333-.02 3.493-.038Zm87.762-8.139c.016.053.434-.032.391-.08.014-.053-.394.03-.391.08Zm-86.74 7.641c-.005-.055-.014-.11-.019-.166l-.534.044c.005.055.014.11.018.166l.534-.044Zm-47.465 3.914-.568-.204-.61.024-1.527.06c-.035.23.497.275 1.548.211.33-.02.716-.05 1.157-.091Zm-3.651.875c-.043-.074.25-.194.248-.266-.003-.088.224-.326.16-.367h-.001c-.219-.146-.72-.111-.508-.28-.55.075-1.082.142-1.606.213l.553.243c-.53.127-1.008.25-1.555.38l1.061-.09c.54.056 1.083.114 1.648.167Zm61.203-9.981c0 .055.005.111.004.167h.538l-.004-.167h-.538Zm7.497.17h-1.066c-.002-.028-.001-.056-.001-.084h1.064a.96.96 0 0 1 .003.084ZM13.682 15.5l-1.056.087c.277.033.53.067.805.1l.267-.021a3.71 3.71 0 0 0-.017-.166Zm55.051 3.67c0 .055.003.111.005.167h.539c0-.056-.003-.112-.005-.167h-.539Zm8.027.004c.084-.169-.253-.205-1.376-.166-1.004.035-1.836.154-1.826.33 1.294.017 1.748.02 1.594-.205l1.608.041ZM95.848 5.577c-.002-.052.509-.053.512 0 .002.052-.51.052-.511 0Zm41.757-.024c-.085.022-.021.074-.26.073-.24-.001-.244-.04-.276-.07.181 0 .36-.005.536-.003Zm-37.463 3.535c.31-.284-1.801-.052-2.567-.043-.761.008-.626-.057-1.212-.064.408.106.75.217 1.136.324l2.643-.217ZM25.45 4.748c-1.045.13-2.238.082-3.461.093.937.158 1.598.407 2.66.531.496.059.514-.01.84-.038.079.052.174.109.257.162l1.072-.13c-.187-.165-.38-.33-.569-.495l-.799-.123Zm106.149 1.4c.005.052.512.008.505-.044-.004-.052-.512-.008-.505.044Zm-49.032 4.47c.087-.303-1.341-.247-2.72-.28-.05.294 1.165.3 2.72.28ZM39.132 5.426c-.002-.053.506-.053.507 0 .002.052-.506.053-.507 0ZM22.25 14.938c.005.052.508.012.503-.04-.005-.052-.51-.012-.503.04Zm90.26-6.127c.034-.172.22-.286-1.099-.16.426-.143.87-.287 1.302-.43l.792.005c.178-.268 1.529-.437 2.629-.681-1.243-.096-2.247.091-3.737.271l.565.204c-1.081.072-1.664.18-2.38.356l-1.345.04.555.12-2.124.302-.003.001c.917.085 1.958-.037 3.202-.139-.091.195.728.116 1.643.11ZM99.064 5.495c-.003-.053.5-.053.501 0 .003.052-.5.052-.501 0Zm-81.35-.39c0 .056.004.112.006.168l1.592-.09c-.037.058.06.123.25.167.487.111.546.026 1.09.022.545-.003.738.084 1.36.051a8.422 8.422 0 0 1-.013-.25c-1.295.126-1.967.071-2.164-.158l-2.122.09Zm-.538.295c0-.052-.513-.05-.511.002 0 .053.513.05.51-.002Zm4.993 13.867c0-.052-.5-.05-.497.003 0 .052.498.05.497-.003ZM164.232 5.118c.082.03.162.084.231.138.031.027.065.055.074.077-.002.011.042.077-.22-.042-.05-.028-.122-.068-.229-.17a1.257 1.257 0 0 1-.182-1.56c.11-.164.141-.182.194-.237.096-.09.177-.139.214-.16.22-.113.091-.049.061-.051a11.489 11.489 0 0 1-.589.096 7.8 7.8 0 0 1-.851.07c.1.071.215.138.319.207.258-.027.56-.064.808-.1.136-.02.26-.04.357-.059.049-.01.095-.022.08-.015l-.045.023c-.021.013-.073.031-.189.133a.993.993 0 0 0-.249.347c-.11.225-.114.596-.003.827.105.236.226.328.274.372.06.05.103.077.135.095.159.082.159.06.155.062a.55.55 0 0 0-.077-.017 4.224 4.224 0 0 0-.268-.036Zm-116.9 14v.084l1.072-.003v-.084l-1.073.003Zm7.277-14.502c.039.112.106.221-.526.292-.501.056-.321-.024-.832-.018-.352.004-.8.086-1.296.06.256.14.541.278.81.417l-.278-.333 3.746.04-1.613-.208h-.005 2.14c-.715-.084-1.433-.168-2.146-.25Zm.195 7.884c.004.053.51.012.505-.04-.004-.052-.511-.012-.505.04Zm-35-8.567c-1.233.026-.752.225-1.14.319-.394.093-1.245.015-1.504.15.342.09.712.19 1.065.285-.876-.052-1.792-.104-2.686-.156l.548.248-1.608.008.025.583 1.606-.008c-.005-.082-.01-.164-.017-.247l-1.067.001-.002.001a2.07 2.07 0 0 0-.003-.124l1.576-.138.043-.161 1.31.078c.908-.122 1.044-.228.32-.378.89-.15 1.666-.246 1.533-.461Zm86.187 1.48c-.002-.053-.512-.053-.51 0 0 .052.511.052.51 0Zm33.069.252-.277-.018c-.274.066-.52.13-.779.194l.265.019c.249-.064.527-.13.791-.195ZM21.637 18.855c-1.228-.105-2.484-.157-3.634-.09-.414.024-.809.061-1.18.115.353.124.718.246 1.088.37l.093-.03.43-.14 2.68.152c-.01-.113.01-.221-.023-.335.358.03.14 0 .628.045.482.044.405-.043-.082-.087Zm54.83-1.426c-.864-.059-.894.07-1.082.158-.236.11-.263.21-.802.293l1.615.21c-1.517.014-2.466-.1-2.687-.336-.177.055-.356.11-.532.166l-2.133-.084c-.005.055-.007.11-.015.166-.88-.03-1.756-.06-2.643-.088-.015-.054-.03-.108-.046-.16l-1.584-.002c-.183.138-.365.276-.552.413l-1.005.01c.025.034.043.067.013.1.346-.02.675-.044 1.032-.063.292-.076.977.046 1.033.077.19.11-.04.192.034.295l-1.06.044 1.596.165c-.352.094-1.23.117-1.014.255.127.08.857.148 1.307.034.573-.146.915-.315.777-.496 1.212-.04 2.066.04 3.209.084h.006c.075.051.286.085.489.125l-1.018.208c2.053-.009 2.984-.192 3.197-.498.498.024.77.092 1.328.084l1.863-.46-1.074-.413c.353-.029.716-.054 1.062-.084-.425-.047-.893-.174-1.314-.203Zm17.804-8.024a.956.956 0 0 0-.01-.083l-2.122.259c.097.047.189.096.286.144l1.846-.32Zm25.64-4.123c.356.055.694.11 1.068.165-.003-.055-.003-.11-.005-.166h-1.063ZM49.468 19.029v.083l1.076-.003v-.083l-1.076.003Zm83.298-13.78c0 .055.005.111.005.167.175 0 .347-.002.519-.003a3.084 3.084 0 0 1-.005-.167l-.519.003Zm24.401-1.186c-.006.054.523 0 .511-.052-.003-.053-.528.001-.511.052Zm-1.065.108c.008.052.524 0 .514-.052-.003-.052-.52 0-.514.052ZM13.738 15.996c-.007-.083-.02-.165-.028-.248l-.534.043.028.25.534-.045Zm55.53 3.007-.001.084h1.066v-.083h-1.066Zm14.449-.236c.129-.087-.306-.278-1.087-.152-.16.027-.143.22-.797.231-.362-.076-.716-.167-1.08-.248-.503.08-1.09.193-1.282.296-.11.06.147.076.213.125.098-.06.184-.115.276-.173l1.076.252c1.124.023 1.693-.04 2.447-.159l1.832.085.53-.248c-.712-.003-1.42-.004-2.128-.009Zm-23.562-6.616c.006.052.508.011.502-.041-.005-.052-.506-.011-.502.04Zm43.7-7.03h-.003c.113.108-.296.155-.522.25h1.597c.102-.083-.372-.273-1.072-.25ZM86.904 19.07c-.003-.053-.507-.054-.505-.002 0 .053.507.054.505.002Zm7.496-.265c.709.383 2.556.506 2.676.012-.887-.005-1.785-.008-2.675-.012Zm36.711-12.072c3.007-.24 1.767-.48-.581-.285.186.095.388.19.581.285Zm-7.725-1.554c-.262-.01-.528-.018-.794-.027.68.102 1.077.216 2.138.204-.601-.116-.041-.138-.01-.25-.465.025-.894.05-1.334.073Zm2.424.092c0 .028-.001.056.002.083.536 0 1.064-.002 1.583-.004 0-.028-.001-.056-.003-.083l-1.582.004Zm-42.294-.325c0 .083.002.167.004.25l-1.069-.042 1.611.125-.01-.333h-.536ZM48.384 18.99c-.002-.052-.502-.05-.503.002.004.052.504.05.503-.002ZM89.39 4.867c.055-.341-1.093-.053-1.81-.034-.972.026-.666-.08-1.386.085-.184.043-.733.208-.532.278.874.03 1.793.056 2.682.085l-.547-.375c.53-.012 1.084-.03 1.593-.039Zm-22.298 6.93a3.713 3.713 0 0 0-.018-.166l-.535.044c.004.055.011.11.018.165l.535-.043Zm40.005-3.203c-.005-.056-.014-.11-.018-.166l-1.067.089.82.099.265-.022Zm-2.134.177c-.005-.055-.014-.11-.019-.166l-1.047.255 1.066-.089ZM12.587 4.378c-.473-.035-.612-.131-1.067.01-.454.143-.092.289-.332.453-.178.12-1.117.24-.967.384l1.602-.05c-.008-.209-.019-.417-.027-.625.909-.004 1.78-.01 2.676-.013h-.004c-.42-.167-.962-.09-1.881-.16Zm89.654.867c0-.052-.509-.052-.508 0 .003.053.51.053.508 0ZM57.995 12.66h-.002c-.62-.046-1.225-.094-1.851-.14-.352.108-.774.13-1.318.189l-.498.457c1.391-.251 1.814-.097 3.212-.176l.457-.33ZM90.647 19c-.002-.053-.507-.055-.505-.002 0 .052.508.054.505.002Zm-75.972.058c-.002-.052-.516-.05-.513.003-.002.052.514.05.513-.003ZM27.608 5.154l.53-.074.802.032c-.671-.102-1.118-.216-2.138-.203.27.081.538.163.806.245Zm8.53 8.972c-.779.126-1.176.21-1.858.148l-.258.063c.665.05 1.112.13 2.142.038-.01-.083-.02-.166-.026-.25Zm7.435 4.67c0 .056.003.111.006.167l.535-.002a3.72 3.72 0 0 0-.005-.167l-.536.002ZM158.788 4.061c.012.052.489 0 .493-.053-.018-.05-.495.001-.493.053ZM22.284 15.27c.004.053.509.012.503-.04-.005-.052-.51-.012-.503.04ZM157.19 4.23c-.002.053.522-.001.511-.053-.001-.053-.529.002-.511.053ZM69.26 18.753l1.07.167c0-.056-.002-.111-.005-.167h-1.064Zm74.181-13.627c0-.053-.514-.048-.512.004.003.053.515.048.512-.004Zm-3.198 1.02c.655-.184 1.372-.373 2.043-.558-1.296.082-.881.182-1.572.352-.28.069-.701.097-1.044.133-.348.14.445.158.402.252-.091.19-1.052.391.71.235-.191-.138-.355-.277-.539-.414Zm-30.257 12.89c.001-.053.506-.049.507.004-.001.053-.507.048-.507-.004Zm-59.366-5.32c-.363-.014-.715-.028-1.086-.04l-.03-.373 1.937.001 2.34-.138c-.664-.031-.25-.208-1.369-.096-.865.086-1.455.178-2.348.185-.019-.052-.03-.107-.045-.16-1.316.083-1.115.172-1.044.335l-.563-.206-2.124.171c.293.155.55.24.047.454l.81.062.513-.208.84.182 2.122-.17Zm98.168-8.635c-.002-.053-.513-.048-.512.004.003.052.516.048.512-.004Zm-43.689 13.697c-.745.087-.887.002-1.604-.01-.001.083.004.167.006.25l1.602-.074c.001-.055-.002-.11-.004-.166Zm-19.857-8.296c-.004-.055-.014-.11-.018-.166-.535.028-1.738.199-1.58.298l1.598-.132Zm-49.164 8.26c0 .055.003.11.006.166l.538-.003c0-.055-.003-.11-.005-.167l-.539.003ZM124.17 7.285c-.268-.02-.537-.039-.808-.057a27.991 27.991 0 0 1-.259.063l.81.057.257-.063Zm-48.497 4.23c1.196-.093 1.373-.195 1.572-.38.47-.03 1.208-.01 1.604-.088l-1.622-.077c-.013.057.057.107.018.166-1.08.098-1.618.207-1.572.38Zm43.692-3.95c.193.109.385.217.575.326l1.595-.09c-.716-.08-1.442-.157-2.17-.235Zm-1.586.301c-.359-.025-.719-.05-1.079-.077.004.056.011.11.018.166l1.061-.089Zm-44.774 3.824c-.857-.006-.203-.17-.656-.233-.19-.026-1.099.1-1.242.011-.123.027-.18.043-.276.066l1.905.22c.09-.021.163-.04.269-.064Zm84.183-7.337h.004c-.422.015-.91.037-1.334.051l-.258.068c.514-.01 1.09-.026 1.6-.036a.768.768 0 0 0-.012-.083Zm-2.118.213c-1.406.111-2.846.221-4.265.327.189.08.378.161.562.241.923-.043 1.282-.117 1.688-.003.202.053.314.191 1.032.118.341-.228.645-.454.983-.683ZM63.38 12.14c.007.052.511.011.505-.04-.003-.053-.512-.012-.505.04Zm83.77-6.405c1.392-.227 2.607-.433 2.619-.703-1.015-.013-.069.048-.683.187-.589.136-2.302.321-1.936.516ZM8.074 4.987l-2.147.097c-.003-.056-.009-.111-.01-.167l2.15-.097c.002.056.007.112.007.167Zm70.8 13.816c0-.053-.51-.054-.507-.001 0 .052.508.053.506 0Zm30.848-13.724c0-.052-.515-.052-.513 0 .002.053.515.053.513 0Zm-35.838-.134c0 .028 0 .056.002.084h1.07c0-.028 0-.056-.003-.084h-1.069Zm-41.206-.133c0 .055.006.11.008.166l1.067-.002-.809-.165h-.266Zm-.79 9.82.529-.042c.006.055.013.11.018.166l-.53.042c-.007-.055-.013-.11-.018-.166ZM164.64 4.911c-.012.054-.024.108-.038.162.004-.01-.008-.009-.115-.075-.028-.019-.068-.044-.125-.096-.038-.038-.179-.16-.255-.41a.92.92 0 0 1 .103-.733c.118-.17.141-.165.195-.212.174-.115.146-.07.156-.073-.004.015-.053.042-.115.07-.105.05-.243.102-.385.152.146-.027.289-.055.402-.083.066-.015.12-.031.136-.038-.003.006.027-.029-.116.071-.044.04-.063.037-.163.183a.79.79 0 0 0-.083.625c.184.43.279.366.322.419.093.05.091.038.081.038ZM40.882 18.764c-.001-.053-.506-.05-.503.002 0 .052.506.05.503-.002Zm-11.638-3.712h-.003l-.545-.165-.11.026c-.32.075-.64.15-.953.225l.682-.013c.096 0 .294-.009.288-.002l.001.02c.077-.004.305-.025.381-.03l.259-.061ZM90.455 4.699c-.174.07-.349.14-.524.208l1.604.126h.004c-.185-.111-.37-.222-.553-.334h-.53ZM68.72 11.79c.004.053.51.011.504-.04-.005-.053-.51-.012-.504.04ZM97.16 5.034c.326-.074-.747-.217 0-.244.886-.033 1.612.021 2.396.078-.507-.374-2.513-.11-4.29-.25.616.138 1.269.279 1.894.416Zm2.932-.123.814.125.268-.041-.818-.126a36.83 36.83 0 0 0-.264.042Zm47.09-.192c.001.083.006.167.012.25l1.064-.009c-.003-.083-.006-.166-.012-.25l-1.064.009Zm1.615.237c.529-.005 1.067-.01 1.606-.013h-.004V4.9c-.268-.04-.54-.079-.818-.118l-.784.173Zm-81.877-.094c0 .028 0 .056.002.083h1.073c0-.028 0-.056-.003-.083H66.92ZM19.287 4.6c-.055.16.68.227 1.352.328.916-.12.85-.247.79-.42l-2.141.092Zm132.166.293c-.001-.052-.522-.048-.512.004-.008.053.516.049.512-.004ZM29.492 4.718c-.69-.157-.72-.346-2.17-.1.623.091 1.253.19 1.881.284.445-.04.887-.088 1.331-.126-.091-.116-.676.025-1.042-.058Zm47.053.102-.801-.125h-.266c.002.083.007.166.009.25l1.058-.125Zm84.807-.179a9.637 9.637 0 0 1-.271.25c.533-.027 1.069-.052 1.596-.072-.19-.114-.349-.227-.543-.34-.248.054-.536.108-.782.162Zm-39.579.138c-.551.076-.912.131-.809.251l1.087-.001c-.003-.084-.008-.167-.01-.25h-.268Zm1.341.081c0 .056.005.111.005.167l.527-.001c0-.056-.004-.112-.005-.167l-.527.001Zm-79.488-.318-1.85-.08c-.01.054-.02.108-.032.162l-1.045.09 2.657-.002 1.092.163-.55-.331 1.605-.129-1.074-.124c-.269.084-.534.168-.803.251Zm115.722-.29c.012.052.517-.003.506-.054-.003-.053-.508.003-.506.055Zm-43.105 4.164 1.587-.093-1.369-.261.028.248-1.341.113c.168-.126.334-.251.499-.377-2.741.366-1.812.674.599.536a3.07 3.07 0 0 0-.003-.166Zm-65.912-3.63.002.083 1.072-.001c0-.028.001-.056-.001-.083H50.33Zm23.963 13.553h-.004c.526.01.331.108.306.167-1.11.002-1.55.162-2.662.165l-.001-.001h-.005c-.006-.152.673-.207 1.064-.333a358.65 358.65 0 0 0-1.077-.167c.803.056 1.582.113 2.379.17ZM61.26 12.605c-.004-.056-.014-.11-.018-.166l-1.063.086.018.166 1.063-.086Zm-54.702 4.39c.117-.043.25-.088.397-.133.139-.044.247-.085.384-.128a39.144 39.144 0 0 0-.806.097c-.091.012-.209.029-.296.043.009.055.02.11.031.165.085-.014.203-.031.29-.043Zm95.155-12.042 1.064-.125-.807-.125h-.267l.01.25Zm44.383-.1c.001-.052-.5-.048-.498.004.001.053.501.049.498-.004ZM93.802 10.03c-.004-.056-.014-.111-.018-.167l-.533.045c.005.055.014.11.018.165l.533-.043Zm-7.007.658c.537-.118-.683-.225-.924-.172-.537.118.68.225.924.172Zm-10.26-6.201c.727.107.561.233.549.375h1.074c-.509-.144-.528-.302-1.355-.417l-.268.042Zm-37.979.23c0 .028 0 .056.002.084l1.071-.003c0-.027 0-.055-.003-.083l-1.07.002ZM67.66 18.545c0-.053.507-.053.507 0 .001.052-.506.052-.507 0Zm38.937-9.659-1.591.258 1.085.035.506-.293Zm7.15 1.327c.974-.074 1.78 0 2.669-.182l-2.152.055c-.05-.09.744-.202.503-.293l1.068-.09a792.35 792.35 0 0 1-.003-.041l-1.083-.035c.004.055.011.11.018.166l-.53.044-.028-.248-1.595.175c.735-.169.452-.27.494-.418.442-.03.836-.038 1.046-.134.397-.182.606-.342.491-.496-1.282.218-1.385.404-1.537.63-1.432.102-1.319-.068-2.148-.108-1.758-.083-2.424.112-2.67.426-1.664-.065-2.64.019-4.268.355.203-.155-.775-.138-1.034-.208-.254-.07.371-.148.395-.207.043-.102-.461-.102-.447-.192.008-.047.446-.094.401-.13-.11-.086-1.008-.056-1.557.005.472.12-.665.362-.39.48.445.19 1.545.165 1.039.47-1.1-.015-1.351.203-2.389.215h.003c-.614.115-1.228.23-1.845.344.358-.004.716-.007 1.073-.012.005-.039.007-.077.009-.116l3.166-.35c.055.163.71.207 1.636.2a4.494 4.494 0 0 1-.003-.165l1.594-.136-.526-.08c.163-.085.305-.037.482-.043.782-.024.967-.071 1.619-.174-.341.167-.677.335-1.019.503l1.84-.32 1.902.091.45-.33-1.04-.123c.897-.047 1.778-.092 2.672-.14l-.498.377 2.146-.096.046.33Zm-15.674-.536a1.01 1.01 0 0 0-.01-.083c-.356.03-.715.06-1.067.088.002.028.003.056.008.083l1.069-.088Zm11.644-4.848c-.002-.053-.515-.052-.513 0 0 .053.514.052.513 0Zm-40.66-.134c0 .028.004.055.004.083h1.07c0-.028 0-.056-.003-.084h-1.07ZM26.456 18.578c-.003-.053.505-.056.507-.003.002.052-.507.055-.507.003Zm59.367-7.725c-.243-.074-.66-.088-.561-.204l-1.051.21c.496.046.847.072 1.612-.006Zm-32.824-6.32c0 .056.005.112.008.167l1.063-.168-1.071.001Zm13.03 13.928c0-.052-.512-.052-.51 0 .001.053.512.053.51 0Zm16.597-.11c-.125.103 1.069.201 1.605.17 0-.055-.002-.11-.005-.166l-1.6-.004ZM23.556 4.627c-.001-.053-.506-.051-.503.001 0 .053.506.051.503-.001ZM69.51 18.169c.975-.091 1.097-.095 1.874.043-1.073.068-2.129.137-3.203.207-.173-.175.527-.175 1.33-.25Zm71.227-13.52c-.01-.052-.503-.048-.501.005 0 .052.497.048.501-.005Zm2.953-.317c-.751.101-.893.193-.795.34.182 0 .363-.003.542-.005l.522-.295-.269-.04ZM78.864 18.386c0-.053-.508-.054-.506-.001 0 .052.509.053.506 0ZM105.97 4.37c-.015.056.032.111.005.167-.359.004-.719-.002-1.081 0-.098.157.074.183 1.089.167.014-.056-.032-.11-.005-.167.359-.004.717.003 1.073 0 .094-.157-.069-.183-1.081-.167Zm-63.898 9.95c-.002-.028-.003-.056-.008-.083l-1.066.085a.956.956 0 0 0 .01.083l1.064-.086Zm90.177-7.1-.027-.248-1.075.093c-.095.091.395.24 1.102.156Zm25.616-2.742c0 .028.001.056.004.083l1.067-.003c0-.028.001-.056-.002-.083l-1.069.003ZM36.268 14.717l-.07-.01.124-.017-.054.027.001-.001c.341.051.702.1 1.032.153l-1.608.128.575-.28Zm47.983-3.485a84.55 84.55 0 0 1-.571-.287l-1.594.13c.097.102 1.02.136.503.29-.144.043-1.643.098-.712.147.764-.092 1.588-.187 2.374-.28Zm-2.639-7.121c-.485.069.327.098.194.206-.087.07-.72.19-.443.293 1.441-.115 1.4-.33.25-.5Zm40.49 3.768c.005.052.515.009.509-.043-.004-.053-.515-.01-.509.043Zm35.167-2.946a4.623 4.623 0 0 0-.022-.166l-.522.054c.006.055.014.11.022.165l.522-.053ZM20.716 15.979c.006.053-.5.093-.503.04-.008-.052.497-.092.503-.04Zm38.448-2.87c1.111-.076 1.993-.293 2.932-.237l.262-.063c-1.09-.09-2.454.014-3.194.3Zm91.88-6.354c-.642.024-1.233.043-1.886.066l-1.311.19.474-.17-.775-.047c-.27.05-.514.099-.77.147.105-.158-.702-.112-1.001-.202-.086-.027.338-.077.26-.108-.165-.065-.528-.066-.415-.171.645-.003 1.239-.002 1.885-.006.551-.133 1.068-.264 1.601-.396l1.313-.04c-.303-.093.343-.217.338-.325-.03-.105-.693-.107-.409-.254-.361.047-.7.093-1.066.14l.563.158c-1.322.106-2.086.2-2.917.436l-.259.025c.063-.124-.783-.26-1.646-.186.22.239-.582.559.09.745-1.401.127-2.819.253-4.263.381l-.005.001c-.077.23 1.339.119 2.443.036.76-.076 1.324-.248 2.095-.268 1.359-.038.299.3.346.464-1.236.07-3.199.062-3.185.37.527-.029 1.082-.062 1.629-.094l-.007.117c.444-.096.86-.19 1.3-.285.28.03.557.06.833.092.083-.116-.348-.124-.568-.2.358-.027.706-.062 1.05-.097.003-.055.001-.11.003-.166 1.8-.144 1.666.147 2.447.277.628-.211 1.195-.418 1.813-.63ZM90.631 18.333c-.002-.053-.507-.055-.505-.003 0 .053.505.055.505.003Zm60.805-13.857c-.002-.052-.522-.048-.511.005-.007.052.515.048.511-.005ZM30.25 4.4l-.806-.04.809.123.798-.126-.801.043Zm132.679-.328c-.264.038-.523.077-.802.116 0 .027.004.055.004.083.54.074 1.066.15 1.599.238-.173-.145-.362-.29-.532-.432a31.063 31.063 0 0 0-.269-.005ZM122.121 8.17c-1.084.009-2.135.013-3.227.022l1.623.03c-.351.058-.703.116-1.058.173l.821.098 1.841-.323Zm12.217-3.845c0 .083.005.166.011.25l.54-.003a10.44 10.44 0 0 0-.011-.25l-.54.003Zm-77.076.11c.21-.038-1.118-.224-1.585-.14-.21.04 1.118.225 1.585.14Zm84.009.044c0-.053-.516-.048-.514.005.002.052.518.047.514-.005ZM8.044 4.32c0 .056.005.111.008.167 1.079 0 1.615-.094 1.586-.26-.535.031-1.046.063-1.594.093Zm86.602 6.226c1.161-.097 1.67-.153 2.767-.307.62-.086.917-.096.687-.23l-2.667.136c.007.084.02.166.028.25l-2.14.092c-.15.205.365.139 1.325.059ZM47.84 18.032c-.9.058-1.79.117-2.669.175l-.008-.25 2.677.075ZM103.287 4.12c0 .056.005.111.004.167l1.028.005c.012.054.024.108.039.162h.536a38.01 38.01 0 0 1-.549-.334h-1.058Zm43.327.23c-.005-.053-.516-.048-.508.004-.005.053.508.048.508-.004Zm-81.318-.07c0 .027 0 .055.002.083l2.138-.084-.273-.167-1.867.167Zm72.317 2.809a52.193 52.193 0 0 0-.567-.284c-.253.135-.508.269-.766.403l.32.01c.341-.043.68-.086 1.013-.13ZM70.101 4.319c-.003-.052-.507-.052-.505 0 0 .053.508.053.505 0Zm5.358-.124c0 .055.005.111.005.167H76c0-.056-.005-.112-.007-.167h-.534ZM40.86 17.722c1.007-.043.811.016 1.141.104.482.127 1.107.15 1.016.306-.524-.01-1.27.05-1.583-.043-.395-.117-.622-.235-.574-.367ZM78.138 4.195c0 .056.003.111.003.167h1.607V4.32a7.03 7.03 0 0 0-1.61-.125Zm14.716.004-.8.167h1.074c0-.055-.004-.111-.006-.166h-.267Zm8.82.128c.001-.052-.511-.052-.509 0 0 .053.511.053.509 0Zm-13.71 13.704v.084l1.073.003v-.083l-1.072-.003Zm2.698-7.24a.968.968 0 0 0-.01-.084l-1.068.088a.998.998 0 0 0 .01.083l1.068-.088ZM118.8 4.323c-.002-.053-.51-.052-.508 0 0 .053.51.052.508 0Zm-82.403-.27c0 .055.004.11.006.166h.534l-.008-.167h-.532Zm118.041 1.831c.653-.127.676-.295 1.283-.416.902-.182 1.776-.158 1.568-.371-.848.146-1.739.29-2.606.432-.082.118-.159.238-.245.355ZM95.772 4.242c-.006-.053-.505-.053-.503 0 0 .052.5.052.503 0ZM8.522 17.41c.244-.066.507-.132.79-.2l.26.019c-.235.063-.537.132-.788.198l-.262-.017ZM142.86 4.214c-.006-.052-.511-.048-.506.005-.003.052.505.048.506-.005Zm3.753-.157c0 .056.005.111.006.167l.54-.004c0-.056-.003-.112-.006-.167-.178 0-.358.003-.54.004Zm-76.507-.03c0 .056.005.111.005.167h1.066l-.806-.167h-.265ZM33.912 17.875l-.799.128h.003l-.53.003c-.262-.055-.54-.109-.812-.163l2.138-.01v.042ZM32.633 4.103c-.002-.053-.506-.052-.503 0 .001.053.506.052.503 0Zm125.75 1.007c.009.052.524-.002.514-.054-.004-.052-.519.002-.514.054ZM58.326 3.947c-.139.112 1.078.182 1.61.166-.111-.107.3-.156.527-.25-.71.029-1.424.056-2.137.084ZM6.623 17.986c-.067-.003-.193-.01-.275-.017-.099-.048-.307-.039-.346-.18.135-.037.292-.02.405-.013a5.674 5.674 0 0 0-.257.048.595.595 0 0 0-.095.03c.001-.003.023-.01.019-.058-.013-.04-.029-.037-.023-.036.019.007.036.01.051.013.184.03.342.036.524.046 0 .055 0 .111-.003.167Zm72.243-.059.536.001c0-.056-.002-.111-.005-.166l-.536-.002c0 .056.002.111.005.167ZM16.58 4.07c0-.052-.511-.05-.51.002 0 .053.512.05.51-.002Zm74.964 7.32c.585-.045.958-.156 1.58-.218.727-.073 1.635-.125 2.4-.196.13-.217-.546-.13-1.62-.034l.523-.21c-.813.013-1.602.019-2.416.034-.386.042-.612.186-.769.221-.873.192-1.635.283-1.585.473h-.002c.754-.08 1.163-.013 1.889-.07Zm65.676-7.573c-.251-.032-1.44.18-.885.25.251.032 1.442-.18.885-.25Zm-73.169 7.848c.71-.027 2.197-.119 2.37-.274-1.071.031-2.144.063-3.217.097.306.035.334.197.847.177Zm42.371-3.61c-.002-.027-.004-.054-.008-.082-.356.03-.714.06-1.074.092.003.027.006.055.011.082l1.071-.091Zm33.004-4.283c-.189-.08-1.08-.05-1.578-.042.238.096.823.183 1.33.243.706.087.871.063 1.352-.04h-.003c-.701-.075-.766-.013-1.101-.161Zm-54.549.182c0 .056.005.111.005.167h.542c0-.056-.005-.111-.005-.167h-.542Zm-17.826 8.222c.267-.156.624-.293.87-.455.25-.162.45-.386.614-.54.094-.09-.94.01-1.012.037-.487.19-.245.279-1.62.382.01.027.005.056.012.083l1.063-.086c.025.193.045.386.073.58Zm8.448-1.575c.007.053.51.011.504-.041-.004-.052-.51-.01-.504.042Zm14.401 7.376-1.607-.011.001-.084 1.606.011v.084Zm6.746-14.026c0 .056.003.112.003.167h.537c0-.056-.003-.111-.005-.167h-.535Zm-85.41 13.895-1.065.005v-.083l1.064-.005v.083Zm.602-14.032-.797.168 1.07-.002c0-.056-.005-.112-.007-.167h-.266Zm97.271 4.18a4.604 4.604 0 0 0-.019-.166l-.537.046c.004.056.014.11.018.166l.538-.046Zm-8.188-4.214c-.179.112-.358.223-.526.334h.538l1.074-.335-1.086.001ZM44.615 17.792l-1.073.003v-.083l1.073-.003v.083ZM72 12.527c.007.052-.495.093-.503.041-.006-.052.499-.094.503-.041Zm66.303-8.815c-.716.101-.858.192-.763.34.312.014.622 0 .901-.03.563-.055 1.026-.163 1.209-.238a.3.3 0 0 1 .003 0l-1.214-.064-.136-.008Zm-71.09 9.162.534-.043c.005.056.014.11.018.166-.176.014-.356.03-.534.043-.005-.055-.014-.11-.018-.166Zm76.728-8.877.51-.338-1.045.093c-.359-.081-.75-.161-1.095-.242.525.162 1.101.325 1.63.487Zm-42.817-.003c-.003-.053-.512-.053-.512 0 .003.052.514.052.512 0ZM58.664 13.61c.005.052-.5.093-.504.04-.007-.052.5-.092.504-.04Zm32.559-2.615 1.067-.088c.007.055.014.11.019.166l-1.068.088a3.867 3.867 0 0 1-.018-.166Zm43.76-3.55c.008.052.506.008.501-.044-.004-.052-.507-.009-.501.044Zm27.17-2.382c-.006-.055-.016-.11-.025-.165-.349.044-.7.085-1.062.127.289.022.531.05.825.07a36.8 36.8 0 0 0 .262-.032Zm-90.104 7.752c-.007-.055-.014-.11-.018-.165l2.124-.257c-.004.216-.838.335-2.106.422Zm-23.143 4.84c-.003-.053.504-.054.505-.002 0 .053-.506.054-.505.002Zm67.412-8.62c.005.053.512.01.505-.042-.004-.052-.511-.01-.505.043ZM55.327 17.64c0-.053.507-.054.507-.001.001.052-.507.053-.507 0Zm59.385-8.47c.006.052.504.01.501-.042-.009-.052-.507-.01-.501.042ZM.022 3.92c-.002-.052.494-.057.498-.005.002.053-.497.057-.497.005Zm72.953 13.75 1.068.002c-.06-.093.06-.15.528-.208l-1.072-.126c-.176.11-.349.222-.524.333ZM3.187 3.895c0-.052-.512-.049-.508.004 0 .053.51.049.508-.004Zm76.744 13.701v.083l1.07.002v-.083l-1.07-.002Zm18.787-7.093c.005.052.51.01.505-.042-.004-.052-.511-.01-.505.042Zm-69.087 7.184-.54.003a3.725 3.725 0 0 1-.006-.167l.54-.002c.003.055.006.11.006.166Zm55.747-6.002c-.416-.079-1.97.145-2.687.171-.064.003-.3-.102-.791-.01-.208.04-.237.06-.258.104.332-.044.727-.047 1.05-.094.032.042.016.056.021.09-.45-.002-.438.112-.498.121-.402.059-.707.046-1.105.096l.034.007c.048.02-.05.071.272.049.134-.01.367-.029.51-.043.402-.037.1-.066.29-.11.19-.043.62-.048.499-.12.362-.033.71-.058 1.067-.088l-1.037.295 1.082.12c.516-.196 1.033-.393 1.551-.588Zm-54.137 5.953c-.001-.053.509-.055.51-.003.001.053-.51.055-.51.003Zm2.393-1.806c-1.037.097-1.743.133-2.147.004 1-.094 1.73-.132 2.147-.004Zm7.765 1.805-1.069.004c-.002-.056-.005-.111-.005-.167l1.069-.004c.002.056.005.112.005.167Zm83.449-9.238c.005.053.517.009.512-.043-.004-.052-.519-.009-.512.043Zm-82.899 9.195c-.003-.052.513-.055.51-.002.006.053-.51.054-.51.002ZM82.39 3.82c-.004-.052-.511-.052-.51 0 .002.053.512.053.51 0ZM9.07 17.694c.001.052-.496.099-.495.046-.012-.051.485-.098.495-.046Zm3.947-.503c.03.086-.039.21.014.29.119.172.685.104 1.34.204a24.425 24.425 0 0 1-.278-.333c.35-.03.74-.059 1.072-.089h-.004c-.718-.023-1.408-.049-2.145-.072Zm75.992.385c-.004-.052-.507-.054-.508-.001 0 .052.51.054.508.001Zm-72.236-.155c0 .056.005.111.006.167a471.458 471.458 0 0 0 1.346.075l.26-.042-.389-.152-.146-.054-1.077.006Zm31.772-2.827c.007.052-.5.092-.505.04-.006-.052.5-.093.505-.04Zm85.996-6.234c-.193-.094-.385-.189-.58-.283-.269.079-.529.157-.781.235-1.151-.096-2.379-.186-3.526-.283h-.005l.595.28 1.035-.083-.226.438 1.639.02 1.849-.324ZM34.457 17.54c0-.053.505-.056.505-.003.004.052-.502.055-.505.002ZM161.577 3.6c.284.044.533.087.813.132.091-.013.167-.026.265-.039-.262-.045-.545-.09-.804-.133-.088.014-.182.027-.274.04Zm-94.5 13.735.806.167.801-.125v-.042h-1.607Zm-3.047-3.91c.008.052-.499.094-.507.042-.007-.052.504-.094.507-.042Zm34.42-9.89.01.25h1.064c-.104-.107.301-.157.518-.25H98.45ZM57.125 14.11a3.865 3.865 0 0 1-.018-.166l1.594-.128c.003.027.008.055.01.083-.678.04-1.001.13-1.586.211ZM7.154 17.504l-.002.083c.363.01.69.014 1.076.018l.001-.083a67.638 67.638 0 0 1-1.075-.018Zm2.671.026v.084h1.07v-.084h-1.07Zm130.031-9.718-.607-.532-.503.38c-.915 0-1.563.01-2.396.209l-.152-.01-.607-.049.46-.124-1.049.05c.185.082.366.164.547.247l.656-.04.958-.06.036.247 2.657-.318Zm-3.249-.258c.005.052.516.008.509-.044-.003-.053-.515-.008-.509.044Zm-55.496 4.608c.052-.04-.062-.053.004-.088-.2.034-.456.03-.506.085-.048.053.377-.007.502.003Zm82.604-8.53c.002-.053-.511-.066-.506-.012-.003.051.509.064.506.012Zm-2.001 2.157c.069-.158-.758-.122-.49-.319.208-.153.942-.346-.656-.135-.111.136-.277.282-.39.42.519.012 1.05.02 1.536.034Zm-44.825 3.659a6.777 6.777 0 0 0 1.574-.258 6.895 6.895 0 0 0-1.601.009c.006.083.017.166.027.249Zm-106.2 8.269c.008.052-.487.095-.5.043.002-.053.498-.096.5-.043Zm69.218-.33c0-.053-.504-.053-.504-.001 0 .053.506.053.504 0ZM42.172 15.23c.004.056.011.11.018.166l-1.067.086 1.049-.252ZM159.435 3.39c0 .055.003.11.005.166h.538c0-.056-.005-.111-.005-.167h-.538Zm-34.174 6.27c.53-.09.259-.193.238-.271.281.003.743.025 1.078-.008.343-.14.685-.282 1.021-.422l-2.13.182c0 .083.04.164.027.248-.995-.01-1.198-.051-1.105-.24 1.624-.16 1.539-.351 2.092-.596l-2.145.098c-.082.063-.167.126-.251.189-.815.006.143-.217-1.352-.053h.003a438.5 438.5 0 0 1 1.639.237c-1.205.307-1.676.131-1.62-.072-.525.087-1.083.176-1.58.26.511.096 1.819.024 2.407.086.871.09.637.31 1.678.362ZM25.098 16.594c.179-.015.359-.03.54-.043.006.055.013.11.017.166l-.539.042-.018-.165ZM158.464 5.689c.011.051.524-.003.514-.055-.005-.052-.519.002-.514.055ZM72.58 12.897c.007.053-.498.094-.503.042-.007-.052.498-.094.503-.042Zm80.582-6.47c-.543-.03-1.096-.062-1.628-.095l.031.248c.522-.05 1.065-.1 1.597-.152Zm-141.38 11.28.256-.064c.27.061.548.122.84.181l-.548.046a39.702 39.702 0 0 1-.548-.163ZM3.725 3.43c0 .056.005.112.008.167L4.8 3.591c-.002-.056-.004-.111-.009-.167l-1.066.007Zm72.436 13.867c-.002-.052-.504-.053-.506 0 .001.052.507.053.506 0Zm24.95-13.721c-.003-.053-.514-.053-.512 0 0 .052.513.052.512 0ZM53.658 14.39l.07.002-.006.002h.011l-.835.22.76-.224ZM66.857 3.486c-.003-.053-.51-.053-.507 0 .002.052.508.052.507 0Zm32.85 13.885c-.001-.052-.509-.055-.507-.003.002.053.509.056.507.003ZM38.97 15.614c.006.052-.498.092-.505.04-.007-.052.5-.093.505-.04Zm90.196-7.25c.006.053.511.01.504-.043-.005-.052-.51-.008-.504.044Zm-94.913 8.17c.41-.274.1-.553 2.06-.75-.646.236-.927.369-.485.541l-1.572.21h-.004ZM91.477 3.282l.002.084 1.058.003c.007.054.016.109.026.163h.537c.173-.083.352-.166.526-.25h-2.149Zm4.81.21c0-.052-.513-.052-.51 0 0 .053.512.053.51 0Zm61.127 2.516c-.946.117-1.43.12-2.149.092-.489-.02-.712.108-1.042.184.626.01 1.277.014 1.898.02.422-.097.882-.198 1.293-.296ZM11.403 17.32c-.003-.053-.488-.052-.498 0 .014.053.497.052.498 0Zm9.647-.049.273.04c.28-.042.528-.086.794-.129l-.265-.04c-.255.043-.534.086-.802.13ZM153.008 3.256c0 .056.006.111.006.167l1.067-.007a4.654 4.654 0 0 1-.006-.167l-1.067.007ZM92.392 11.82l-1.623.094-1.625-.245.596.451c.393-.017.91-.091 1.282-.105.629-.022.02.145.598.119l.772-.314Zm67.029-8.846c-1.646.018-1.704.202-1.593.422 1.154-.098 1.73-.214 1.593-.422ZM128.64 8.62c.114-.114-1.107-.104-1.619-.029.007.055.014.11.019.166l1.6-.137Zm-91.774 7.205.532-.043c.007.056.014.111.018.166l-.532.043c-.007-.056-.014-.11-.018-.166ZM162.65 3.36l-.001.042c.741.018 1.388-.007 2.242.114.143-.098-.326-.24-.886-.33-.461.05-.913.11-1.355.174ZM20.074 17.327c-.269-.035-.531-.07-.817-.103l1.061-.084c.007.055.014.11.018.166l-.262.02Zm-12.697-.4c-.38-.006-.977-.001-1.108.016.01.004-.007-.001.056.02.054.04.183-.007.462.384.143.188.15.648.059.8a.867.867 0 0 1-.244.338c-.137.11-.193.12-.228.136-.087.025-.031-.001-.012-.01.08-.027.135-.048.218-.073.192-.052.303-.09.462-.133-.185.017-.328.03-.509.053-.073.009-.153.02-.214.03-.008-.002-.09.03.035-.022.04-.024.11-.042.238-.192.062-.086.136-.175.161-.413a.756.756 0 0 0-.186-.546c-.188-.189-.259-.177-.297-.197l-.036-.01c.03.013.241.036.407.049.142.012.369.025.513.034.71.04 1.405.064 2.125.088a92.494 92.494 0 0 1-1.902-.351Zm135.66-9.606c.001.052.512.007.506-.046-.006-.052-.517-.006-.506.046ZM24.79 17.212c1.19-.138 1.665.022 2.95-.027.512-.02 1.644-.228 1.317-.328-.63.058-1.217.115-1.861.173-.822-.107-1.592-.213-2.421-.32.003.168.014.334.015.502ZM123.06 3.36c0 .028 0 .056.002.083.353 0 .703 0 1.05-.002 0-.027.001-.055-.002-.083l-1.05.002ZM17.281 17.127c-.003-.053-.507-.05-.503.003 0 .052.504.049.502-.003Zm75.102-5.516c.004.052.51.01.504-.042-.004-.052-.51-.01-.504.041Zm23.708-8.494c.003.084.008.167.01.25h1.061c-.003-.084-.008-.167-.01-.25h-1.061Zm34.756-.178c.101.111-.084.434 1.099.227.06-.01.014-.169.5-.204.415-.028 1.195-.022 1.071-.126-.692-.024-1.421-.045-2.135-.068-.181.057-.366.113-.535.171ZM52.615 16.853c0 .056.002.112.005.167l1.07-.169-1.075.002Zm58.443-6.708c.004.053.507.01.5-.041-.004-.053-.506-.01-.5.041Zm28.031-7.023c0 .055.006.11.006.166l.538-.004c-.001-.056-.004-.111-.006-.167l-.538.005Zm-42.81.12c0-.053-.513-.054-.511-.001 0 .052.513.053.511 0ZM43.842 15.557c.005.052.506.011.5-.04-.004-.053-.507-.013-.5.04ZM160.489 2.889c.003.084.008.167.008.25.36 0 .724.001 1.069.003.105-.082-.369-.275-1.077-.253ZM39.233 16.81c0 .056.003.111.006.167l1.07-.004c0-.055-.002-.11-.005-.166l-1.07.003Zm81.739-7.126c.412-.008.876-.08 1.314-.106-.651-.057-1.26-.117-1.901-.174l-.177.034c-.796.168-.109.264.764.246ZM71.037 13.4l1.066-.087a.968.968 0 0 1 .01.083c-.355.03-.708.058-1.066.087a.968.968 0 0 1-.01-.083Zm45.9-3.664c.004.053.51.01.503-.042-.005-.052-.508-.01-.503.042Zm-94.472 7.526c.006.053-.49.092-.495.04-.006-.053.49-.092.495-.04ZM153.714 6.626c-.003-.028-.005-.056-.01-.083-.508.05-1.067.103-1.595.153a.776.776 0 0 0 .011.083l1.594-.153Zm-44.263 3.695-1.605.135a.767.767 0 0 0 .01.082c.663-.07 1.014-.035 1.613-.05a3.098 3.098 0 0 0-.018-.167ZM9.276 16.945v.084c.712-.026 1.431-.054 2.13-.083v-.084c-.699.03-1.418.058-2.13.083Zm42.067-1.53c1.136-.185 1.712-.349 1.56-.545l-.529.209-1.589.13h-.003l.561.205Zm46.925-4.123c.004.052.511.01.506-.042-.005-.052-.513-.01-.506.042ZM15.68 16.844c.358.053.735.107 1.078.16 0-.055-.003-.11-.006-.166l-1.072.006Zm114.046-8.15.001-.001c-.353.03-.709.06-1.068.092.004.055.011.11.019.165l.266-.022.782-.235Zm-43.167 3.94a24.089 24.089 0 0 1-.044-.415l-1.6.131.178.036c.372.088.456.193.401.335l1.065-.088Zm-8.56.323c.004.053.51.011.504-.04-.004-.053-.51-.012-.504.04Zm-60.275 4.766c.004.053.495.014.49-.039-.008-.052-.495-.013-.49.04ZM96.284 2.95c0 .055.006.11.005.166h1.077c0-.055-.005-.11-.005-.166h-1.076Zm2.686.125.266.042.79-.124-.267-.042-.79.124Zm4.107 8.028c-.005-.056-.014-.11-.018-.166l-1.068.089c.005.055.012.11.019.165.356-.03.712-.06 1.067-.088Zm26.394-8.176c0 .055.005.11.005.166l.527-.001c0-.056-.003-.112-.005-.167l-.527.002ZM25.181 17.214c.004.052.516.012.51-.04-.008-.052-.517-.012-.51.04ZM138.07 8.64c.991-.3 2.183-.338 3.686-.498.546-.058.294-.19.804-.275-.534.003-1.086.012-1.626.017.095.048.196.095.298.142l-1.319.2c-.014-.054-.025-.109-.04-.163l-1.58.139c-.058.198-1.429.38-.223.438Zm12.235-6.03c-.348.114-.728.228-1.061.341l1.603-.012a12.353 12.353 0 0 0-.013-.334l-.529.005ZM19.428 16.74v.083l1.066-.006v-.084l-1.066.006Zm8.823-.13c-.574.104-1.117.004-1.87.01l1.349.159c.26-.044.523-.086.788-.13-.09-.012-.177-.026-.267-.04Zm2.4.113c0-.053-.503-.05-.5.002.001.053.503.05.5-.002Zm9.47-.533-1.609.004c-.117.121.147.217.289.309l.081.075c.072.078.165.152.765.11.153-.166.318-.332.475-.498Zm81.845-13.204c-.002-.053-.513-.052-.512 0 .001.053.514.052.512 0Zm40.665-.419c.54.036 1.093.071 1.671.132h.002c.195.097.393.191.654.32.016-.11.03-.22.041-.331-1.027-.133-1.601-.1-2.368-.12Zm.211 3.29c0 .053.529-.018.509-.069.005-.053-.527.019-.509.07ZM15.868 18.166c.272-.078.509-.153.77-.23l-1.062.086c.004.055.01.11.018.166l.274-.022Zm96.3-7.57c-.464-.044-.902-.091-1.358-.137a36.05 36.05 0 0 1-.261.063c.488.02.614.063.554.163l1.065-.089Zm-8.926-7.686h.004l.266.042.789-.125-.266-.041-.793.124Zm2.95.042c.083-.139.17-.278.254-.417l-1.621-.042c.458.153.914.306 1.367.46Zm-89.44 13.802c.446.001.857.002 1.242-.007a8.663 8.663 0 0 0 1.43-.133l-.804.036-.627-.04-.414-.026-.827.17ZM67.654 2.86l.799-.167-1.611-.083.812.25Zm42.538-.241-.528.333c1.027-.06 1.17-.174 1.066-.333h-.538Zm52.143 3.597c-.645-.004-1.269-.015-1.913-.027-.093.024-.178.048-.261.071.175.079.394.152.581.229.51-.086 1.07-.18 1.593-.273ZM20.662 17.866c.261-.077.526-.154.795-.23l-1.077.085c.004.055.008.11.018.166l.264-.021ZM135.337 2.858c-.002-.052-.502-.05-.501.003.002.053.504.05.501-.003Zm-27.965 8.139c-.005-.056-.012-.111-.018-.166l-.533.044c.005.055.012.11.019.166l.532-.044Zm-1.076.005-2.145.095c.005.056.012.111.019.166a18.877 18.877 0 0 1 2.144-.095 3.094 3.094 0 0 0-.018-.165Zm-94.905 5.36.007.25 1.336.079.267-.042c-.371-.096-.689-.192-1.074-.289l-.536.002Zm2.675.157c0 .055.003.11.006.166.345-.057.738-.114 1.068-.172l-1.074.006ZM102.698 2.62c-.97-.025-2.208.2-.785.238.478.012 1.019-.183.785-.238Zm-4.937 9.09a1.008 1.008 0 0 0-.01-.084l-1.064.088c.002.028.004.056.008.083l1.066-.088Zm-48.549 3.874a.973.973 0 0 0-.01-.083l-1.07.087a.968.968 0 0 0 .01.083c.355-.03.712-.058 1.07-.087Zm-27.642.975v.084l1.058-.006v-.083l-1.058.005ZM160.21 2.556c-.255.055-.548.111-.796.167h1.07c-.003-.056-.007-.112-.007-.167h-.267Zm-30.679 6.739c1.459-.288 2.881-.228 4.525-.39-.471-.039-.898-.082-1.349-.122l-3.464.37.288.142ZM42.764 2.709h-.535c-.002-.055-.006-.11-.006-.166.178 0 .356-.001.534 0 .003.055.007.11.007.166Zm29.419 11.309-2.13.216.498-.376-2.124.257c-.176.394 1.12.343 3.256.237.167-.111.332-.223.5-.334Zm28.354-11.653c-1.026.048-1.81.04-2.907.099-1.095.058-1.6.112-1.358.316h.003c1.008-.018 1.457-.211 2.515-.234 1.058-.023 1.672.11 1.747-.18ZM60.968 14.678c.004.052.509.012.502-.04-.004-.053-.507-.012-.502.04Zm81.846-11.922.542-.005c.098-.159-.068-.272-1.087-.324h-.003c.181.11.356.22.548.329Zm.303 5.227c-.002.053.514.007.508-.045-.005-.053-.52-.006-.508.045Zm-89.085 7.381c-.004-.055-.011-.11-.018-.165l-1.066.086c.004.055.011.11.018.166l1.066-.087Zm40.302 1.148c-.004-.052-.507-.054-.506-.002 0 .053.508.055.505.002ZM82.847 12.98c.005.052.51.01.504-.042-.004-.052-.51-.01-.504.042Zm37.13-2.542c.586-.013.619-.122 1.142-.165.921-.075 1.749-.156.941-.259-.788.124-1.572.245-2.367.369.519-.184 1.036-.366 1.548-.55-.697.116-1.405.231-2.116.347-.007-.056-.015-.11-.019-.166h-.002l-1.067.09c.004.055.009.11.018.166l1.07-.09c-.092.13.067.274.852.258Zm39.68-3.913a1.14 1.14 0 0 0-.012-.082c-.709.077-1.407.15-2.143.225.006.055.014.11.022.166a288.04 288.04 0 0 0 2.133-.31Zm-4.801.422c-.215.06 1.154.113 1.589-.017.201-.059-1.134-.113-1.589.017ZM66.022 14.31l-1.322.19a.968.968 0 0 0 .01.084 2173 2173 0 0 0 2.143-.09l-.831-.184Zm33.937-2.196c-.196-.065-.39-.132-.587-.198l-1.06-.084 2.682-.055c-1.348-.224-3.285-.053-4.252.39l.547.168 2.67-.22Zm54.609-9.577c.002-.052-.506-.049-.506.003.002.053.511.05.506-.003ZM43.378 16.306c-.004-.056-.013-.111-.018-.166l-1.078.086c.004.056.01.111.018.166l1.078-.086ZM156.712 2.524c.002-.052-.51-.05-.51.003.003.052.513.05.51-.003ZM40.704 16.394c.006.053.507.013.5-.04-.004-.052-.506-.011-.5.04Zm-4.273.468a3.69 3.69 0 0 0-.018-.166l-1.6.128h.003l.003.04c.491.048.838.074 1.612-.002ZM164.577 6.058c-.01-.054-.026-.108-.036-.162h-.004c-.379.127-.722.233-1.092.342.38-.054.734-.106 1.132-.18ZM27.118 17.771c.88-.082 1.416-.155 1.672-.248.166-.063.21-.137.16-.232l-.174.057-.88.277c-.73.03-1.384.055-2.136.087-.089.191.304.157 1.358.059Zm-1.353-.185c.003.052.524.01.517-.041-.007-.052-.525-.011-.517.041ZM154.37 7.442c-.747-.035-.589-.177-.593-.32-1.344.135-1.692.298-1.552.484.733-.055 1.399-.105 2.145-.164ZM139.598 2.45l1.064.158c-.001-.056-.006-.112-.006-.167l-1.058.01Zm9.712 5.597c1.456-.352-.115-.36-1.387-.374-.165.127-.339.255-.502.38.411-.026.937-.103 1.299-.119.612-.027.005.147.59.113Zm-46.709 3.472c.005.052.511.01.505-.042-.006-.053-.511-.01-.505.042Zm43.933-9.004c-.007-.052-.509-.048-.504.005 0 .052.502.048.504-.005Zm-50.858 9.786c-.01-.083-.02-.166-.028-.249l-.533.045.027.248.534-.044ZM18.86 16.367c-.001-.052-.505-.05-.501.003 0 .053.503.05.501-.003Zm2.689-.015c-.001-.052-.52-.049-.516.003 0 .053.518.05.516-.003Zm-8.034 2.507c-.105-.097.289-.182.507-.293l-1.051.087.028.249.516-.043Zm40.543-3.246-1.082-.08c.007.056.009.111.018.166l1.064-.086Zm-6.395.599c-.006-.083-.017-.166-.026-.249-.712.034-1.14.259-1.032.334l1.058-.085Zm-25.06.052c0-.053-.503-.05-.501.002 0 .053.503.05.502-.002Zm133.032-13.9c-.001-.053-.51-.05-.509.003.004.052.513.05.509-.003ZM90.34 12.74l-1.085-.079c.005.056.014.111.018.166l1.067-.087Zm-5.943.57c.536-.118-.681-.225-.924-.172-.537.118.68.225.924.171Zm74.787-6.316c.707-.053 1.151-.293 1.03-.364-.53.06-1.056.116-1.609.174.259.068.671.072.579.19Zm-53.367 4.784c.885.06 1.201-.158 1.098-.238.523-.047 1.048-.09 1.573-.136.079-.09.161-.18.243-.27-.448.08-.877.16-1.317.239-.774-.095-1.59.087-2.67.18.501-.006.913.214 1.073.225Zm-54.42 4.007c.004.052.51.011.504-.04-.005-.053-.51-.012-.504.04Zm30.951-2.306a3.713 3.713 0 0 0-.018-.166l-.534.045c.004.055.011.11.018.165l.534-.043Zm-63.495 4.906c.003.052.518.011.512-.041-.006-.052-.52-.011-.512.041Zm92.828-7.33c-.002-.028-.003-.056-.008-.083l-1.061.088c.003.028.004.056.009.083.354-.03.708-.06 1.06-.088Zm32.184-8.893c.001.056.006.111.006.167l.526-.005c0-.055-.003-.111-.006-.167l-.526.005Zm-3.357 6.597c.918.385 3.154-.095 1.315-.285l-.593.225-.722.06Zm-7.986.683c.474.045 1.762-.254 1.552-.274-.503-.042-1.76.254-1.552.274ZM51.949 15.91c.004.052.51.011.504-.041-.006-.052-.511-.011-.504.041ZM162.06 1.228c-1.54-.006-1.494.23-2.687.328-.092-.084-.182-.167-.277-.25a569 569 0 0 0-1.604.078l-1.883-.146c.183.082.344.165.539.247-1.961.039-3.915.082-5.877.125-.175.098-.353.196-.533.294 1.513.223 2.581-.013 4.282-.072.185.068.368.138.546.207l1.594-.053.289.164c2.01.019.618-.258 2.393-.26.19.069.374.138.55.208.253.013.55.026.809.04.722-.109 1.418-.216 2.157-.317.385.042.837.07 1.309.095.24.013.483.025.759.044.132.01.274.02.466.044.082.01.196.026.342.056.154.042.316.04.784.292.088.051.193.118.327.23.07.06.125.107.231.225.109.124.232.29.338.514.228.44.271 1.175.066 1.666a2.157 2.157 0 0 1-.545.819c-.258.239-.453.33-.524.369-.096.05-.176.083-.248.112-.208.08-.336.112-.445.142a8.744 8.744 0 0 1-.534.118c-.306.059-.582.103-.841.14-1.213.171-1.635.208-2.787.356h.004c-.61.077-1.67.181-2.379.254-.172.123-.36.087-.504.244-.143.157.611.087 1.664.016.427-.029.893.071 1.329.056.267-.138.521-.283.771-.423.89-.117 1.649-.254 2.274-.367.323-.058.591-.105.903-.163.154-.031.306-.054.577-.139a2.58 2.58 0 0 0 .292-.114c.066-.032.099-.045.217-.114.115-.07.25-.16.407-.305.086-.082.139-.129.268-.293.139-.18.285-.423.383-.727.221-.604.096-1.436-.166-1.88a2.448 2.448 0 0 0-.601-.74 3.141 3.141 0 0 0-.712-.442 5.264 5.264 0 0 0-.219-.097c-.134-.055-.184-.081-.253-.115-.128-.064-.164-.112-.197-.17-1.195-.112-1.693-.044-2.478-.036l-1.109.153c.171-.138.364-.276.533-.413ZM38.608 17.106l-1.077-.081.018.166 1.06-.085ZM155.742 7.6c.266-.068.512-.135.776-.203l-1.077-.019.032.249.269-.027Zm-13.511-6.006c.18.054.351.108.541.162-.874.035-1.794.07-2.669.107.27.108.534.217.821.325l5.066-.21a1.94 1.94 0 0 1 .041-.055c.054-.108-.17-.084-.822-.104-.76-.022-1.138-.072-1.875-.072 0-.055-.019-.109-.027-.163l-1.076.01Zm-16.078 8.825-.025-.118c-.538-.053-1.1-.104-1.623-.158.197.178.391.357.594.534l1.054-.258Zm-45.377 3.316c.005.052.511.01.505-.042-.006-.052-.511-.01-.505.042Zm67.742-5.613.002-.001-1.079.1c.005.055.012.11.02.165l.273-.025c.266-.08.526-.16.784-.24Zm-3.611-6.969c-.4.13-.71.257-1.069.385l1.593-.054c.012.054.025.107.04.161l2.649.065c-.186.113-.343.225-.515.338.506-.005 1.09-.008 1.603-.014.218-.157-.285-.22-.811-.32-.346-.065.008-.116-.366-.161-.356-.045-.9 0-1.277-.079-.376-.08.06-.17-.348-.246-.197-.037-1.207-.016-1.499-.075ZM49.293 16.332a.93.93 0 0 0-.01-.083l-1.07.086c.002.028.004.056.008.083l1.072-.086Zm97.127-7.768c-.005-.055-.015-.11-.02-.165l-1.061.264 1.081-.099Zm-11.191 1.077c-.007-.083-.02-.166-.029-.249l-1.615.14.028.249 1.616-.14Zm-14.937 1.277c-.007-.083-.021-.166-.027-.25-.714.038-1.156.265-1.044.34l1.071-.09ZM54.653 16.15c1.316-.103 2.568-.16 3.185-.425-1.104.117-2.035.271-3.195.341l.007.084h.003Zm88.563-7.214c-.004-.055-.012-.11-.019-.165l-.523.046c.004.056.012.11.019.166l.523-.047Zm-5.844.6 2.676-.15-.04-.332c-1.249.165-2.404.321-3.667.486l-.061.008.066.042.526.325c.167-.126.336-.252.5-.378ZM113.926 1.91c-.002-.052.509-.053.508 0 .003.052-.508.053-.508 0Zm45.455-.103h-.545c0-.055-.005-.11-.005-.166h.545c.003.055.005.11.005.166Zm-29.489 8.17c.007.052.505.01.499-.043-.004-.052-.505-.01-.499.043ZM68.437 1.799c-.003-.052.505-.052.506 0 .002.053-.506.053-.506 0Zm54.56.101c0-.052-.505-.051-.503.001 0 .053.505.052.503 0Zm36.776 5.451c.446-.076.895-.154 1.327-.232.084.005.184.007.278.01-.531.104-1.061.205-1.593.305-.006-.027-.009-.055-.012-.083Zm-5.846.93c1.957-.16 3.29-.446 3.688-.785-2.216.198-3.618.385-4.755.804.711-.096 1.422-.193 2.122-.29-.34.09-.69.18-1.055.271Zm-40.021 3.341c-.011-.11-.025-.22-.037-.331l-.534.044c.014.11.026.221.037.332l.534-.045Zm-10.697-9.754h-1.069c0-.056-.005-.112-.005-.167h1.069c.002.056.005.111.005.167Zm29.881 7.958a.766.766 0 0 0-.01-.083c-.351.03-.706.06-1.063.092a.775.775 0 0 0 .01.083l1.063-.092ZM66.826 1.715c-.003-.053.506-.052.507 0 .002.052-.507.052-.507 0Zm10.148-.117c.002.056.006.111.006.167l-1.07-.001.796-.166h.268Zm-5.228 13.209c.006.052.508.01.503-.042-.005-.052-.51-.01-.503.042Zm40.009-3.088c-.004-.056-.014-.11-.018-.166l-1.592.133c.004.055.014.11.018.166l1.592-.133Zm-11.189.972-.557-.163c-.355.03-.71.06-1.066.088l1.361.139.262-.064Zm-83.869 2.855c-.002-.053-.498-.05-.502.003.009.052.505.05.502-.003Zm98.836-14.013.536.25a629.17 629.17 0 0 1 1.6-.127c-.64-.118-1.199-.137-2.136-.123Zm7.456.089c-.465-.085-1.797.104-1.581.142.487.085 1.796-.104 1.581-.142Zm.005 9.402-.038-.332-1.064.216c.003.028.006.056.011.083l.823.056.268-.023Zm-28.34-9.368c-.003-.052.499-.052.501 0 .002.053-.5.053-.502 0Zm56.601 6.67c.006.053.516.005.508-.047-.003-.053-.514-.004-.508.048Zm-44.808 4.003c-.007-.083-.02-.166-.029-.248l-1.054.213.816.057.267-.022Zm35.767-2.884c.166-.126.327-.252.491-.378-.351.03-.71.063-1.073.095.012.11.028.221.042.331.181-.015.362-.032.54-.048Zm-48.563 4.027c.833-.047 2.228-.283 2.647-.427-.625-.068-1.205-.04-2.15.051l-.497.376Zm41.636-3.335c.161-.153.321-.306.479-.46-1.121.192-1.711.359-1.552.553.362-.03.719-.062 1.073-.093Zm23.025-8.62c0-.052.5-.054.5-.002.006.053-.495.055-.5.002Zm-86.699-.173c0 .083.007.166.01.25h.537c-.002-.084-.004-.167-.009-.25h-.538Zm-32.978 14.01c-.002-.053-.509-.05-.506.002.003.052.508.05.506-.002ZM165.19 7.207a3.674 3.674 0 0 0 .613-.14c.072-.024.143-.047.286-.108.066-.029.138-.062.218-.104.067-.036.196-.104.375-.233a2.947 2.947 0 0 0 .447-.397c.058-.064.098-.106.208-.252.386-.477.739-1.535.485-2.443-.221-.887-.758-1.365-.9-1.496a2.984 2.984 0 0 0-.507-.368 3.255 3.255 0 0 0-.955-.37c-.191-.041-.272-.05-.389-.066a5.68 5.68 0 0 0-.469-.035c-.269-.01-.526-.01-.874-.023h-.004c.226.056.467.097.761.14.137.022.3.043.507.079.103.018.214.036.397.08.169.05.391.068.928.365a2.824 2.824 0 0 1 1.096 1.156c.285.515.395 1.403.174 2.044a2.75 2.75 0 0 1-.388.787c-.175.235-.207.255-.299.352-.703.618-.778.524-.973.632-.266.101-.403.128-.503.15-.236.05-.335.053-.453.06-.19 0-.289-.039-.212-.145-.404.147-.769.27-1.129.392.451-.008.961.024 1.56-.057Zm-47.539 4.185c-.004-.056-.014-.111-.018-.167l-.532.046c.004.055.011.11.018.165l.532-.044Zm12.814-9.886c0 .055.005.111.005.166l1.089-.003c-.272-.055-.55-.11-.829-.164l-.265.001Zm-21.898 10.563c-.003-.028-.004-.056-.009-.083l-1.595.133.01.082 1.594-.132Zm-48.003 3.938c-.902.018-1.798.034-2.69.05.006.084.017.167.026.25l2.664-.3Zm-4.799.472c-.007-.083-.019-.166-.028-.249a6.848 6.848 0 0 0-1.582.254c.49.046.842.072 1.61-.005Zm46.948-3.965c.004.052.511.01.505-.042-.005-.053-.511-.01-.505.042Zm-4.268.478c-.363-.025-.729-.05-1.088-.077l.018.166 1.07-.089Zm12.781-11.499.8.125.263-.041a729.41 729.41 0 0 0-.799-.125l-.264.041Zm-75.214 16.49c-.004-.056-.01-.11-.018-.166l-1.045.25 1.063-.084Zm91.259-7.24c2.153-.174.553-.3-.028-.248l.028.249ZM73.213 1.47c-.001-.052-.507-.052-.505 0 0 .053.508.053.505 0Zm89.308 5.858c.013.052.536-.016.519-.067 0-.052-.526.016-.519.067Zm-50.2 4.47c.005.052.515.01.508-.043-.006-.052-.515-.01-.508.043Zm29.362-10.324c-.002-.052-.51-.048-.508.005.004.052.51.048.508-.005ZM101.117 12.73c.005.052.512.01.505-.042-.004-.053-.513-.01-.505.042Zm-49.088 4.05c-.004-.055-.011-.11-.018-.165l-.534.043.018.166.534-.044Zm-2.124.046c.008.052.508.012.502-.04-.006-.052-.504-.012-.502.04ZM67.602 1.092c-.827.024-1.62.052-2.403.081.304.14 2.299.334 3.137.241.633-.07-.267-.287-.734-.322Zm54.325.351.003.084 1.069-.002c0-.028 0-.056-.002-.084l-1.07.002ZM79.782 14.611c-.004-.056-.011-.11-.018-.166-.355.03-.71.057-1.066.087l.82.1.264-.021Zm7.886-13.336c0 .056.005.111.005.167h.537c0-.055-.002-.11-.005-.166l-.537-.001Zm64.681 7.2c0 .052.522.002.512-.05-.003-.052-.528-.002-.512.05Zm-1.061.1c.006.052.516.004.508-.048-.003-.053-.514-.004-.508.048Zm-48.556 4.23c-.005-.056-.014-.11-.019-.166l-.533.044c.004.056.011.111.018.166l.534-.044Zm17.045-11.442c0 .028-.001.056.002.083h1.058c0-.029-.001-.057-.003-.084l-1.057.001Zm.027 10.014a.778.778 0 0 0-.01-.083l-1.076.091c.002.028.004.056.009.083l1.077-.09ZM86.058 1.275c0 .027.003.055.003.083h1.074c0-.027 0-.055-.002-.083h-1.075ZM48.31 17.248a3.865 3.865 0 0 0-.017-.167c-.178.015-.356.03-.533.043.005.056.011.11.018.166l.532-.042Zm70.398-16.05c0 .055.004.11.004.166h.534c0-.056-.004-.112-.004-.167h-.534Zm-43.364.024c0-.053-.506-.053-.505 0 0 .052.507.052.505 0Zm75.415 7.612c-.519.02-1.069.044-1.614.066.005.055.013.11.02.166.546-.023 1.095-.047 1.614-.067a3.079 3.079 0 0 0-.02-.165Zm-89.117 7.253-1.061.086c.27.034.544.068.815.1l.264-.02c-.005-.055-.014-.11-.018-.166Zm80.59-6.476a.774.774 0 0 0-.01-.083l-1.083.097c.003.027.006.055.011.082l1.082-.096ZM162.052.895c-1.296-.026-2.132.03-2.155.244 1.279.015 2.138-.03 2.155-.244Zm-39.069.213c0 .055.004.111.004.167l1.043-.168h-1.047Zm1.116 10.157c-.004-.055-.011-.11-.018-.165l-1.067.09.821.097.264-.022Zm-50.7 4.034a.968.968 0 0 0-.01-.083c-.355.03-.711.059-1.066.087a.968.968 0 0 0 .01.083l1.066-.087Zm84.326-7.103c.011.052.524-.001.515-.053-.002-.052-.52.001-.515.053Zm-52.409-7.161c0 .055.005.111.005.166.542.017 1.757-.054 1.608-.166h-1.613Zm-7.904 12.377c-.002-.027-.004-.055-.008-.083l-1.065.088a.966.966 0 0 0 .01.083l1.063-.088Zm-10.113 1a3.867 3.867 0 0 0-.018-.166c-.68.072-1.008.035-1.61.05.01.082.02.165.028.248l1.6-.132Zm38.932-3.37-.273-.019-.796.194.275.018.794-.194ZM73.198 1.052c0-.052-.508-.053-.507 0 0 .052.508.052.507 0Zm-52.08 18.532a3.69 3.69 0 0 0-.018-.165l-1.057.084c.265.034.533.069.808.103l.267-.022ZM138.43 1.04h-.008c-.325.005-.657.01-1 .013 0 .028.001.056.003.083a820.283 820.283 0 0 0 1.578-.013c.088-.112.173-.224.258-.335l-.831.252ZM65.417 15.99c.004.053.51.012.504-.04-.005-.053-.51-.012-.504.04ZM97.283 1.074c0-.053-.51-.053-.508 0 0 .052.51.052.508 0Zm2.15 0 .265.042.796-.125-.274-.041-.787.125Zm41.757 8.964c.805-.13 1.187-.279 2.119-.356-.003-.028-.006-.056-.011-.083h-.001l-2.138.19.031.25Zm-40.026 3.232c-.005-.056-.014-.111-.018-.166l-1.046.253 1.064-.087ZM76.401.973c0-.053-.504-.054-.502-.001.002.052.503.053.502 0Zm39.714 11.008c.007.052.514.01.507-.043-.004-.052-.512-.01-.507.043Zm-56.022 4.525c.004.052.515.01.507-.041-.003-.053-.513-.012-.507.04Zm44.282-3.419a3.098 3.098 0 0 0-.018-.166l-.53.044c.004.056.011.111.018.166l.53-.044ZM118.161.947c0 .029.001.056.003.084l1.071-.001c0-.028 0-.056-.002-.084l-1.072.002Zm5.422 10.487-.272-.019-.791.193.274.018.789-.192Zm-3.176.478c.597-.087.892-.176 1.579-.217l-.812-.098c-.532.12-.877.204-.767.315ZM140.575.9c-.004-.052-.496-.048-.496.005.004.052.498.048.496-.005Zm8.581-.198c.345.053.723.106 1.08.159 0-.056-.003-.112-.006-.167L149.156.7ZM112.253.91c.001-.053-.502-.053-.5 0 .003.052.502.052.5 0Zm43.322-.13c0-.053-.511-.05-.512.003.003.052.517.05.512-.003Zm-35.289.124.262.04.813-.125-.274-.042c-.273.042-.544.085-.801.127ZM71.58.802c0-.053-.506-.054-.504-.001 0 .052.505.053.504 0Zm34.932 12.107-1.066.089c.004.055.011.11.018.165l.266-.021.782-.233Zm-4.247.395c.007.052.51.01.504-.042-.004-.052-.51-.01-.504.042ZM60.349.502c.04.096.294.165.543.25h-1.07l.022-.115-1.102-.135c.536.001 1.072-.003 1.607 0Zm6.95.213c0-.053-.509-.053-.508 0 0 .052.51.052.508 0Zm58.348.055c0 .027.003.055.003.083.358 0 .713-.002 1.063-.003a1.15 1.15 0 0 0-.003-.083l-1.063.003Zm25.183 8.643c-.005-.055-.013-.11-.02-.165l-.525.049c.007.055.012.11.02.165l.525-.049Zm-9.067.7c.009.052.518.006.51-.046-.005-.052-.516-.006-.51.046Zm-16.549 1.434c.009.052.519.008.512-.044-.005-.052-.518-.008-.512.044Zm10.571-10.9-1.05.006c0-.028-.004-.056-.004-.084l1.05-.006a.768.768 0 0 1 .004.083ZM64.079.462c0-.053-.508-.053-.506 0 0 .052.509.052.506 0Zm70.109.11-1.599.007c0-.028-.004-.056-.004-.084l1.601-.007c.003.027.002.055.002.083ZM65.681.38c0-.052-.507-.053-.505 0 0 .052.507.053.505 0Zm2.142.001c0-.052-.51-.052-.507 0 0 .053.51.053.507 0Zm32.868 13.555c.007.052-.498.094-.503.041-.005-.052.499-.094.503-.041Zm1.619-.092.535-.044c.007.055.014.11.019.166l-.535.045c-.007-.056-.014-.112-.019-.167Z"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 62px;
  right: 0;
}
.team h2 br {
  display: none;
}
@media screen and (max-width: 1400px) {
  .team h2 {
    font-size: 48px;
    line-height: 1.2;
  }
  .team h2:after {
    top: 58px;
  }
}
@media screen and (max-width: 1300px) {
  .team h2 {
    font-size: 42px;
  }
  .team h2:after {
    top: 52px;
  }
}
@media screen and (max-width: 1120px) {
  .team h2 {
    font-size: 36px;
  }
  .team h2:after {
    top: 46px;
  }
}
@media screen and (max-width: 992px) {
  .team h2 {
    font-size: 32px;
  }
  .team h2:after {
    top: 42px;
  }
}
@media screen and (max-width: 860px) {
  .team h2 {
    font-size: 24px;
  }
  .team h2:after {
    top: 34px;
  }
}
@media screen and (max-width: 650px) {
  .team h2 {
    text-align: center;
    display: block;
    margin: 0 auto 40px;
  }
  .team h2 br {
    display: initial;
  }
  .team h2:after {
    top: 60px;
    width: 111px;
    right: 15%;
  }
}
@media screen and (max-width: 375px) {
  .team h2 {
    font-size: 20px;
  }
  .team h2:after {
    right: 10%;
  }
}
.team .problem-image {
  max-width: 537px;
  margin: 0 36px 0 0;
  position: relative;
}
.team .problem-image img {
  box-shadow: 4px 4px 0px #FF41DF;
  border-radius: 10px;
}
.team .problem-image svg {
  position: absolute;
  bottom: 80px;
  right: 80px;
  transform: translateY(100%);
}
.team .item {
  color: #000;
  border-radius: 6px;
  padding: 5px 15px 44px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.team .item + .item {
  margin-left: 16px;
}
.team .item:after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  top: -5px;
  right: -5px;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="58" height="58" fill="none"><g clip-path="url(%23a)"><path fill="%23000" fill-opacity=".6" stroke="%23fff" d="M53 1H5a4 4 0 0 0-4 4v6.967a4 4 0 0 0 1.172 2.829l41.032 41.032A4 4 0 0 0 46.033 57H53a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h58v58H0z"/></clipPath></defs></svg>') no-repeat center;
}
.team .item p {
  margin: 0;
}
.team .item p:first-child {
  margin-bottom: 12px;
}
.team .flex-column {
  width: 100%;
  max-width: 725px;
}
.team .flex-column .flex {
  width: 100%;
  justify-content: space-between;
}
.team .flex-column .flex:first-child {
  margin-bottom: 20px;
}
.team .flex-column .flex:first-child .item {
  width: 340px;
  height: 162px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="340" height="162" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M334 0a6 6 0 0 1 6 6v103.71l-23.539 14.113a1 1 0 0 0 .017 1.725L340 139.058V156a6 6 0 0 1-6 6H200.663l-15.324-11.616a1 1 0 0 0-.605-.203H0V6a6 6 0 0 1 6-6h328Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h340v162H0z"/></clipPath></defs></svg>') no-repeat top center;
}
.team .flex-column .flex:nth-child(2) .item {
  width: 214px;
  height: 175px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="214" height="167" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M208 0a6 6 0 0 1 6 6v128.111l-18.437 10.474a1 1 0 0 0 .017 1.747L214 156.355V161a6 6 0 0 1-6 6h-81.7l-9.514-11.812a1.004 1.004 0 0 0-.779-.373H0V6a6 6 0 0 1 6-6h202Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h214v167H0z"/></clipPath></defs></svg>') no-repeat top center;
}
.team .items-tablet, .team .items-mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .team .problem-image {
    margin-bottom: 80px;
    max-width: calc(50% - 8px);
  }
  .team .flex-column {
    max-width: calc(50% - 8px);
  }
  .team .flex-column > .flex {
    flex-direction: column;
  }
  .team .flex-column .flex:first-child .item {
    width: 100%;
    height: auto;
    margin: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="383" height="117" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M377 0a6 6 0 0 1 6 6v62.635l-26.26 13.67a1 1 0 0 0 .016 1.782L383 97.174V111a6 6 0 0 1-6 6H226.041l-17.357-8.436a1.002 1.002 0 0 0-.437-.1H0V6a6 6 0 0 1 6-6h371Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h383v117H0z"/></clipPath></defs></svg>') top center no-repeat;
    background-size: contain;
    aspect-ratio: 383/117;
    padding: 14px 8px 32px 8px;
  }
  @supports not (aspect-ratio: 383/117) {
    .team .flex-column .flex:first-child .item {
      background-color: red;
    }
  }
  .team .flex-column .flex:first-child .item + .item {
    margin-top: 12px;
  }
  .team .flex-column .flex:nth-child(2) {
    display: none;
  }
  .team .items-tablet {
    display: flex;
  }
  .team .items-tablet .item {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="236" height="147" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M229.31 0a6 6 0 0 1 6 6v107.699l-19.947 9.072c-.788.358-.779 1.481.015 1.827l19.932 8.681V141a6 6 0 0 1-6 6h-90.433l-10.499-10.435a1.001 1.001 0 0 0-.705-.291H0V6a6 6 0 0 1 6-6h223.31Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h236v147H0z"/></clipPath></defs></svg>') top center no-repeat;
    background-size: contain;
    aspect-ratio: 236/147;
    width: calc(100% - 24px);
    height: auto;
    padding: 14px 8px 42px;
  }
  .team .items-tablet .item + .item {
    margin-left: 36px;
  }
}
@media screen and (max-width: 768px) {
  .team {
    margin: 70px auto 0;
  }
  .team .problem-image {
    max-width: 460px;
    margin: 0 auto 80px;
  }
  .team .flex-column, .team .items-tablet {
    display: none;
  }
  .team .items-mobile {
    display: flex;
    padding: 12px 15px;
    max-width: 100vw;
    overflow-x: scroll;
    margin: 0 -15px;
  }
  .team .items-mobile .item {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="194" height="158" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M188.557 0A5.444 5.444 0 0 1 194 5.444v98.535l-13.684 8.253a.908.908 0 0 0 .015 1.563L194 121.691v30.866a5.443 5.443 0 0 1-5.443 5.443h-74.26l-8.505-10.884a.907.907 0 0 0-.715-.348H0V5.444A5.445 5.445 0 0 1 5.444 0h183.113Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h194v158H0z"/></clipPath></defs></svg>') top center no-repeat;
    background-size: contain;
    min-width: 192px;
    width: 192px;
    height: auto;
    aspect-ratio: 97/79;
  }
  .team .items-mobile .item + .item {
    margin-left: 25px;
  }
}

/* Vacancies styles */
.vacancies {
  margin: 60px auto 0;
  padding: 90px 0 0 0;
}
.vacancies .flex {
  align-items: flex-start;
}
.vacancies .vacancies-image {
  width: 396px;
  height: 396px;
  box-shadow: 4px 4px 0px #FF41DF;
  border-radius: 10px;
  margin-right: 36px;
}
.vacancies .flex-column {
  width: 100%;
}
.vacancies details summary::-webkit-details-marker {
  display: none;
}
.vacancies .vacancy {
  width: 100%;
  margin-bottom: 20px;
}
.vacancies .vacancy p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.vacancies .vacancy h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FF41DF;
}
.vacancies .vacancy[open] summary .button:before {
  transform: translate(-100%, -50%) scale(1, -1);
}
.vacancies .vacancy summary {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.vacancies .vacancy summary h3, .vacancies .vacancy summary p, .vacancies .vacancy summary .button {
  margin: 0;
}
.vacancies .vacancy summary span {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #BDFD02;
  margin-right: 20px;
  white-space: nowrap;
}
.vacancies .vacancy summary h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 auto 0 20px;
}
.vacancies .vacancy summary .vacancy-helper {
  width: 420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vacancies .vacancy summary p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.vacancies .vacancy summary .button {
  padding: 7px 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #FF41DF;
  transition: background 0.3s, color 0.3s;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #FF41DF 50.1%, #FF41DF 100%);
  background-size: 100% 200%;
  border-radius: 54px;
  position: relative;
}
.vacancies .vacancy summary .button:hover, .vacancies .vacancy summary .button:focus {
  background-position: bottom;
  color: #fff;
}
.vacancies .vacancy summary .button:active {
  background: linear-gradient(180deg, #A42A8F 0%, #A42A8F 100%);
  color: #fff;
}
.vacancies .vacancy summary .button:before {
  content: "";
  width: 23px;
  height: 22px;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  left: -20px;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none"><g fill="%23fff" clip-path="url(%23a)"><path d="M3.856 19.167h15.333V3.9H23V23H3.856v-3.833ZM0 0v3.811h3.878V.001H0ZM3.856 3.856v3.81h3.81v-3.81h-3.81ZM7.69 7.734v3.81h3.81v-3.81H7.69Z"/><path d="M11.545 11.545v3.81h3.81v-3.81h-3.81Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h23v23H0z"/></clipPath></defs></svg>') no-repeat center center;
}
@media screen and (max-width: 1400px) {
  .vacancies .vacancies-image {
    width: 360px;
    height: auto;
  }
  .vacancies .vacancy h4, .vacancies .vacancy p, .vacancies .vacancy ul {
    font-size: 16px;
    line-height: 1.2;
  }
  .vacancies .vacancy summary .vacancy-helper {
    width: 320px;
  }
  .vacancies .vacancy summary span, .vacancies .vacancy summary h3, .vacancies .vacancy summary p, .vacancies .vacancy summary .button {
    font-size: 16px;
    line-height: 1.2;
  }
  .vacancies .vacancy summary h3 {
    margin-left: 10px;
  }
  .vacancies .vacancy summary .button {
    padding: 6px 10px;
  }
  .vacancies .vacancy summary .button:before {
    width: 18px;
    height: 19px;
  }
}
@media screen and (max-width: 1300px) {
  .vacancies .vacancies-image {
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 1200px) {
  .vacancies .vacancies-image {
    width: 250px;
    height: auto;
  }
}
@media screen and (max-width: 1100px) {
  .vacancies .vacancies-image {
    width: 200px;
    height: auto;
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .vacancies .vacancies-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .vacancies {
    margin-top: -20px;
  }
  .vacancies h2 {
    margin-bottom: 36px;
  }
  .vacancies .container > .flex {
    flex-direction: column;
  }
  .vacancies .vacancy summary {
    justify-content: space-between;
    width: 100%;
  }
  .vacancies .vacancy summary .vacancy-helper {
    width: auto;
    padding-left: 50px;
  }
  .vacancies .vacancy summary .vacancy-helper p {
    display: none;
  }
  .vacancies .vacancies-image {
    display: block;
    order: 1;
    max-width: 460px;
    margin: 40px auto 0;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .vacancies .vacancy summary {
    flex-wrap: wrap;
    padding-right: 36px;
  }
  .vacancies .vacancy summary h3 {
    max-width: calc(100% - 100px);
  }
  .vacancies .vacancy summary .vacancy-helper {
    min-width: 100%;
    justify-content: flex-end;
    margin-top: 12px;
  }
  .vacancies .vacancy summary .vacancy-helper .button {
    margin-right: -36px;
  }
  .vacancies .vacancy summary .vacancy-helper .button:before {
    top: initial;
    bottom: 100%;
    transform: translateY(-100%);
    left: initial;
    right: 0;
  }
  .vacancies .vacancy[open] summary .button:before {
    transform: translateY(-100%) scale(1, -1);
  }
}

/* Referral styles */
@media screen and (min-width: 1415px) {
  html[lang=en] .referral .referral-example p:nth-of-type(2) {
    font-size: 36px;
  }
}
@media screen and (max-width: 1415px) and (min-width: 1300px) {
  html[lang=en] .referral .referral-example p:nth-of-type(2) {
    font-size: 28px;
  }
}
@media screen and (max-width: 1145px) and (min-width: 991px) {
  html[lang=en] .referral .referral-example p:nth-of-type(2) {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) and (min-width: 767px) {
  html[lang=en] .referral .referral-example p:nth-of-type(2) {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) and (min-width: 360px) {
  html[lang=uk] .referral .referral-example p:nth-of-type(1) {
    font-size: 20px;
  }
}
.referral {
  margin: 10px 0 0;
  padding: 90px 0 0;
}
.referral .container {
  position: relative;
}
.referral .decorations-arrows {
  position: absolute;
  width: 167px;
  top: 80px;
  right: 72px;
  pointer-events: none;
}
.referral .referral-header {
  padding: 18px 30px 18px 25px;
  max-width: 582px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="598" height="117" fill="none"><path stroke="%23BDFD02" stroke-width="2" d="M0 116h597V41L550.137 1H0"/></svg>') no-repeat center right;
  background-size: auto 100%;
}
.referral .referral-header h2 {
  margin: 0;
}
.referral .referral-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
}
@media screen and (max-width: 576px) {
  .referral .referral-header p {
    margin: 6px 0 0 0;
  }
}
@media screen and (max-width: 400px) {
  .referral .referral-header {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="540" height="127" fill="none"><path stroke="%23BDFD02" stroke-width="2" d="M.5 126H539V44.478L487.682 1H.5"/></svg>');
    background-position: right center;
    margin-left: -15px;
    padding: 20px 30px;
  }
}
.referral .referral-subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  margin: 50px 0 50px 90px;
}
.referral .referral-subtitle img {
  width: 125px;
  display: inline-block;
  vertical-align: middle;
}
.referral .referral-subtitle strong {
  font-weight: 900;
}
.referral .item {
  position: relative;
}
.referral .item:after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  pointer-events: none;
}
.referral .referral-steps {
  margin-left: 90px;
}
.referral .referral-steps .item {
  padding: 54px 27px 54px 56px;
  border-radius: 6px;
  width: 350px;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="350" height="175" fill="none"><g clip-path="url(%23a)"><path fill="%23FF41DF" stroke="%23000" d="M6 .5h338a5.5 5.5 0 0 1 5.5 5.5v157.237L334.588 174.5H14.803l-6.574-4.965L.5 163.698V6A5.5 5.5 0 0 1 6 .5Z"/><path stroke="%239D1F88" d="M13 5.5h324a5.5 5.5 0 0 1 5.5 5.5v147.893l-7.115 5.278-.541.401-6.643 4.928H21.214L7.5 159.327V11A5.5 5.5 0 0 1 13 5.5Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h350v175H0z"/></clipPath></defs></svg>') top center no-repeat;
  background-size: contain;
  aspect-ratio: 2/1;
}
.referral .referral-steps .item a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}
.referral .referral-steps .item a:hover, .referral .referral-steps .item a:active, .referral .referral-steps .item a:focus {
  text-decoration: underline;
}
.referral .referral-steps .item:before {
  content: attr(data-number);
  font-style: normal;
  font-weight: 900;
  font-size: 150px;
  line-height: 180px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -55px;
}
.referral .referral-steps .item:after {
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="none"><g clip-path="url(%23a)"><path fill="%23E812C4" fill-opacity=".7" d="M96 0H4a4 4 0 0 0-4 4v16.887a4 4 0 0 0 1.172 2.828l75.113 75.113A4 4 0 0 0 79.114 100H96a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h100v100H0z"/></clipPath></defs></svg>') no-repeat center;
}
.referral .referral-steps .item + .item {
  margin-left: 110px;
}
.referral .referral-steps .item p {
  margin: 0;
}
@media screen and (max-width: 1400px) {
  .referral .referral-steps .item {
    width: 33%;
    height: auto;
    padding: 20px 20px 20px 56px;
  }
  .referral .referral-steps .item:before {
    font-size: 100px;
    left: -40px;
  }
}
@media screen and (max-width: 1200px) {
  .referral .referral-steps {
    margin: 0;
  }
  .referral .referral-steps .item {
    font-size: 18px;
    line-height: 1.2;
    margin-left: 18px;
    padding: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="234" height="110" fill="none"><g clip-path="url(%23a)"><path fill="%23FF41DF" d="M0 6.275a6 6 0 0 1 6-6h221.329a6 6 0 0 1 6 6v96.506l-5.081 3.61-5.082 3.609H9.756l-4.472-3.176L0 103.07V6.275Z"/><path stroke="%239D1F88" d="M10.86 4.337h213.228a5.5 5.5 0 0 1 5.5 5.5v90.253l-4.69 3.25-4.776 3.31H14.435l-3.595-2.49-5.48-3.797V9.837a5.5 5.5 0 0 1 5.218-5.493l.283-.007Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h234v110H0z"/></clipPath></defs></svg>') top center no-repeat;
    background-size: contain;
    aspect-ratio: 233/109;
    height: auto;
  }
  .referral .referral-steps .item + .item {
    margin-left: 36px;
  }
  .referral .referral-steps .item:before {
    font-size: 60px;
    line-height: 1;
    left: -24px;
  }
  .referral .referral-steps .item:after {
    width: 67px;
    height: 62px;
    background-size: contain;
  }
}
@media screen and (max-width: 996px) {
  .referral .referral-steps .item {
    font-size: 16px;
  }
}
@media screen and (max-width: 860px) {
  .referral .referral-steps .item {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .referral .referral-steps {
    margin-top: -20px;
  }
  .referral .referral-steps .item {
    font-size: 16px;
    margin: 0;
    padding: 20px 8px 20px 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="311" height="106" fill="none"><g clip-path="url(%23a)"><path fill="%23FF41DF" d="M0 6a6 6 0 0 1 6-6h298.81a6 6 0 0 1 6 6v93.026l-6.768 3.487-6.769 3.487H12.996l-5.957-3.068L0 99.305V6Z"/><path stroke="%239D1F88" d="M12.453 3.5h286.98a5.5 5.5 0 0 1 5.5 5.5v87.112l-12.641 6.388H19.072l-5.622-2.84-6.497-3.284V9a5.5 5.5 0 0 1 5.5-5.5Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h311v106H0z"/></clipPath></defs></svg>') top center no-repeat;
    background-size: contain;
    aspect-ratio: 311/106;
    width: 100%;
    max-width: 311px;
  }
  .referral .referral-steps .item + .item {
    margin: 20px auto 0 auto;
  }
  .referral .referral-steps .item:before {
    font-size: 80px;
  }
  .referral .referral-steps .item:after {
    width: 62px;
    height: 61px;
  }
}
.referral .referral-content {
  align-items: flex-start;
}
.referral .referral-conditions {
  margin-right: 160px;
  margin-left: 90px;
}
.referral .referral-conditions > div {
  margin-bottom: 20px;
}
.referral .referral-conditions .item {
  padding: 25px;
  width: 350px;
  height: 134px;
  border-radius: 6px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="350" height="134" fill="none"><g clip-path="url(%23a)"><path fill="%23BDFD02" d="M0 6a6 6 0 0 1 6-6h338a6 6 0 0 1 6 6v119.184l-7.622 4.408-7.622 4.408H14.634l-6.707-3.879L0 125.537V6Z"/><path stroke="%2383A912" d="M13 4.5h324a5.5 5.5 0 0 1 5.5 5.5v111.419l-7.063 4.001-7.203 4.08H21.18l-6.324-3.582-7.356-4.167V10A5.5 5.5 0 0 1 13 4.5Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h350v134H0z"/></clipPath></defs></svg>') no-repeat top center;
}
.referral .referral-conditions .item:after {
  width: 76px;
  height: 76px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="76" height="76" fill="none"><g clip-path="url(%23a)"><path fill="%23A6DB0C" fill-opacity=".7" d="M72 0H4a4 4 0 0 0-4 4v11.476a4 4 0 0 0 1.172 2.829l56.523 56.523A4 4 0 0 0 60.525 76H72a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h76v76H0z"/></clipPath></defs></svg>') no-repeat center;
}
.referral .referral-conditions .item strong {
  display: block;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #111111;
}
.referral .referral-conditions .item p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #111111;
  margin: 0;
}
.referral .referral-conditions .item:last-of-type {
  margin-bottom: 8px;
}
.referral .referral-conditions .item-details {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #A1A1A1;
}
@media screen and (max-width: 360px) {
  .referral .referral-conditions .item {
    background-size: contain;
    width: 100%;
    height: auto;
    aspect-ratio: 350/134;
    padding: 8px;
  }
  .referral .referral-conditions .item p {
    font-size: 16px;
    line-height: 1.2;
  }
}
.referral .referral-example {
  display: none !important;
  border-radius: 6px;
  color: #000;
  padding: 56px 59px 32px 36px;
  width: 100%;
  width: 754px;
  position: relative;
  aspect-ratio: 754/307;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="754" height="307" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M748 0a6 6 0 0 1 6 6v163.992a7.999 7.999 0 0 1-5.713 7.666l-34.241 10.213c-4.79 1.429-4.751 8.225.055 9.599l34.097 9.741a8.002 8.002 0 0 1 5.802 7.693V301a6 6 0 0 1-6 6H430.795a8 8 0 0 1-8-8v-35c0-16.569-13.432-30-30-30H8a8 8 0 0 1-8-8V6a6 6 0 0 1 6-6h742Z"/><path stroke="%23000" stroke-dasharray="4 4" d="M695.004 203H44"/><path fill="url(%23b)" d="M694 246h60v60h-60z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h754v307H0z"/></clipPath><pattern id="b" width="1" height="1" patternContentUnits="objectBoundingBox"><use xlink:href="%23c" transform="scale(.00093)"/></pattern><image xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABDgAAAQ4CAYAAADsEGyPAAAACXBIWXMAAC4jAAAuIwF4pT92AAAGOmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDEgNzkuMTQ2Mjg5OTc3NywgMjAyMy8wNi8yNS0yMzo1NzoxNCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI1LjMgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTAyLTI2VDExOjM1OjQwKzAyOjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0wMi0yN1QxNzoxNjoxNiswMjowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0wMi0yN1QxNzoxNjoxNiswMjowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MGE0NWYyYWEtZGY2Yi00YzBlLThhMmQtOGFiYjNjODU4ZWIyIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6Njk1YjExNDUtN2M5ZC1lZDQzLThlYmYtZDM1MTlhZGI2ZGRmIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6NDIyYTIzNjQtYzZkZC00ZjZkLWFlMmQtZTIzMTE3ZmNiMzg5Ij4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MjJhMjM2NC1jNmRkLTRmNmQtYWUyZC1lMjMxMTdmY2IzODkiIHN0RXZ0OndoZW49IjIwMjQtMDItMjZUMTE6MzU6NDArMDI6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNS4zIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjb252ZXJ0ZWQiIHN0RXZ0OnBhcmFtZXRlcnM9ImZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmciLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjBhNDVmMmFhLWRmNmItNGMwZS04YTJkLThhYmIzYzg1OGViMiIgc3RFdnQ6d2hlbj0iMjAyNC0wMi0yN1QxNzoxNjoxNiswMjowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI1LjMgKE1hY2ludG9zaCkiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rvcnk+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+f3sy4AAAIbFJREFUeJzt3THI5ded3+HfG0bFEYwlTNwOGNdS4RR2EXAqkVLF7ha7jYo02WIrw0qQckEyuEqx26RQky3WKVQGV1lIsQ5kC6k2hmkNRmODTqHiptjXqaQ7I2lH535mngfe/ssp5n/53P+Ze3e5XAYAAACg7N+cHgAAAADwTQkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQN6D0wOAtrXW92bm0ekdV/x27/349AgAOG2t9f2Z+e7pHVf8Zu/9u9MjgC6BA/im/mRm/vb0iCv+bmb+8vQIALgBfzMzf356xBV/MTN/f3oE0OWKCgAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkHd3uVxObwCuWGt9ODOvnt5xxQ9m5oenR1zx65n559MjnuKdvfdnp0cA8PWttR7NzM9P73iKH83Mo9MjrvjVzDw+PeKKx3vvn54eAXw5gQNu3Frr05l57fQOnqvX995PTo8A4Otba70xMx+f3sFz9cne+83TI4Av54oKAAAAkCdwAAAAAHkPTg8AgJfVWuv3pzc8o4d777vTI76IMwQA/kjgAIBzHp4e8AJwhgDAzLiiAgAAALwABA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8h6cHgC3aK314cy8enrHvVvZwfPz4Vrr89Mj7r2z9/7s9AiAZ7HWejQzPz+9495rpwfw3D1aa/3D6RH3Hu+9f3p6BNyau8vlcnoD3Jy11qfjgwovp9f33k9Oj3hZrLUyD+G9993pDV/EGb7c1lpvzMzHp3fAAZ/svd88PQJujSsqAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnp+JBYBz/nB6wDN6eHrAFc4QAJgZgQMAjtl7f+f0hjpnCAD8kSsqAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQN6D0wPgRr0zM6+cHnHvw5l59fQInqt3Zuaz0yPu3coOgGfxeGb+7PSIe49m5uenR/BcPZ6Zn54ece/J6QFwi+4ul8vpDcAVa61PZ+a10zt4rl7fe/ugAhC21npjZj4+vYPn6pO995unRwBfzhUVAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8h6cHgAA3Ja11rsz8/7pHV/TB3vv906PAAC+fd7gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIO/B6QHAU70zM6+cHnHFWzPzn06PuOKXM/PfTo94is9ODwDgG3s8M392esRT/NXM/PvTI674rzPzv0+PuOLJ6QHAdQIH3Li990enN1yz1vq3pzc8xa/33r84PQKAF9ve+8nM3PTzZq319ukNT/Erz2zgm3BFBQAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgLwHpwcAAP9irfXXpzfc+8npAd/Aj2/lHPfePzu9AQBeJgIHANyOD04PeAH8h/u/WyBwAMC3yBUVAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIenB4A5P12Zv7v6RFXPD49AABuxG/mtp/Zvzs9AGi7u1wupzcAADOz1vJQfoHsve9ObwCAl4krKgAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABA3t3lcjm9AQCeq7XWuzPz/ukdcIM+2Hu/d3oEAPxr8AYHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeXeXy+X0BgC+xFrr3Zl5//QOAK76YO/93ukRAC87b3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkPTg8AOG2t9denN1zxk9MDAHiqH9/ys2Tv/bPTGwC+DXeXy+X0BoCj1lr+IQTghbX3vju9AeDb4A0OuHFrrd+f3vCMHvoABQAAnCJwwO17eHoAAMC3zZc8wFclcAAAALfIlzzAV+JXVAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAvAenBwBP9YfTA57Rw9MDAACAl5fAATdu7/2d0xsAAA7wJQ/wlQgcAADAzfElD/BVCRwAMz87PeCKH8/MT06PAOCqf5qZfzw9AuBld3e5XE5vAOBLrLXenZn3T+8A4KoP9t7vnR4B8LLzKyoAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQN7d5XI5vQEAnqu11rsz8/7pHXCDPth7v3d6BAD8a/AGBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHl3l8vl9AYAYGbWWh7KL5C9993pDQDwMvEGBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQ9+D0AKBtrfUnM/Pu6R1X/I+99wenRwDAaWutv5mZ/3h6xxX/Ze/9P0+PALoEDuCb+t7M/LvTI674P6cHAMCN+P7c9jP7u6cHAG2uqAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQ9+D0AADg//vZ6QH3fjwzPzk94mv6p5n5x9MjAIBvn8ABADdi7/3u6Q0zM2utd6cbOP7X3vu90yMAgG+fKyoAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkPTg9ALhurfX2zLxyescVPzw94Cl+sNb609MjnuKjvffnp0cA8PWttV6bmbdO73iKR6cHPMWP1lq3/Dx8svf+5ekRwJcTOOD2fTgzr50eEfbW3P4Hztdn5snpEQB8I49m5h9Oj4j7q/u/W/XJzLx5egTw5VxRAQAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIO/B6QEAwG3Ze38wMx+c3gEA8FV4gwMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADIEzgAAACAPIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIC8B6cHwC1aa709M6+c3nHvVnbw/Ly91vrs9Ih7H+29Pz89AuBZrLVem5m3Tu+49+j0AJ6719Zaf3p6xL0ne+9fnh4Bt+bucrmc3gA3Z6316cy8dnoHHPD63vvJ6REAz2Kt9cbMfHx6Bxzwyd77zdMj4Na4ogIAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAEDeg9MDAOBltdb6/ekNz+jh3vvu9Igv4gwBgD8SOADgnIenB7wAnCEAMDOuqAAAAAAvAIEDAAAAyBM4AAAAgDyBAwAAAMgTOAAAAIA8gQMAAADI8zOx8MU+mplXT4+49/bMvHJ6BM/VRzPz+ekR925lB8CzeDIzvzg94t5rM/PW6RE8V09m5penR9x7fHoA3KK7y+VyegNwxVrr0/mXD028uF7fez85PYJv31or8xDee9+d3vBFnCG3Yq31xsx8fHoHz9Une+83T48AvpwrKgAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkCRwAAABAnsABAAAA5AkcAAAAQJ7AAQAAAOQJHAAAAECewAEAAADkPTg9AABeYn84PeAZPTw94ApnCADMjMABAMfsvb9zekOdMwQA/sgVFQAAACBP4AAAAADyBA4AAAAgz//BAbfvo5l59fSIK34wMz88PeKKX8/MP58e8RSfnx4AwDf2ZGZ+cXrEU/xoZh6dHnHFr2bm8ekRV9zyNmBm7i6Xy+kNQNha6z/PzN+e3nHF3+29//L0CAA4ba3132fmz0/vuOIv9t5/f3oE0OWKCgAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkCdwAAAAAHkCBwAAAJAncAAAAAB5AgcAAACQJ3AAAAAAeQIHAAAAkHd3uVxObwDC1lrfm5lHp3dc8du99+PTIwDgtLXW92fmu6d3XPGbvffvTo8AugQOAAAAIM8VFQAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADyBA4AAAAgT+AAAAAA8gQOAAAAIE/gAAAAAPIEDgAAACBP4AAAAADy/h91aIqbOhZPtwAAAABJRU5ErkJggg==" id="c" width="1080" height="1080" preserveAspectRatio="none"/></defs></svg>') no-repeat center;
  background-size: contain;
}
.referral .referral-example:before {
  content: "";
  position: absolute;
  top: 90%;
  right: 100%;
  width: 164px;
  height: 154px;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="164" height="154" fill="none"><path stroke="%23BDFD02" stroke-linecap="round" stroke-width="2" d="M8.762 78.522c16.456 11.401 20.698 31.908 58.693 32.924 28.857-4.418 56.278-36.571 66.299-55.827"/><path stroke="%23BDFD02" stroke-linecap="round" stroke-width="2" d="M111.219 61.404c3.547 1.721 8.329.305 10.743-.485 6.448-2.11 13.593-6.06 16.668-11.065 1.167-1.9-1.61-2.286-2.317-.996-.547 1-.894 2.634-.894 3.875-.001 2.613 1.689 6.265 2.658 9.059 1.534 4.424 3.269 8.47 6.129 12.876"/></svg>') no-repeat center;
}
.referral .referral-example:after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 120px;
  height: 112px;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="112" fill="none"><g clip-path="url(%23a)"><path fill="%23000" fill-opacity=".6" stroke="%23fff" d="M115 1H5a4 4 0 0 0-4 4v19.058a4 4 0 0 0 1.272 2.926l88.975 82.942A4.001 4.001 0 0 0 93.974 111H115a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h120v112H0z"/></clipPath></defs></svg>') no-repeat center;
}
.referral .referral-example p {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.referral .referral-example p span {
  color: #FF41DF;
}
.referral .referral-example p:nth-of-type(1) {
  font-size: 26px;
  line-height: 31px;
  margin-bottom: 5px;
}
.referral .referral-example p:nth-of-type(2) {
  font-size: 40px;
  line-height: 48px;
  margin-top: 27px;
}
.referral .referral-example small {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #A1A1A1;
}
.referral .referral-example small:nth-of-type(2) {
  position: absolute;
  right: 66px;
  bottom: 32px;
  max-width: 238px;
}
.referral .referral-example .button {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 21px;
  width: 411px;
  height: 60px;
  border-radius: 4px 20px 4px 4px;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 1415px) and (min-width: 991px) {
  .referral .referral-example {
    padding-top: 36px;
  }
  .referral .referral-example p:nth-of-type(1) {
    line-height: 1.2;
  }
  .referral .referral-example p:nth-of-type(2) {
    line-height: 1.2;
  }
  .referral .referral-example small:nth-of-type(2) {
    max-width: 32%;
  }
  .referral .referral-example .button {
    width: 54%;
    height: 19%;
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1415px) and (min-width: 1300px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 20px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 32px;
  }
  .referral .referral-example small:nth-of-type(2) {
    font-size: 15px;
  }
}
@media screen and (max-width: 1300px) and (min-width: 991px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 18px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 24px;
    margin-top: 16px;
  }
  .referral .referral-example small {
    font-size: 16px;
  }
  .referral .referral-example small:nth-of-type(2) {
    font-size: 12px;
  }
  .referral .referral-example .button {
    font-size: 20px;
  }
}
@media screen and (max-width: 1225px) and (min-width: 991px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 16px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 20px;
  }
  .referral .referral-example .button {
    font-size: 14px;
  }
}
@media screen and (max-width: 1145px) and (min-width: 991px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 14px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 18px;
  }
  .referral .referral-example small:nth-of-type(2) {
    max-width: 36%;
    right: 7%;
  }
}
@media screen and (max-width: 992px) {
  .referral .referral-example {
    width: 100%;
    max-width: 770px;
  }
}
@media screen and (max-width: 768px) {
  .referral .referral-example {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="358" height="271" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" d="M352 0a6 6 0 0 1 6 6v168.638a8 8 0 0 1-3.685 6.736l-16.377 10.492c-3.106 1.99-3.062 6.543.082 8.472l16.164 9.92a8 8 0 0 1 3.816 6.818V265a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6a6 6 0 0 1 6-6h346Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h358v271H0z"/></clipPath></defs></svg>') top center no-repeat;
    background-size: contain;
    aspect-ratio: 358/271;
    padding: 24px 32px 24px 24px;
    max-width: 358px;
  }
  .referral .referral-example:after {
    width: 72px;
    height: 72px;
    background-size: contain;
    top: -8px;
    right: -5px;
  }
  .referral .referral-example p:nth-of-type(1) {
    font-size: 22px;
    line-height: 1.1;
  }
  .referral .referral-example p:nth-of-type(2) {
    margin: 24px 0 12px;
    font-size: 32px;
    line-height: 1.1;
    padding-bottom: 15px;
    border-bottom: 1px dashed #000;
  }
  .referral .referral-example small {
    font-size: 16px;
    line-height: 1.2;
  }
  .referral .referral-example small:nth-of-type(2) {
    font-size: 14px;
    max-width: initial;
    width: 100%;
    position: initial;
  }
  .referral .referral-example .button {
    top: 100%;
    border-radius: 4px;
    width: 100%;
    font-size: 20px;
  }
}
@media screen and (max-width: 390px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 20px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 26px;
  }
  .referral .referral-example small {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 360px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 18px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 24px;
    margin: 12px auto;
  }
  .referral .referral-example small {
    font-size: 12px !important;
  }
  .referral .referral-example .button {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 335px) {
  .referral .referral-example p:nth-of-type(1) {
    font-size: 16px;
  }
  .referral .referral-example p:nth-of-type(2) {
    font-size: 22px;
  }
}
.referral .referral-example-image {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.referral .referral-example-image:before {
  content: "";
  position: absolute;
  top: 90%;
  right: 100%;
  width: 164px;
  height: 154px;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="164" height="154" fill="none"><path stroke="%23BDFD02" stroke-linecap="round" stroke-width="2" d="M8.762 78.522c16.456 11.401 20.698 31.908 58.693 32.924 28.857-4.418 56.278-36.571 66.299-55.827"/><path stroke="%23BDFD02" stroke-linecap="round" stroke-width="2" d="M111.219 61.404c3.547 1.721 8.329.305 10.743-.485 6.448-2.11 13.593-6.06 16.668-11.065 1.167-1.9-1.61-2.286-2.317-.996-.547 1-.894 2.634-.894 3.875-.001 2.613 1.689 6.265 2.658 9.059 1.534 4.424 3.269 8.47 6.129 12.876"/></svg>') no-repeat center;
}
.referral .referral-example-image:after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 15.5%;
  aspect-ratio: 1/1;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="112" fill="none"><g clip-path="url(%23a)"><path fill="%23000" fill-opacity=".6" stroke="%23fff" d="M115 1H5a4 4 0 0 0-4 4v19.058a4 4 0 0 0 1.272 2.926l88.975 82.942A4.001 4.001 0 0 0 93.974 111H115a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h120v112H0z"/></clipPath></defs></svg>') no-repeat top center;
  background-size: contain;
}
.referral .referral-example-image img {
  width: 100%;
  height: auto;
}
.referral .referral-example-image .button {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 21px;
  width: 411px;
  height: 60px;
  border-radius: 4px 20px 4px 4px;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 1415px) and (min-width: 991px) {
  .referral .referral-example-image .button {
    width: 54%;
    height: 19%;
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 1300px) and (min-width: 991px) {
  .referral .referral-example-image .button {
    font-size: 20px;
  }
}
@media screen and (max-width: 1225px) and (min-width: 991px) {
  .referral .referral-example-image .button {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .referral .referral-example-image {
    margin-top: 36px;
    max-width: 771px;
  }
  .referral .referral-example-image::before {
    display: none;
  }
  .referral .referral-example-image:after {
    width: 119px;
    height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .referral .referral-example-image {
    max-width: 364px;
  }
  .referral .referral-example-image:after {
    width: 71px;
    height: 71px;
  }
  .referral .referral-example-image .button {
    top: 100%;
    border-radius: 4px;
    width: 100%;
    font-size: 20px;
  }
}
@media screen and (max-width: 360px) {
  .referral .referral-example-image .button {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 992px) {
  .referral .referral-subtitle {
    margin-left: 0;
  }
  .referral .referral-content {
    flex-direction: column;
  }
  .referral .referral-conditions {
    flex-direction: row;
    align-items: flex-start;
    margin: 0 auto;
  }
  .referral .referral-conditions .item {
    background-size: contain;
    background-position: top center;
  }
  .referral .referral-conditions .item-plus {
    margin: auto 32px auto 36px;
    transform: translateY(-20px);
  }
  .referral .referral-example {
    margin: 50px auto 0;
  }
  .referral .referral-example:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .referral .referral-subtitle {
    font-size: 22px;
    line-height: 1;
    margin-top: 38px;
  }
  .referral .referral-subtitle:nth-of-type(2) {
    margin: 0;
  }
  .referral .referral-subtitle img {
    max-width: 108px;
  }
  .referral .referral-steps, .referral .referral-conditions {
    flex-direction: column;
  }
  .referral .referral-conditions .item {
    margin: 0;
  }
  .referral .referral-conditions .item-plus {
    margin: 14px auto 10px;
    transform: none;
  }
  .referral .decorations-arrows {
    display: none;
  }
}

/* Art styles */
.art {
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .art {
    margin-top: 130px;
  }
}

/* Partners styles */
.partners {
  margin: 100px auto 0;
  /* Transition */
}
@media screen and (max-width: 992px) {
  .partners {
    margin: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .partners h2 {
    margin-bottom: 0;
  }
}
.partners .ticker-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}
.partners .ticker {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
.partners .item-collection-1 {
  position: relative;
  left: 0%;
  animation: swap 20s linear infinite;
}
.partners .ticker img {
  display: inline-block;
  max-width: 216px;
}
@media screen and (max-width: 992px) {
  .partners .ticker img {
    max-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .partners .ticker img {
    max-width: 140px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%, 100% {
    left: 100%;
  }
}

/* Footer styles */
.prefooter {
  margin: 120px auto 0;
  padding: 32px 0;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.04em;
  text-align: center;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
}
@media screen and (max-width: 992px) {
  .prefooter {
    font-size: 26px;
    line-height: 1.2;
    margin: 26px auto 40px;
  }
}
@media screen and (max-width: 768px) {
  .prefooter {
    padding: 20px 0;
    margin: 0 auto 22px;
  }
}

footer {
  margin: 50px auto 125px;
}
footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
footer a.active, footer a:hover {
  color: #BDFD02;
}
footer .footer-widgets {
  justify-content: space-between;
}
footer .footer-widgets > div:nth-child(2) {
  margin: 0 16px;
}
footer .footer-widgets h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.04em;
  color: #BDFD02;
  margin: 0 0 30px;
}
footer .footer-widgets h3 img {
  display: inline-block;
  width: 24px;
  vertical-align: baseline;
  margin-right: 12px;
}
footer .footer-widgets a {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.04em;
  padding-left: 42px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="20" fill="none"><g clip-path="url(%23a)"><path fill="%23fff" fill-rule="evenodd" d="M1.719 8.61c6.71-2.823 11.186-4.683 13.425-5.582C21.537.46 22.863.015 23.73 0c.19-.003.616.042.892.259.233.182.297.428.327.601.031.173.07.567.039.875-.347 3.514-1.846 12.041-2.608 15.977-.323 1.665-.958 2.223-1.573 2.278-1.337.119-2.352-.853-3.647-1.672-2.026-1.282-3.17-2.08-5.138-3.331-2.272-1.446-.799-2.24.496-3.54.34-.34 6.23-5.511 6.343-5.98.015-.059.028-.278-.107-.393-.134-.116-.333-.076-.476-.045-.204.045-3.44 2.11-9.71 6.196-.92.609-1.751.905-2.497.89-.822-.017-2.403-.449-3.578-.818-1.442-.452-2.588-.691-2.488-1.46.052-.4.623-.809 1.713-1.227Z" clip-rule="evenodd"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h25v20H0z"/></clipPath></defs></svg>') left center no-repeat;
  background-size: 25px;
}
footer .social-menu ul {
  padding: 0;
  margin: 70px 0;
  list-style: none;
  justify-content: center;
}
footer .social-menu ul li + li {
  margin-left: 50px;
}
footer .social-menu ul a {
  text-decoration: none;
  transition: color 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
footer .social-menu ul a.active, footer .social-menu ul a:hover {
  color: #BDFD02;
}
footer .copyright {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #929191;
}
@media screen and (max-width: 992px) {
  footer .footer-widgets {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer-widgets > div {
    width: auto;
    margin: 0 0 40px;
  }
  footer .footer-widgets > div:nth-child(2) {
    margin: 0 0 40px 32px;
  }
  footer .footer-widgets > div:last-child {
    margin-bottom: 0;
  }
  footer .footer-widgets h3, footer .footer-widgets a {
    font-size: 22px;
    line-height: 1.2;
  }
  footer .footer-widgets h3 {
    margin-bottom: 20px;
  }
  footer .social-menu ul a {
    font-size: 22px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 88px;
  }
  footer .footer-widgets {
    flex-direction: column;
    max-width: 460px;
    margin: auto;
  }
  footer .footer-widgets > div {
    margin: 0 0 30px 0 !important;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  footer .footer-widgets {
    max-width: initial;
  }
  footer .footer-widgets h3, footer .footer-widgets a {
    font-size: 18px;
  }
  footer .footer-widgets h3 {
    margin-bottom: 18px;
  }
  footer .social-menu ul {
    justify-content: space-between;
    margin: 30px 0;
  }
  footer .social-menu ul li + li {
    margin-left: 8px;
  }
  footer .social-menu ul a {
    font-size: 16px;
  }
  footer .copyright {
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
  }
}

/* Modals styles */
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../assets/modal-background.png") no-repeat center center;
  background-size: cover;
  padding: 43px 36px;
  overflow-y: scroll;
}
.modal h2 {
  margin-bottom: 80px;
}
.modal .modal-content {
  width: 100%;
  max-width: 680px;
  background: #020202;
  padding: 80px 70px 48px;
  border-radius: 30px;
  box-shadow: 2px 2px 34px rgba(255, 65, 223, 0.8);
  margin: auto;
  position: relative;
  overflow: hidden;
}
.modal .modal-content .close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0;
}
.modal .modal-content .close-modal svg {
  width: 25px;
  height: 25px;
}
.modal .modal-content .close-modal svg path {
  transition: stroke 0.3s;
}
.modal .modal-content .close-modal:hover svg path {
  stroke: #FF41DF;
}
.modal form input, .modal form select, .modal form label {
  display: block;
}
.modal form label {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.modal form input, .modal form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  background: #020202;
  color: #fff;
  border-radius: 0;
  margin-bottom: 30px;
  padding: 5px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.04em;
}
.modal form input::-moz-placeholder, .modal form select::-moz-placeholder {
  color: #848484;
}
.modal form input::placeholder, .modal form select::placeholder {
  color: #848484;
}
.modal form select {
  color: #848484;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="none"><g clip-path="url(%23a)"><path stroke="%23FF41DF" stroke-width="2" d="M23.627 11.314 12.313 22.627 1 11.314"/></g><defs><clipPath id="a"><path fill="%23fff" d="M0 0h25v25H0z"/></clipPath></defs></svg>') no-repeat right 10px center;
}
.modal form select::-ms-expand {
  display: none;
}
.modal form input[type=file] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.modal form .custom-file-input {
  display: flex;
  cursor: pointer;
}
.modal form .custom-file-input .cv-preview {
  width: 62px;
  height: 62px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid #FF41DF;
  margin: 0 20px 0 0;
}
.modal form .custom-file-input p {
  background: #343434;
  padding: 10px 30px 10px 10px;
  border-radius: 6px;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #B1B1B1;
  margin: 0;
}
.modal form .custom-file-input p span {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #BDFD02;
  border-radius: 6px;
  margin-right: 30px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #BDFD02;
}
.modal form .custom-file-choosen {
  display: flex;
  align-items: center;
}
.modal form .custom-file-choosen img {
  width: 30px;
  margin-right: 10px;
}
.modal form .custom-file-choosen p {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: #808080;
}
.modal form .remove-file {
  border: none;
  background: none;
  border-radius: 0;
  margin-left: 20px;
  cursor: pointer;
  padding: 8px;
}
.modal form .button {
  margin: 50px 0 0 0;
  width: 100%;
}
.modal form .validation {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 16px 48px;
  text-align: center;
  color: #fff;
  display: none;
  min-height: 50px;
}
.modal form .validation .validation-close {
  background: none;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-size: 0;
  width: 32px;
  height: 32px;
}
.modal form .validation.is-error {
  background: red;
  display: block;
}
.modal form .validation.is-success {
  background: green;
  display: block;
}
.modal .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #000;
}
.modal .close-button:hover {
  color: #BDFD02;
}
@media screen and (max-width: 576px) {
  .modal {
    padding: 60px 15px 50px;
  }
  .modal h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .modal .modal-content {
    padding: 32px 20px 36px;
  }
  .modal .modal-content .close-modal {
    top: 20px;
    right: 20px;
  }
  .modal .modal-content .close-modal svg {
    width: 14px;
    height: 14px;
  }
  .modal form input,
  .modal form select {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 25px;
  }
  .modal form select {
    background-size: 16px;
  }
  .modal form label {
    font-size: 16px;
    line-height: 19px;
  }
  .modal form .custom-file-input .cv-preview {
    width: 42px;
    height: 42px;
  }
  .modal form .custom-file-input p {
    font-size: 12px;
    line-height: 1.2;
    padding: 8px 50px 8px 10px;
  }
  .modal form .custom-file-input p span {
    font-size: 12px;
    line-height: 1.2;
    padding: 5px 7px;
  }
  .modal form .custom-file-choosen p {
    font-size: 16px;
    line-height: 1.2;
  }
  .modal form .button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 420px) {
  .modal form .custom-file-input p {
    padding: 8px;
  }
  .modal form .custom-file-input p span {
    margin-right: 8px;
  }
}
@media screen and (max-width: 340px) {
  .modal form .custom-file-input p {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */