@charset "UTF-8";
@use "sass:string";
@use "sass:math";
@font-face {
  font-family: "Globotipo Texto";
  font-display: swap;
  font-weight: 700;
  src: url("/assets/fonts/Globo_type_bold.ttf");
}

@supports (scroll-behavior: smooth) {
  :root {
    scroll-behavior: smooth;
  }
}

/**
 * Set up a decent box model on the root element
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html ::-webkit-scrollbar {
  width: 10px;
}

html ::-webkit-scrollbar-track {
  background: rgba(204, 204, 204, 0.2);
}

html ::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 2px;
  -webkit-animation-name: Xscrollbar;
          animation-name: Xscrollbar;
  animation-timeline: scroll(y);
}

html ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
}

/**
 * Basic styles for links
 */
a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
}

body {
  background-color: #f6f5f2;
}

body.show-pannel {
  overflow: hidden;
}

@media (min-width: 1025px) {
  body.show-pannel {
    overflow: auto !important;
  }
}

address,
var {
  font-style: normal;
}

ul {
  list-style-type: none;
}

main {
  position: relative;
}

figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure picture {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

figure source {
  font-size: 0px;
}

hr {
  border-bottom: 1px solid;
}

.hr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 1px;
  color: get-variable(cls, grey, 4);
  background: currentColor;
}

.hr.dot {
  position: relative;
}

.hr.dot::before, .hr.dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.stick {
  position: relative;
}

.stick .stick__content {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

/**
 *
 * Basic typography style for copy text
 *
 **/
/**
  *
  * Info: Define o Font-type
  *
  */
.font--primary, body,
body > a,
.article,
.article > a,
h1,
h1 > a,
.h1, .roadmap .roadmap__info h2, .roadmap .roadmap__info .roadmap__info__numbers > div > h3,
.h1 > a,
.roadmap .roadmap__info h2 > a,
.roadmap .roadmap__info .roadmap__info__numbers > div > h3 > a,
h2,
h2 > a,
.h2, .hero__content .hero__content__timer > div > div .timer__number,
.h2 > a,
.hero__content .hero__content__timer > div > div .timer__number > a,
h3,
h3 > a,
.h3,
.h3 > a,
h4,
h4 > a,
.h4, .wp-block-table tfoot td,
.wp-block-table th, form fieldset:not(.checkbox) legend, .questions .questions__options > ul > li,
.h4 > a,
.wp-block-table tfoot td > a,
.wp-block-table th > a,
form fieldset:not(.checkbox) legend > a,
.questions .questions__options > ul > li > a,
h5,
h5 > a,
.h5,
.h5 > a,
h6,
h6 > a,
.h6,
.h6 > a,
p,
p > a, .certificate .certificate__main .certificate__main__number form fieldset > div input {
  font-family: "Globotipo Texto";
}

.font--secondary, a,
button,
time, .questions .questions__content > div > *, .modal--question .modal--question__body > * {
  font-family: "Montserrat", sans-serif;
}

/**
  * Info: Cria definições Font-weight
  */
.font--light {
  font-weight: 300;
}

.font--regular, html, body,
.regular, .questions .questions__content > div ol > li, .modal--question .modal--question__body ol > li {
  font-weight: 400;
}

.font--bold {
  font-weight: 700;
}

/**
  * Info: Cria as definições Fonts e variações
  */
h1,
.h1,
.roadmap .roadmap__info h2,
.roadmap .roadmap__info .roadmap__info__numbers > div > h3,
h2,
.h2,
.hero__content .hero__content__timer > div > div .timer__number,
h3,
.h3,
h4,
.h4,
.wp-block-table tfoot td,
.wp-block-table th,
form fieldset:not(.checkbox) legend,
.questions .questions__options > ul > li,
h5,
.h5 {
  font-weight: 700;
}

html,
body,
.regular,
.questions .questions__content > div ol > li,
.modal--question .modal--question__body ol > li {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 1025px) {
  html,
  body,
  .regular,
  .questions .questions__content > div ol > li,
  .modal--question .modal--question__body ol > li {
    font-size: 18px;
    line-height: 23px;
  }
}

h1,
.h1,
.roadmap .roadmap__info h2,
.roadmap .roadmap__info .roadmap__info__numbers > div > h3 {
  font-size: 27px;
  line-height: 40px;
}

@media (min-width: 1025px) {
  h1,
  .h1,
  .roadmap .roadmap__info h2,
  .roadmap .roadmap__info .roadmap__info__numbers > div > h3 {
    font-size: 35px;
    line-height: 46px;
  }
}

h2,
.h2,
.hero__content .hero__content__timer > div > div .timer__number {
  font-size: 22px;
  line-height: 40px;
}

@media (min-width: 1025px) {
  h2,
  .h2,
  .hero__content .hero__content__timer > div > div .timer__number {
    font-size: 28px;
    line-height: 46px;
  }
}

h3,
.h3 {
  font-size: 18px;
  line-height: 20px;
}

@media (min-width: 1025px) {
  h3,
  .h3 {
    font-size: 23px;
    line-height: 23px;
  }
}

h4,
.h4,
.wp-block-table tfoot td,
.wp-block-table th,
form fieldset:not(.checkbox) legend,
.questions .questions__options > ul > li,
h5,
.h5 {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 1025px) {
  h4,
  .h4,
  .wp-block-table tfoot td,
  .wp-block-table th,
  form fieldset:not(.checkbox) legend,
  .questions .questions__options > ul > li,
  h5,
  .h5 {
    font-size: 18px;
    line-height: 23px;
  }
}

.small, figcaption,
blockquote:not(.tiktok-embed) cite, .wp-block-table td, form fieldset label, .hero__content .hero__content__timer > div > div span:not(.timer__number), .timeline .timeline__container .timeline__container__item:before, .timeline .timeline__year--list > button, .roadmap .roadmap__info .roadmap__info__numbers > div > h4, .certificate .certificate__main .certificate__main__classification > a, .certificate .certificate__main .certificate__main__number form fieldset label, .register .register__info > div p,
.register .register__info > div span {
  font-size: 12px;
  line-height: 20px;
}

@media (min-width: 1025px) {
  .small, figcaption,
  blockquote:not(.tiktok-embed) cite, .wp-block-table td, form fieldset label, .hero__content .hero__content__timer > div > div span:not(.timer__number), .timeline .timeline__container .timeline__container__item:before, .timeline .timeline__year--list > button, .roadmap .roadmap__info .roadmap__info__numbers > div > h4, .certificate .certificate__main .certificate__main__classification > a, .certificate .certificate__main .certificate__main__number form fieldset label, .register .register__info > div p,
  .register .register__info > div span {
    font-size: 15px;
    line-height: 23px;
  }
}

.xsmall {
  font-size: 10px;
  line-height: 14px;
}

@media (min-width: 1025px) {
  .xsmall {
    font-size: 12px;
    line-height: 12px;
  }
}

button,
.btn,
.header nav > ul li:last-of-type > a,
.link {
  font-size: 12px;
  line-height: 20px;
}

@media (min-width: 1025px) {
  button,
  .btn,
  .header nav > ul li:last-of-type > a,
  .link {
    font-size: 15px;
    line-height: 23px;
  }
}

a {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 0.1em;
  color: #000000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

a:hover {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🏃</text></svg>") 16 0, auto;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}

@-webkit-keyframes yearChange {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes yearChange {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes Xscrollbar {
  from {
    background: #D1773D;
  }
  to {
    background: #D1773D;
  }
}

@keyframes Xscrollbar {
  from {
    background: #D1773D;
  }
  to {
    background: #D1773D;
  }
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text, .header button, .header h1, .footer.footer--main .footer__item > ul > li > a[href^='https://www.facebook.com'], .footer.footer--main .footer__item > ul > li > a[href^='https://www.instagram.com'] {
  overflow: hidden;
  padding: 0;
  /* 1 */
  font-size: 0;
  text-indent: -999em;
  white-space: nowrap;
  color: transparent;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden, .screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.mt-2 {
  margin-top: 16px;
}

.pt40 {
  padding-top: 40px;
}

.aligncenter,
.has-text-align-center {
  text-align: center;
}

.alignleft,
.has-text-align-left {
  text-align: left;
}

.alignright,
.has-text-align-right {
  text-align: right;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

aside {
  position: relative;
}

aside .sticky {
  top: 80px;
  width: 100%;
}

.sm-order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

@media (min-width: 767px) {
  .md-order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media (min-width: 1025px) {
  .lg-order-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.sm-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 767px) {
  .md-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 1025px) {
  .lg-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.sm-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 767px) {
  .md-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 1025px) {
  .lg-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.sm-order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (min-width: 767px) {
  .md-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media (min-width: 1025px) {
  .lg-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.sm-order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

@media (min-width: 767px) {
  .md-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media (min-width: 1025px) {
  .lg-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.sm-order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

@media (min-width: 767px) {
  .md-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

@media (min-width: 1025px) {
  .lg-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.sm-order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

@media (min-width: 767px) {
  .md-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media (min-width: 1025px) {
  .lg-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.sm-order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

@media (min-width: 767px) {
  .md-order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}

@media (min-width: 1025px) {
  .lg-order-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.sm-order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

@media (min-width: 767px) {
  .md-order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
}

@media (min-width: 1025px) {
  .lg-order-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.sm-order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

@media (min-width: 767px) {
  .md-order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}

@media (min-width: 1025px) {
  .lg-order-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.sm-order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media (min-width: 767px) {
  .md-order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}

@media (min-width: 1025px) {
  .lg-order-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.sm-order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

@media (min-width: 767px) {
  .md-order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
}

@media (min-width: 1025px) {
  .lg-order-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

@media (min-width: 767px) {
  [class^="sm-order-"] {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media (min-width: 1025px) {
  [class^="md-order-"] {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.display--none {
  display: none;
}

.relative {
  position: relative;
}

.slick {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.debug {
  transform-box: border-box;
  outline: 1px solid red;
}

.debug .debug {
  outline: 1px dashed green;
}

.debug .debug .debug {
  outline: 1px solid blue;
}

.debug .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  background: purple;
  opacity: 0.4;
}

.debug .item ~ .item {
  background: orange;
}

.container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1664px;
}

.container .row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 0px 24px;
}

@media (min-width: 1025px) {
  .container {
    padding: 48px 0px;
  }
}

.col--1 {
  padding: 0px 8px;
  width: calc(calc($i * 100%) / 4);
}

.col--2 {
  padding: 0px 8px;
  width: calc(calc($i * 100%) / 4);
}

.col--3 {
  padding: 0px 8px;
  width: calc(calc($i * 100%) / 4);
}

.col--4, .highlights.highlights--vip .highlights--vip__products, .highlights.highlights--vip .highlights--vip__info, .highlights.highlights--free .highlights--free__info, .highlights.highlights--free .highlights--free__kit, .register .register__info, .register .register__form {
  padding: 0px 8px;
  width: calc(calc($i * 100%) / 4);
}

@media (min-width: 767px) {
  .col--md--1 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--2 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--3 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--4, .highlights.highlights--vip .highlights--vip__products, .highlights.highlights--vip .highlights--vip__info, .highlights.highlights--free .highlights--free__info, .highlights.highlights--free .highlights--free__kit {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--5 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--6 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--7 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
  .col--md--8 {
    padding: 0px 12px;
    width: calc(calc($i * 100%) / 8);
  }
}

@media (min-width: 1025px) {
  .col--lg--1 {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--2 {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--3, .highlights.highlights--medals .highlights--medals__stamp {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--4, .highlights.highlights--vip .highlights--vip__info, .highlights.highlights--free .highlights--free__info {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--5, .register .register__info, .register .register__form {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--6, .highlights.highlights--medals .highlights--medals__info, .highlights.highlights--free .highlights--free__kit {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--7, .highlights.highlights--vip .highlights--vip__products {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--8 {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--9 {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--10 {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--11 {
    padding: 0px 12px;
    width: 33%;
  }
  .col--lg--12 {
    padding: 0px 12px;
    width: 33%;
  }
}

form {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

form fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  width: 100%;
}

form fieldset legend {
  color: #00205b;
}

form fieldset legend + * {
  margin-top: 16px;
}

form fieldset input,
form fieldset select {
  width: 100%;
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 12px;
  background: rgba(204, 204, 204, 0.4);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

form fieldset input::-webkit-input-placeholder,
form fieldset select::-webkit-input-placeholder {
  color: #051944;
  opacity: 0.8;
}

form fieldset input:-ms-input-placeholder,
form fieldset select:-ms-input-placeholder {
  color: #051944;
  opacity: 0.8;
}

form fieldset input::-ms-input-placeholder,
form fieldset select::-ms-input-placeholder {
  color: #051944;
  opacity: 0.8;
}

form fieldset input::placeholder,
form fieldset select::placeholder {
  color: #051944;
  opacity: 0.8;
}

form fieldset select option {
  color: #051944;
}

form fieldset.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form fieldset.checkbox label {
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 25px;
  padding-left: 35px;
  font-size: 16px;
}

form fieldset.checkbox label input {
  cursor: pointer;
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

form fieldset.checkbox label input:checked ~ .checkmark {
  background-color: #92B542;
  -webkit-box-shadow: 0 3px 7px rgba(146, 181, 66, 0.3);
          box-shadow: 0 3px 7px rgba(146, 181, 66, 0.3);
}

form fieldset.checkbox label input:checked ~ .checkmark:after {
  display: block;
  -webkit-animation: checkAnim 0.2s forwards;
          animation: checkAnim 0.2s forwards;
}

form fieldset.checkbox label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 4px;
  background: rgba(204, 204, 204, 0.2);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

form fieldset.checkbox label .checkmark:after {
  content: "";
  display: none;
  position: absolute;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

form hr {
  width: 100%;
  border-color: rgba(0, 45, 114, 0.2);
}

form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 40px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background: #C33F32;
}

@media (min-width: 1025px) {
  form button:not(
  .btn) {
    padding: 8px 40px;
  }
}

form .recaptcha {
  width: 100%;
}

form .recaptcha > div {
  margin: 24px;
}

form .recaptcha > div span {
  display: block;
  color: #051944;
}

form .form-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 24px;
          column-gap: 24px;
}

form .form-end button {
  color: #ffffff;
  background: #D1773D;
}

form .form-end button:not(
.btn) {
  padding: 8px 0px;
  background: none;
  color: #051944;
}

form .form-end button:not(
.btn):hover {
  color: #C33F32;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

form .obrigatorio {
  color: red;
}

form .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  width: 100%;
}

form .box > fieldset {
  width: 100%;
  padding: 0 24px;
}

form .box .row {
  -webkit-column-gap: 24px;
          column-gap: 24px;
}

form .box .row > fieldset {
  width: calc(50% - 12px);
}

.header {
  position: fixed;
  top: -100%;
  left: 0px;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-shadow: 0px 5px 19px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 19px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: -1;
}

.header > .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 24px;
  padding: 8px;
}

.header button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  border-radius: 5px;
  background: #152261;
}

.header nav {
  display: none;
  width: 100%;
}

.header nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
          column-gap: 24px;
  row-gap: 16px;
  width: 100%;
}

.header nav > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.header nav > ul li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
}

.header nav > ul li:last-of-type > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 24px !important;
  text-decoration: none;
  color: #60266C;
  background: #D1773D;
  background-position: center;
}

.header nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 64px;
}

.header h1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header.scroll {
  top: 0%;
}

@media (min-width: 1025px) {
  .header button {
    display: none;
  }
  .header nav {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .header nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer.footer--main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #152261;
  background-size: 200%;
}

.footer.footer--main .footer__content {
  row-gap: 80px;
}

.footer.footer--main .footer__content .footer__content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.footer.footer--main .footer__content .footer__content__row > div:not(.footer__item) {
  width: 100%;
  text-align: center;
}

.footer.footer--main .footer__content nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer.footer--main .footer__content nav > ul > li {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.footer.footer--main .footer__content nav > ul > li > a {
  width: 100%;
  padding: 8px 0px;
}

.footer.footer--main .footer__content nav a {
  color: #ffffff;
}

.footer.footer--main .footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.footer.footer--main .footer__item h2 {
  color: #ffffff;
}

.footer.footer--main .footer__item > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
          column-gap: 24px;
  width: 100%;
  max-width: 100%;
}

.footer.footer--main .footer__item > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
}

.footer.footer--main .footer__item > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
}

.footer.footer--main .footer__item > ul > li > a > img {
  width: 100%;
}

.footer.footer--main .footer__item > ul > li > a[href^='https://www.facebook.com'], .footer.footer--main .footer__item > ul > li > a[href^='https://www.instagram.com'] {
  width: 64px;
}

.footer.footer--main .footer__item > ul > li > a[href^='https://www.facebook.com']::before, .footer.footer--main .footer__item > ul > li > a[href^='https://www.instagram.com']::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer.footer--main .footer__item > ul > li > a[href^='https://www.facebook.com']:hover, .footer.footer--main .footer__item > ul > li > a[href^='https://www.instagram.com']:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.footer.footer--main .footer__item > ul > li > a[href^='https://www.facebook.com']::before {
  background: url("/assets/midia/Facebook.svg");
}

.footer.footer--main .footer__item > ul > li > a[href^='https://www.instagram.com']::before {
  background: url("/assets/midia/Instagram.svg");
}

.footer.footer--main nav + div {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer.footer--main .sn-list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.irmc {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url(/assets/images/icons/icons.svg);
  background-repeat: no-repeat;
  -webkit-transition: none;
  transition: none;
}

.irmc.irmc--sm {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.irmc.irmc--dark {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.irmc.irmc--grey {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.irmc.irmc--blue {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.irmc.irmc--Headphone-1 {
  background-position: -0px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Volume-Down {
  background-position: -24px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Volume-Off {
  background-position: -48px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-1-filled {
  background-position: -72px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Volume-Up {
  background-position: -96px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Volume-Down-1 {
  background-position: -120px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist--Repeat-List {
  background-position: -144px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Camera-Video-1 {
  background-position: -168px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Play-1 {
  background-position: -192px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Volume-Off-1 {
  background-position: -216px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Pause-1 {
  background-position: -240px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist--Repeat-Song {
  background-position: -264px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist {
  background-position: -288px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist--Shuffle {
  background-position: -312px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist--Shuffle-1 {
  background-position: -336px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-1 {
  background-position: -360px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist--Repeat-Song-1 {
  background-position: -384px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Microphone-Off-1 {
  background-position: -408px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Playlist--Repeat-List-1 {
  background-position: -432px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Stop-1 {
  background-position: -456px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Stop {
  background-position: -480px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Start {
  background-position: -504px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Previous-1 {
  background-position: -528px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Previous {
  background-position: -552px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Play {
  background-position: -576px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Start-1 {
  background-position: -600px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Times-Square {
  background-position: -624px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Pause {
  background-position: -648px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Camera-Video {
  background-position: -672px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Next {
  background-position: -696px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--Next-1 {
  background-position: -720px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--End {
  background-position: -744px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Player--End-1 {
  background-position: -768px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Play-Circle {
  background-position: -792px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Play-Circle-1 {
  background-position: -816px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-Artist {
  background-position: -840px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-Artist-1 {
  background-position: -864px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-Album {
  background-position: -888px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-Album-1 {
  background-position: -912px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-2 {
  background-position: -936px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-2-1 {
  background-position: -960px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Music-1-filled {
  background-position: -984px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Microphone {
  background-position: -1008px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Microphone-1 {
  background-position: -1032px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trend-Up {
  background-position: -1056px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Microphone-Off {
  background-position: -1080px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Times-Circle {
  background-position: -1104px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Headphone {
  background-position: -1128px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Camera-Image-1 {
  background-position: -1152px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Camera-Image {
  background-position: -1176px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trend-Down-1 {
  background-position: -1200px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--x {
  background-position: -1224px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Times-Circle-1 {
  background-position: -1248px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trend-Up-1 {
  background-position: -1272px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Times {
  background-position: -1296px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trend-Down {
  background-position: -1320px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Percent {
  background-position: -1344px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--y {
  background-position: -1368px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-9-Square-1 {
  background-position: -1392px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-4-Circle {
  background-position: -1416px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Plus-Square {
  background-position: -1440px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--f {
  background-position: -1464px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Plus-Square-1 {
  background-position: -1488px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Times-Square-1 {
  background-position: -1512px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Radical {
  background-position: -1536px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Plus-Circle-1 {
  background-position: -1560px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Plus {
  background-position: -1584px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Equal {
  background-position: -1608px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Plus-Minus {
  background-position: -1632px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Plus-Circle {
  background-position: -1656px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Division-Square {
  background-position: -1680px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Pi {
  background-position: -1704px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Minus-Square {
  background-position: -1728px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Minus {
  background-position: -1752px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Minus-Square-1 {
  background-position: -1776px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Lemniscate {
  background-position: -1800px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Minus-Circle-1 {
  background-position: -1824px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Question-Mark-Square-1 {
  background-position: -1848px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Minus-Circle {
  background-position: -1872px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Close-Circle-1 {
  background-position: -1896px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Factorial {
  background-position: -1920px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-9-Square {
  background-position: -1944px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Division {
  background-position: -1968px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Restart-1 {
  background-position: -1992px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Division-Square-1 {
  background-position: -2016px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Division-Slash {
  background-position: -2040px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Division-Circle {
  background-position: -2064px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sign--Division-Circle-1 {
  background-position: -2088px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-9 {
  background-position: -2112px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-0-Circle {
  background-position: -2136px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-5-Circle-1 {
  background-position: -2160px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-9-Circle {
  background-position: -2184px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-9-Circle-1 {
  background-position: -2208px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-8 {
  background-position: -2232px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-8-Square {
  background-position: -2256px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-8-Square-1 {
  background-position: -2280px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-8-Circle {
  background-position: -2304px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-8-Circle-1 {
  background-position: -2328px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-7 {
  background-position: -2352px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-7-Square {
  background-position: -2376px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-7-Square-1 {
  background-position: -2400px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-7-Circle {
  background-position: -2424px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-7-Circle-1 {
  background-position: -2448px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-6 {
  background-position: -2472px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-6-Square {
  background-position: -2496px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-6-Square-1 {
  background-position: -2520px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-6-Circle {
  background-position: -2544px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-6-Circle-1 {
  background-position: -2568px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-5 {
  background-position: -2592px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-5-Square {
  background-position: -2616px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-5-Square-1 {
  background-position: -2640px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-5-Circle {
  background-position: -2664px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-0-Circle-1 {
  background-position: -2688px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-4 {
  background-position: -2712px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-4-Circle-1 {
  background-position: -2736px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-3-Square {
  background-position: -2760px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-4-Square {
  background-position: -2784px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-4-Square-1 {
  background-position: -2808px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calculator {
  background-position: -2832px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-3 {
  background-position: -2856px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-3-Square-1 {
  background-position: -2880px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-3-Circle {
  background-position: -2904px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-3-Circle-1 {
  background-position: -2928px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-2 {
  background-position: -2952px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-2-Square {
  background-position: -2976px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-2-Square-1 {
  background-position: -3000px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-2-Circle {
  background-position: -3024px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-2-Circle-1 {
  background-position: -3048px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-1 {
  background-position: -3072px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-1-Square-1 {
  background-position: -3096px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-1-Circle-1 {
  background-position: -3120px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-1-Square {
  background-position: -3144px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-1-Circle {
  background-position: -3168px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-0 {
  background-position: -3192px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-0-Square {
  background-position: -3216px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Number-0-Square-1 {
  background-position: -3240px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Swap {
  background-position: -3264px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calculator-1 {
  background-position: -3288px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Close-Circle-1-filled {
  background-position: -3312px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Compare {
  background-position: -3336px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Unavailable {
  background-position: -3360px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Type {
  background-position: -3384px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Synchronize {
  background-position: -3408px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Synchronize-1 {
  background-position: -3432px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Frame {
  background-position: -3456px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Swap-1 {
  background-position: -3480px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sorting-Right {
  background-position: -3504px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sorting-Left {
  background-position: -3528px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Sorting-Center {
  background-position: -3552px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Screen-Normal {
  background-position: -3576px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Screen-Full {
  background-position: -3600px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Restart {
  background-position: -3624px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Do--Redo {
  background-position: -3648px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Question-Mark-Square {
  background-position: -3672px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Do--Redo-1 {
  background-position: -3696px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Question-Mark-Circle {
  background-position: -3720px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Question-Mark-Circle-1 {
  background-position: -3744px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Pen {
  background-position: -3768px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Pen-1 {
  background-position: -3792px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Move-1 {
  background-position: -3816px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Move {
  background-position: -3840px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Horizontal-Circle {
  background-position: -3864px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Vertical {
  background-position: -3888px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Vertical-Square {
  background-position: -3912px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Vertical-Square-1 {
  background-position: -3936px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Vertical-Circle {
  background-position: -3960px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Horizontal-Square-1 {
  background-position: -3984px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Vertical-Circle-1 {
  background-position: -4008px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Horizontal {
  background-position: -4032px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Horizontal-Square {
  background-position: -4056px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Burger-Vertical {
  background-position: -4080px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Kebab-Horizontal-Circle-1 {
  background-position: -4104px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Menu-Burger-Horizontal {
  background-position: -4128px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Link {
  background-position: -4152px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Link-External {
  background-position: -4176px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Link-External-1 {
  background-position: -4200px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Information-Square {
  background-position: -4224px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Information-Square-1 {
  background-position: -4248px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Information-Circle-1 {
  background-position: -4272px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Information-Circle {
  background-position: -4296px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--History {
  background-position: -4320px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--History-1 {
  background-position: -4344px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Funnel {
  background-position: -4368px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Funnel-1 {
  background-position: -4392px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Component-1 {
  background-position: -4416px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Exit {
  background-position: -4440px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Exit-1 {
  background-position: -4464px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Enter {
  background-position: -4488px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Enter-1 {
  background-position: -4512px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Do--Undo {
  background-position: -4536px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Do--Undo-1 {
  background-position: -4560px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cursor {
  background-position: -4584px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Attention-Circle-1 {
  background-position: -4608px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Close {
  background-position: -4632px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Close-Circle-2 {
  background-position: -4656px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cursor-1 {
  background-position: -4680px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Close-Square {
  background-position: -4704px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Component {
  background-position: -4728px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Backspace-1 {
  background-position: -4752px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Compare-1 {
  background-position: -4776px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Check-Circle-1 {
  background-position: -4800px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Check-Circle-2 {
  background-position: -4824px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Check-Square {
  background-position: -4848px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Close-Square-1 {
  background-position: -4872px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Attention-Circle {
  background-position: -4896px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Check {
  background-position: -4920px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Check-Square-1 {
  background-position: -4944px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Attention-Square-1 {
  background-position: -4968px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Zoom-In-1 {
  background-position: -4992px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Check-Circle-1-filled {
  background-position: -5016px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Bluetooth {
  background-position: -5040px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Attention-Square {
  background-position: -5064px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-Yes-1 {
  background-position: -5088px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Backspace {
  background-position: -5112px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Zoom-In {
  background-position: -5136px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Zoom-Out-1 {
  background-position: -5160px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trash {
  background-position: -5184px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trash-Simple {
  background-position: -5208px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Zoom-Out {
  background-position: -5232px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trash-Simple-1 {
  background-position: -5256px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Star-Off-1 {
  background-position: -5280px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Star-1 {
  background-position: -5304px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-1 {
  background-position: -5328px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Trash-1 {
  background-position: -5352px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield {
  background-position: -5376px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Star {
  background-position: -5400px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-Off {
  background-position: -5424px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Star-Off {
  background-position: -5448px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-No {
  background-position: -5472px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-Off-1 {
  background-position: -5496px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Settings {
  background-position: -5520px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Printer {
  background-position: -5544px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-Yes {
  background-position: -5568px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Search-1 {
  background-position: -5592px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Settings-1 {
  background-position: -5616px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Printer-1 {
  background-position: -5640px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Scanner {
  background-position: -5664px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shield-No-1 {
  background-position: -5688px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Notification-Off-1 {
  background-position: -5712px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Search {
  background-position: -5736px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Mode--Dark {
  background-position: -5760px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Scanner-1 {
  background-position: -5784px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Options-1 {
  background-position: -5808px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Category-1 {
  background-position: -5832px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Notification-1 {
  background-position: -5856px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Options {
  background-position: -5880px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--News-1 {
  background-position: -5904px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Notification-Off {
  background-position: -5928px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Mode--Light {
  background-position: -5952px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Location-1 {
  background-position: -5976px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Notification {
  background-position: -6000px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--News {
  background-position: -6024px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Heart-1 {
  background-position: -6048px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Mouse {
  background-position: -6072px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lock-1 {
  background-position: -6096px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Mouse-1 {
  background-position: -6120px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Heart-Off-1 {
  background-position: -6144px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Mode--Light-1 {
  background-position: -6168px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Location {
  background-position: -6192px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Mode--Dark-1 {
  background-position: -6216px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lock {
  background-position: -6240px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Video-1 {
  background-position: -6264px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lock-Off {
  background-position: -6288px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lock-Off-1 {
  background-position: -6312px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Home-1 {
  background-position: -6336px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Location-Pin {
  background-position: -6360px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Location-Pin-1 {
  background-position: -6384px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Location-Pin-Off {
  background-position: -6408px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Location-Pin-Off-1 {
  background-position: -6432px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lightning-2 {
  background-position: -6456px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lightning-1 {
  background-position: -6480px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lightning-2-1 {
  background-position: -6504px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Lightning-1-filled {
  background-position: -6528px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Home {
  background-position: -6552px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-1-filled {
  background-position: -6576px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Gift-1 {
  background-position: -6600px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Heart {
  background-position: -6624px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Eye {
  background-position: -6648px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Heart-Off {
  background-position: -6672px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Eye-Off {
  background-position: -6696px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Gift {
  background-position: -6720px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Flag {
  background-position: -6744px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Flag-1 {
  background-position: -6768px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Fire {
  background-position: -6792px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Edit {
  background-position: -6816px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Eye-1 {
  background-position: -6840px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Video {
  background-position: -6864px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Eye-Off-1 {
  background-position: -6888px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--3D {
  background-position: -6912px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Edit-1 {
  background-position: -6936px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Discover {
  background-position: -6960px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Discover-1 {
  background-position: -6984px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Clock-1 {
  background-position: -7008px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Clock {
  background-position: -7032px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-Remove-1 {
  background-position: -7056px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Briefcase-1 {
  background-position: -7080px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Category {
  background-position: -7104px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-Add {
  background-position: -7128px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-Remove {
  background-position: -7152px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-2 {
  background-position: -7176px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-Add-1 {
  background-position: -7200px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Bookmark-1 {
  background-position: -7224px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-2-1 {
  background-position: -7248px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Check-1 {
  background-position: -7272px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Calendar-1 {
  background-position: -7296px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Briefcase {
  background-position: -7320px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Bookmark {
  background-position: -7344px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Bookmark-Off-1 {
  background-position: -7368px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Bookmark-Off {
  background-position: -7392px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Apps {
  background-position: -7416px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--3D-1 {
  background-position: -7440px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Music-1 {
  background-position: -7464px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Remove-1 {
  background-position: -7488px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-1 {
  background-position: -7512px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Upload {
  background-position: -7536px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Upload-1 {
  background-position: -7560px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder {
  background-position: -7584px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Document-1 {
  background-position: -7608px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Remove {
  background-position: -7632px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Video-1 {
  background-position: -7656px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Attachment {
  background-position: -7680px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Music {
  background-position: -7704px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Close {
  background-position: -7728px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Image-1 {
  background-position: -7752px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Image {
  background-position: -7776px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Document {
  background-position: -7800px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Clock-1 {
  background-position: -7824px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Add {
  background-position: -7848px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Add {
  background-position: -7872px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Close-1 {
  background-position: -7896px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Remove-1 {
  background-position: -7920px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Check {
  background-position: -7944px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Image-1 {
  background-position: -7968px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File {
  background-position: -7992px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Folder-Add-1 {
  background-position: -8016px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-1 {
  background-position: -8040px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Video {
  background-position: -8064px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Document-1 {
  background-position: -8088px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Remove {
  background-position: -8112px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Upload {
  background-position: -8136px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Image {
  background-position: -8160px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Squinting-Face-1 {
  background-position: -8184px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Document {
  background-position: -8208px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Download {
  background-position: -8232px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Close {
  background-position: -8256px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Close-1 {
  background-position: -8280px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Check {
  background-position: -8304px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Check-1 {
  background-position: -8328px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Audio {
  background-position: -8352px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Audio-1 {
  background-position: -8376px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Add {
  background-position: -8400px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--File-Add-1 {
  background-position: -8424px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Download {
  background-position: -8448px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Download-1 {
  background-position: -8472px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Copy {
  background-position: -8496px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Copy-1 {
  background-position: -8520px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud {
  background-position: -8544px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-1 {
  background-position: -8568px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Yes-1 {
  background-position: -8592px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Yes {
  background-position: -8616px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Remove {
  background-position: -8640px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Remove-1 {
  background-position: -8664px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Confused-Face-1 {
  background-position: -8688px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Upload-1 {
  background-position: -8712px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-No {
  background-position: -8736px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Off-1 {
  background-position: -8760px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Off {
  background-position: -8784px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-No-1 {
  background-position: -8808px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Error {
  background-position: -8832px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Error-1 {
  background-position: -8856px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Attachment-1 {
  background-position: -8880px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Download-1 {
  background-position: -8904px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Clock {
  background-position: -8928px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cloud-Add-1 {
  background-position: -8952px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Upside-Down-Face {
  background-position: -8976px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Upside-Down-Face-1 {
  background-position: -9000px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Squinting-Face {
  background-position: -9024px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Face-with-Open-Mouth-1 {
  background-position: -9048px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Winking-Face {
  background-position: -9072px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Winking-Face-1 {
  background-position: -9096px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Neutral-Face-1 {
  background-position: -9120px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Store-1 {
  background-position: -9144px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Relieved-Face {
  background-position: -9168px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Smiling-Face {
  background-position: -9192px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Smiling-Face-1 {
  background-position: -9216px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Pensive-Face-1 {
  background-position: -9240px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Slightly-Smiling-Face {
  background-position: -9264px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Slightly-Smiling-Face-1 {
  background-position: -9288px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Relieved-Face-1 {
  background-position: -9312px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Expressionless-Face {
  background-position: -9336px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Pensive-Face {
  background-position: -9360px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Disappointed-Face {
  background-position: -9384px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Neutral-Face {
  background-position: -9408px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Face-with-Open-Mouth {
  background-position: -9432px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Kissing-Face {
  background-position: -9456px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Kissing-Face-1 {
  background-position: -9480px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Kissing-Face-with-Smiling-Eyes {
  background-position: -9504px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Kissing-Face-with-Smiling-Eyes-1 {
  background-position: -9528px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Frowning-Face {
  background-position: -9552px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Frowning-Face-1 {
  background-position: -9576px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Face-Without-Mouth {
  background-position: -9600px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Face-Without-Mouth-1 {
  background-position: -9624px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Confused-Face {
  background-position: -9648px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Ticket {
  background-position: -9672px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Disappointed-Face-1 {
  background-position: -9696px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Expressionless-Face-1 {
  background-position: -9720px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Store {
  background-position: -9744px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Badge {
  background-position: -9768px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Card-1 {
  background-position: -9792px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Card {
  background-position: -9816px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Card-Remove {
  background-position: -9840px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Ticket-1 {
  background-position: -9864px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Certificate-Badge-1 {
  background-position: -9888px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Delivery-Fast {
  background-position: -9912px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cheque-1 {
  background-position: -9936px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Bag-1 {
  background-position: -9960px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Card-Add-1 {
  background-position: -9984px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Card-Remove-1 {
  background-position: -10008px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Card-Add {
  background-position: -10032px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Invoice {
  background-position: -10056px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Delivery-Free {
  background-position: -10080px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Cheque {
  background-position: -10104px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Shopping-Bag {
  background-position: -10128px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Discount-1 {
  background-position: -10152px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Invoice-1 {
  background-position: -10176px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Badge-1 {
  background-position: -10200px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Discount {
  background-position: -10224px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Delivery {
  background-position: -10248px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Delivery-Free-1 {
  background-position: -10272px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Delivery-1 {
  background-position: -10296px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Delivery-Fast-1 {
  background-position: -10320px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Credit-Card {
  background-position: -10344px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Certificate-Badge {
  background-position: -10368px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Credit-Card-1 {
  background-position: -10392px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Phone-1 {
  background-position: -10416px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Box {
  background-position: -10440px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Share-2-1 {
  background-position: -10464px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Box-1 {
  background-position: -10488px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Share-1 {
  background-position: -10512px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Add {
  background-position: -10536px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Phone {
  background-position: -10560px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Email {
  background-position: -10584px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Share-2 {
  background-position: -10608px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Profile-1 {
  background-position: -10632px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Share-1-filled {
  background-position: -10656px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Profile-Circle-1 {
  background-position: -10680px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Send {
  background-position: -10704px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Send-1 {
  background-position: -10728px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Profile {
  background-position: -10752px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Like {
  background-position: -10776px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Profile-Circle {
  background-position: -10800px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Dislike-1 {
  background-position: -10824px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Check {
  background-position: -10848px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Remove-1 {
  background-position: -10872px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Phone-Off {
  background-position: -10896px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Phone-Off-1 {
  background-position: -10920px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-1 {
  background-position: -10944px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Like-1 {
  background-position: -10968px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Close-1 {
  background-position: -10992px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Email-1 {
  background-position: -11016px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment {
  background-position: -11040px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Dislike {
  background-position: -11064px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Dots-1 {
  background-position: -11088px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-1 {
  background-position: -11112px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Remove {
  background-position: -11136px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Add-1 {
  background-position: -11160px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Dots {
  background-position: -11184px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-4-Square {
  background-position: -11208px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Close {
  background-position: -11232px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Comment-Check-1 {
  background-position: -11256px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-6-Circle {
  background-position: -11280px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-2 {
  background-position: -11304px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-2 {
  background-position: -11328px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-6-Circle-1 {
  background-position: -11352px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-5-Circle {
  background-position: -11376px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-5-Circle-1 {
  background-position: -11400px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-1 {
  background-position: -11424px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-3-Square {
  background-position: -11448px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-2 {
  background-position: -11472px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-5-Circle {
  background-position: -11496px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-1 {
  background-position: -11520px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-4-Square {
  background-position: -11544px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-4-Square-1 {
  background-position: -11568px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-5-Circle {
  background-position: -11592px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-3-Square-1 {
  background-position: -11616px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-3-Square-1 {
  background-position: -11640px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-2-1 {
  background-position: -11664px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-3-Square-1 {
  background-position: -11688px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Up-1-filled {
  background-position: -11712px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-7 {
  background-position: -11736px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-6-Circle {
  background-position: -11760px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-6-Circle-1 {
  background-position: -11784px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-6-Circle {
  background-position: -11808px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-5-Circle-1 {
  background-position: -11832px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-3-Square {
  background-position: -11856px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-5-Circle-1 {
  background-position: -11880px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-2-1 {
  background-position: -11904px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-4-Square {
  background-position: -11928px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Right-1-filled {
  background-position: -11952px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-3-Square {
  background-position: -11976px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-6-Circle-1 {
  background-position: -12000px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-5-Circle {
  background-position: -12024px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-6-Circle-1 {
  background-position: -12048px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-4-Square {
  background-position: -12072px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-4-Square-1 {
  background-position: -12096px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Up-4-Square {
  background-position: -12120px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-3-Square-1 {
  background-position: -12144px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Top-Left-1-filled {
  background-position: -12168px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-6-Circle {
  background-position: -12192px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-3-Square-1 {
  background-position: -12216px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-5-Circle {
  background-position: -12240px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-5-Circle-1 {
  background-position: -12264px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-2-1 {
  background-position: -12288px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-4-Square-1 {
  background-position: -12312px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-3-Square {
  background-position: -12336px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right--2-1 {
  background-position: -12360px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-2 {
  background-position: -12384px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-5-Circle {
  background-position: -12408px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-1 {
  background-position: -12432px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right-1-filled {
  background-position: -12456px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Right--2 {
  background-position: -12480px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-1-filled {
  background-position: -12504px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-6-Circle {
  background-position: -12528px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-6-Circle-1 {
  background-position: -12552px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-3-Square {
  background-position: -12576px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-5-Circle-1 {
  background-position: -12600px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-1 {
  background-position: -12624px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-4-Square-1 {
  background-position: -12648px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-2-1 {
  background-position: -12672px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-2 {
  background-position: -12696px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-2 {
  background-position: -12720px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-2-1 {
  background-position: -12744px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-1 {
  background-position: -12768px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Left-1-filled {
  background-position: -12792px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-6-Circle {
  background-position: -12816px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-6-Circle-1 {
  background-position: -12840px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-5-Circle-1 {
  background-position: -12864px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-5-Circle-1 {
  background-position: -12888px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-4-Square {
  background-position: -12912px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-4-Square-1 {
  background-position: -12936px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-3-Square {
  background-position: -12960px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-3-Square-1 {
  background-position: -12984px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-2-1 {
  background-position: -13008px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-5-Circle-1 {
  background-position: -13032px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Down-1 {
  background-position: -13056px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-6-Circle {
  background-position: -13080px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Up-4-Square-1 {
  background-position: -13104px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-6-Circle-1 {
  background-position: -13128px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-5-Circle {
  background-position: -13152px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-3-Square {
  background-position: -13176px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-1 {
  background-position: -13200px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-4-Square {
  background-position: -13224px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-3-Square-1 {
  background-position: -13248px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-1-filled {
  background-position: -13272px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Right-4-Square-1 {
  background-position: -13296px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-3-Square-1 {
  background-position: -13320px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-6-Circle {
  background-position: -13344px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-6-Circle-1 {
  background-position: -13368px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-5-Circle {
  background-position: -13392px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-2 {
  background-position: -13416px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-4-Square {
  background-position: -13440px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-4-Square-1 {
  background-position: -13464px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Arrow-Bottom-Left-3-Square {
  background-position: -13488px 0px;
  height: 24px;
  width: 24px;
}

.irmc.irmc--Volume-Up-1 {
  background-position: -13512px 0px;
  height: 24px;
  width: 24px;
}


.btn,
.header nav > ul li:last-of-type > a {
  cursor: pointer;
  padding: 6px 32px;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn:hover, .header nav > ul li:last-of-type > a:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.btn.btn--hero, .header nav > ul li:last-of-type > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 40px;
  min-height: 40px;
  padding: 12px;
  border-radius: 25px;
  color: #60266C;
  background: #D1773D;
  background-repeat: no-repeat;
}

.btn.btn--hero:hover, .header nav > ul li:last-of-type > a:hover {
  color: #152261;
  background-size: 150%;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.btn.btn--rounded, .header nav > ul li:last-of-type > a.btn--rounded {
  border-radius: 5px;
}

.btn.btn--orange, .header nav > ul li:last-of-type > a.btn--orange {
  color: #152261;
  background: #D1773D;
}

.btn.btn--green, .header nav > ul li:last-of-type > a.btn--green {
  color: #FFFFFF;
  background: #D1773D;
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}

.section.section--partners {
  padding-top: 0px;
  padding-bottom: 0px;
}

.section.section--history {
  padding-top: 0px;
}

.section.section--partners .container, .section.section--documents .container, .section.section--certificate .container {
  padding-bottom: 0px;
}

.section.section--certificate {
  background-image: url("/assets/midia/background.jpg");
  background-size: cover;
}

.section.section--hero {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-height: 576px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: url("/assets/midia/hero-background.jpg");
  background-size: cover;
}

.section.section--hero .container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section.section--documents#pictures {
  background-image: url("/assets/midia/green-bg.jpg");
  background-size: cover;
}

.section.section--roadmap {
  background: #90B234;
}

.section.section--highlights {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0px;
}

.section.section--register > .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section.section--questions .row {
  row-gap: 24px;
}

@media (min-width: 1025px) {
  .section.section--questions {
    padding-top: 8px;
  }
  .section.section--questions .container {
    padding: 0px;
  }
}

.tag.tag--hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 4px;
          column-gap: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 6px 16px;
  border-radius: 25px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
}

.tag:hover {
  background: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 3px 15px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 3px 15px rgba(255, 255, 255, 0.2);
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 32px 8px;
}

.hero__content .hero__content__logo {
  width: 100%;
  max-width: 290px;
}

.hero__content .hero__content__logo > img {
  width: 100%;
}

.hero__content .hero__content__logo + * {
  margin-top: 24px;
}

.hero__content .hero__content__timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  width: 100%;
}

.hero__content .hero__content__timer h2 {
  text-align: center;
  color: #ffffff;
}

.hero__content .hero__content__timer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
          column-gap: 12px;
}

.hero__content .hero__content__timer > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.hero__content .hero__content__timer > div > div span {
  color: #ffffff;
}

.hero__content .hero__content__timer > div > div .timer__number {
  position: relative;
  font-size: 295%;
  font-style: normal;
  line-height: normal;
  text-align: center;
  margin-left: 20px;
}

.hero__content .hero__content__timer > div > div .timer__number::before {
  content: ":";
  position: absolute;
  left: -24px;
  top: -6px;
}

.hero__content .hero__content__timer > div > div.hidden-element + * .timer__number, .hero__content .hero__content__timer > div > div:first-of-type .timer__number {
  margin-left: 0px;
}

.hero__content .hero__content__timer > div > div.hidden-element + * .timer__number::before, .hero__content .hero__content__timer > div > div:first-of-type .timer__number::before {
  display: none;
}

.hero__content .hero__content__timer > div > div:last-of-type .timer__number {
  color: #F7E02C;
}

.hero__content .hero__content__timer + * {
  margin-top: 32px;
}

.hero__content .hero__content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
}

.hero__content .hero__content__info .info__tags,
.hero__content .hero__content__info .info__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.hero__content .hero__content__info .info__tags {
  gap: 32px;
}

.hero__content .hero__content__info .info__buttons {
  gap: 16px;
}

.hero__content .hero__content__info .info__buttons .btn + .btn, .hero__content .hero__content__info .info__buttons .header nav > ul li:last-of-type > a + .btn, .header nav > ul .hero__content .hero__content__info .info__buttons li:last-of-type > a + .btn, .hero__content .hero__content__info .info__buttons .header nav > ul li:last-of-type > .btn + a, .header nav > ul .hero__content .hero__content__info .info__buttons li:last-of-type > .btn + a, .hero__content .hero__content__info .info__buttons .header nav > ul li:last-of-type > a + a, .header nav > ul .hero__content .hero__content__info .info__buttons li:last-of-type > a + a {
  padding: 12px 56px;
}

@media (min-width: 1025px) {
  .hero__content {
    max-width: 45%;
    padding: 0px;
  }
  .hero__content .hero__content__logo {
    max-width: 450px;
  }
  .hero__content .hero__content__info .info__buttons .btn + .btn, .hero__content .hero__content__info .info__buttons .header nav > ul li:last-of-type > a + .btn, .header nav > ul .hero__content .hero__content__info .info__buttons li:last-of-type > a + .btn, .hero__content .hero__content__info .info__buttons .header nav > ul li:last-of-type > .btn + a, .header nav > ul .hero__content .hero__content__info .info__buttons li:last-of-type > .btn + a, .hero__content .hero__content__info .info__buttons .header nav > ul li:last-of-type > a + a, .header nav > ul .hero__content .hero__content__info .info__buttons li:last-of-type > a + a {
    padding: 12px 72px;
  }
}

.partners--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 24px 0px;
}

.partners--list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  max-width: 140px;
  aspect-ratio: 1/1;
  padding: 24px;
  border-radius: 50%;
  background: #f6f5f2;
}

.partners--list > li img {
  width: 100%;
}

@media (min-width: 767px) {
  .partners--list {
    margin-top: -64px;
  }
  .partners--list > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    max-width: 140px;
  }
}

@media (min-width: 1025px) {
  .partners--list {
    margin-top: -104px;
  }
  .partners--list > li {
    max-width: 220px;
  }
}

.history {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 24px;
  padding-bottom: 24px;
}

.history .history__text h2 + *,
.history .history__text h3 + * {
  margin-top: 24px;
}

.history .history__text p + * {
  margin-top: 32px;
}

.history .history__text p + p {
  margin-top: 24px;
}

.history .history__text .history__text__title {
  font-size: 42px;
  line-height: 52px;
  text-transform: uppercase;
}

.history .history__text .history__text__title strong {
  background-color: #C33F32;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #422279), color-stop(60%, #c33f32), to(#f7e02c));
  background-image: linear-gradient(0deg, #422279 20%, #c33f32 60%, #f7e02c 100%);
  background-size: 300%;
  background-position: -220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.history .history__text .history__text__subtitle strong {
  color: #92B542;
}

.history .history__image .history__image__effect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.history .history__image .history__image__effect .history--effect {
  overflow: hidden;
  position: relative;
  width: 70%;
}

.history .history__image .history__image__effect .history--effect::after, .history .history__image .history__image__effect .history--effect::before {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0%;
  height: 120%;
  -webkit-transition: all 0.65s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition: all 0.65s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.history .history__image .history__image__effect .history--effect::before {
  top: -22%;
  left: -30%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTg2IiBoZWlnaHQ9IjU3MyIgdmlld0JveD0iMCAwIDU4NiA1NzMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01OC43MDI3IDUzOC42MjdDNTguNzAyNyA1MzguNjI3IDE3NS4yNjUgNTM0Ljk2MyAyNDQuMTcgNTEzLjY0OUMyOTguODggNDk2LjcyNiAzMzEuNSA0ODguNzU3IDM3NiA0NjEuNUM0MzEuNzU1IDQyNy4zNDkgNDY1LjA3IDM5OC4yMzcgNDk1LjQyOSAzNTAuOTEzQzUyMS4yODcgMzEwLjYwMyA1MjcuNTQxIDI3OS40NzYgNTM1LjM1OCAyMzYuNUM1NDQuMzU5IDE4Ny4wMTYgNTM3LjcwNSAxNjEuNjMxIDUzNS4zNTggMTEyLjVDNTMzLjgzNSA4MC42MDU1IDUyNC40NjUgMzMuNzA5OSA1MjQuNDY1IDMzLjcwOTkiIHN0cm9rZT0idXJsKCNwYWludDBfbGluZWFyXzEwNDlfMTkzKSIgc3Ryb2tlLXdpZHRoPSI2Ni44MDQ5IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xMDQ5XzE5MyIgeDE9IjU4NS4wODMiIHkxPSI0NzMuMDg1IiB4Mj0iNTI1Ljg4NCIgeTI9IjMzLjUxODgiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agb2Zmc2V0PSIwLjIiIHN0b3AtY29sb3I9IiM0MjIyNzkiLz4KPHN0b3Agb2Zmc2V0PSIwLjYiIHN0b3AtY29sb3I9IiNDMzNGMzIiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRjdFMDJDIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+Cg==");
  background-size: 100%;
  background-repeat: no-repeat;
}

.history .history__image .history__image__effect .history--effect::after {
  right: -10%;
  bottom: -40%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzI4IiBoZWlnaHQ9IjYyMCIgdmlld0JveD0iMCAwIDcyOCA2MjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02OTQuMzc2IDIxNy4yNEM2OTQuMzc2IDIxNy4yNCA1OTIuNzc5IDE1OS45ODMgNTIyLjgwMSAxNDIuNTEzQzQ2Ny4yMzkgMTI4LjY0MiA0MzUuMDExIDEyNi45ODQgMzgxLjEyMSAxMjcuMjVDMzE1LjczOSAxMjcuNTczIDI3NC4wNjYgMTI2Ljc3NyAyMjMuNTgxIDE1MS41MjVDMTgwLjU3OSAxNzIuNjA1IDE1OCAxOTIuNSAxMjkuNSAyMjZDOTYuMDcyNiAyNjUuMjkyIDgyLjIxMjIgMzA0Ljg5NiA2Ni45OTA2IDMzMi45NjVDNTEuNzY5IDM2MS4wMzQgMzQuNDAxMSA0MDcuNzkgMzQuNDAxMSA0MDcuNzkiIHN0cm9rZT0idXJsKCNwYWludDBfbGluZWFyXzEwMzVfMjcwKSIgc3Ryb2tlLXdpZHRoPSI2Ni44MDQ5IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xMDM1XzI3MCIgeDE9IjIxMC4zOSIgeTE9IjAuNjYzNDMzIiB4Mj0iMzMuMjgxNyIgeTI9IjQwNy4zMDMiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzFFNzBBMSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM5MkI1NDIiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

.history .history__image .history__image__effect .history--effect img {
  width: 100%;
}

.history .history__image .history__image__effect .history--effect img#image-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.25s ease-in-out 0.45s;
  transition: all 0.25s ease-in-out 0.45s;
}

.history .history__image .history__image__effect .history--effect#effect--2::before, .history .history__image .history__image__effect .history--effect#effect--2::after {
  background-size: 100%;
}

.history .history__image .history__image__effect .history--effect#effect--2::before {
  top: -45%;
  left: -20%;
}

.history .history__image .history__image__effect .history--effect#effect--2::after {
  right: -40%;
  bottom: -50%;
}

.history .history__image .history__image__effect .history--effect#effect--2 img#image-2 {
  z-index: 1;
}

.history .history__image .history__image__effect .history--effect.history--effect--video video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.history .history__image .history__image__effect .history--effect.history--effect--video::after, .history .history__image .history__image__effect .history--effect.history--effect--video::before {
  display: none;
}

.history .history__image .history__image__effect .history--effect:hover {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🏅</text></svg>") 16 0, auto;
}

.history .history__image .history__image__effect .history--effect:hover::before {
  width: 110%;
}

.history .history__image .history__image__effect .history--effect:hover::after {
  width: 100%;
}

.history .history__image .history__image__effect .history--effect:hover img#image-2 {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.history .history__image .history__image__effect .history--effect:hover video {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.history .history__image .history__image__effect .history--effect:hover#effect--2::after, .history .history__image .history__image__effect .history--effect:hover#effect--2::before {
  width: 125%;
}

@media (min-width: 1025px) {
  .history .history__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .history .history__image .history__image__effect .history--effect {
    width: 423.25px;
    height: 520px;
  }
  .history .history__image .history__image__effect .history--effect img {
    height: 100%;
  }
  .history .history__image .history__image__effect .history--effect::after, .history .history__image .history__image__effect .history--effect::before {
    height: 100%;
    background-size: 425px;
  }
  .history .history__image .history__image__effect .history--effect::before {
    top: -10%;
    left: -20%;
  }
  .history .history__image .history__image__effect .history--effect#effect--2::before, .history .history__image .history__image__effect .history--effect#effect--2::after {
    background-size: 500px;
  }
  .history .history__image .history__image__effect .history--effect#effect--2::before {
    top: -30%;
    left: -20%;
  }
}

.timeline {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 102, 102, 0.8);
}

.timeline > .container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  max-height: 640px;
}

.timeline .timeline__content {
  position: relative;
}

.timeline .timeline__content .timeline__content__title {
  visibility: hidden;
  position: absolute;
  bottom: 8px;
  left: -12px;
  z-index: 1;
  font-size: 48px;
  font-family: "Pathway Gothic One", sans-serif;
  color: #fff;
  position: absolute;
  bottom: 8px;
  left: -12px;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.timeline .timeline__content .timeline__content__img {
  max-width: 100%;
  height: auto;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.timeline .gallery-wrapper {
  position: relative;
}

.timeline .gallery-wrapper > button {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.timeline .gallery-wrapper > button.prev {
  left: 8px;
}

.timeline .gallery-wrapper > button.next {
  right: 8px;
}

.timeline .gallery-wrapper > button:hover {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.timeline .timeline__container {
  position: relative;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 16px;
  margin: 0 auto;
  white-space: nowrap;
}

.timeline .timeline__container .timeline__container__item {
  position: relative;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(30vw - 20px);
  padding: 20px;
  opacity: 0.3;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}

.timeline .timeline__container .timeline__container__item:before {
  content: attr(data-text);
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.timeline .timeline__container .timeline__container__item.active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: calc(100vw - 20px);
}

.timeline .timeline__container .timeline__container__item.active:before,
.timeline .timeline__container .timeline__container__item.active .gallery-wrapper > button {
  opacity: 1;
}

.timeline .timeline__container .timeline__container__item.active .timeline__content__title {
  visibility: visible;
  bottom: -8px;
}

.timeline .timeline__year--list {
  overflow-x: scroll;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  width: 100%;
  height: 64px;
}

.timeline .timeline__year--list > button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0);
}

.timeline .timeline__year--list > button::before, .timeline .timeline__year--list > button::after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.timeline .timeline__year--list > button::after {
  top: 15%;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.timeline .timeline__year--list > button + button::before {
  left: -48%;
  top: 28%;
  width: 86%;
  height: 2px;
  background: #ffffff;
}

.timeline .timeline__year--list > button.active::after {
  background: #ffffff;
}

.timeline .timeline__year--list > button:hover::after, .timeline .timeline__year--list > button:active::after, .timeline .timeline__year--list > button:focus::after, .timeline .timeline__year--list > button:visited::after {
  background: #ffffff;
}

@media (min-width: 767px) {
  .timeline {
    height: 680px;
  }
  .timeline .timeline__year--list {
    overflow-x: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .timeline .timeline__year--list > button + button::before {
    top: 26%;
    width: 88%;
  }
}

@media (min-width: 1025px) {
  .timeline > .container {
    max-height: 616px;
  }
  .timeline .timeline__content .timeline__content__title {
    font-size: 66px;
  }
  .timeline .timeline__container {
    padding-left: 32px;
  }
  .timeline .timeline__container .timeline__container__item {
    width: calc(30vw - 20px);
  }
  .timeline .timeline__container .timeline__container__item.active {
    width: calc(40vw - 20px);
  }
}

.roadmap .row {
  row-gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.roadmap .roadmap__info {
  color: #000000;
}

.roadmap .roadmap__info h2 + p {
  margin-top: 24px;
}

.roadmap .roadmap__info p + p {
  margin-top: 16px;
}

.roadmap .roadmap__info .roadmap__info__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.roadmap .roadmap__info .roadmap__info__numbers > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 12px 8px;
  border-radius: 13px;
  color: #ffffff;
  background: #422279;
}

.roadmap .roadmap__info .roadmap__info__numbers > div > * {
  color: currentColor;
}

.roadmap .roadmap__info .roadmap__info__numbers > div > h4 {
  text-align: center;
  font-weight: 400;
}

.roadmap .roadmap__info .roadmap__info__numbers > div:first-of-type, .roadmap .roadmap__info .roadmap__info__numbers > div:last-of-type {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.roadmap .roadmap__map {
  width: 100%;
  min-height: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -ms-grid;
  display: grid;
  background: #feecec;
  border-radius: 5px;
}

@media (min-width: 400px) {
  .roadmap .roadmap__map {
    width: 33%;
  }
}

@media (min-width: 1025px) {
  .roadmap .roadmap__info h2 + p {
    margin-top: 40px;
  }
  .roadmap .roadmap__info p {
    max-width: 90%;
  }
  .roadmap .roadmap__info .roadmap__info__numbers {
    max-width: 90%;
    margin-top: 64px;
  }
  .roadmap .roadmap__info .roadmap__info__numbers > div {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    width: 100%;
    padding: 16px 16px;
  }
  .roadmap .roadmap__info .roadmap__info__numbers > div:first-of-type, .roadmap .roadmap__info .roadmap__info__numbers > div:last-of-type {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.documents {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 16px !important;
}

.documents .documents__info {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 24px;
  color: #000000;
}

.documents .documents__info .documents__info__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 24px;
          column-gap: 24px;
  row-gap: 16px;
}

.documents .documents__info .documents__info__buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  font-weight: 700;
  color: #000000;
  padding: 8px 16px;
  border: 3px solid transparent;
  border-radius: 5px;
  color: #051944;
}

.documents .documents__info .documents__info__buttons a:hover, .documents .documents__info .documents__info__buttons a:active, .documents .documents__info .documents__info__buttons a:focus, .documents .documents__info .documents__info__buttons a:visited {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  border-color: currentColor;
}

.documents .documents__info .documents__info__buttons a > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #422279;
}

.documents .documents__images {
  position: relative;
}

.documents .documents__images > img {
  position: relative;
  width: 100%;
  max-width: 100%;
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
}

.documents .documents__images > img:not(#image-1) {
  position: absolute;
  top: 0px;
  left: 0px;
}

.documents .documents__images #image-1 {
  -webkit-transform: rotate(-0.84deg);
          transform: rotate(-0.84deg);
  z-index: 3;
}

.documents .documents__images #image-2 {
  -webkit-transform: rotate(1.96deg);
          transform: rotate(1.96deg);
  z-index: 2;
}

.documents .documents__images #image-3 {
  -webkit-transform: rotate(5.61deg);
          transform: rotate(5.61deg);
  z-index: 1;
}

@media (min-width: 767px) {
  .documents .documents__info {
    row-gap: 32px;
  }
  .documents .documents__info .documents__info__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .documents .documents__images {
    -webkit-transform: translate(0px, 24px);
            transform: translate(0px, 24px);
  }
}

@media (min-width: 767px) {
  .documents .documents__info .documents__info__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .documents .documents__info .documents__info__buttons a {
    font-weight: 400;
  }
  .documents .documents__images {
    -webkit-transform: translate(0px, -16px);
            transform: translate(0px, -16px);
  }
}

#pictures .documents__info {
  color: #ffffff;
}

#pictures .documents__info .documents__info__buttons a {
  color: #ffffff;
}

.highlights > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 280px;
  max-width: 1664px;
  padding: 0px 24px;
}

.highlights.highlights--medals {
  width: 100%;
  height: 280px;
  background: #051944;
  background-image: url("/assets/midia/premiacao-background.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: left, center;
}

.highlights.highlights--medals > .row {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.highlights.highlights--medals .highlights--medals__stamp {
  display: none;
}

.highlights.highlights--medals .highlights--medals__stamp #stamp {
  width: 100%;
  -webkit-transform: translate(0%, 30%);
          transform: translate(0%, 30%);
}

.highlights.highlights--medals .highlights--medals__info {
  position: relative;
  z-index: 1;
}

.highlights.highlights--medals .highlights--medals__info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 24px;
  color: #ffffff;
}

.highlights.highlights--medals .highlights--medals__info > div h2 {
  text-align: right;
  background: rgba(5, 25, 68, 0.1);
}

.highlights.highlights--medals .highlights--medals__medal {
  position: absolute;
  top: 10%;
  left: -2%;
  width: 49%;
  padding: 0 16px;
}

.highlights.highlights--medals .highlights--medals__medal #medal {
  width: 100%;
}

.highlights.highlights--vip {
  width: 100%;
  padding: 32px 0px;
  color: #ffffff;
  background: url("/assets/midia/green-bg.jpg");
  background-size: cover;
}

.highlights.highlights--vip > .row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.highlights.highlights--vip .highlights--vip__products {
  position: relative;
  height: 100%;
}

.highlights.highlights--vip .highlights--vip__products #vip-kit {
  z-index: 1;
  width: 100%;
  max-width: 785px;
}

.highlights.highlights--vip .highlights--vip__info {
  position: relative;
  z-index: 1;
}

.highlights.highlights--vip .highlights--vip__info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  color: #ffffff;
}

.highlights.highlights--vip .highlights--vip__info div ul {
  padding-left: 24px;
  list-style: disc;
}

.highlights.highlights--vip .highlights--vip__info .highlights--vip__price {
  row-gap: 0px;
  text-align: center;
  color: #000000;
  border-radius: 13px;
  background: #ffffff;
  /* .price{
          display: none;
        } */
}

.highlights.highlights--vip .highlights--vip__info .highlights--vip__price h4 {
  padding: 8px 0px;
}

.highlights.highlights--free {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.highlights.highlights--free .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 24px;
  padding-top: 32px;
  padding-bottom: 8px;
  border-radius: 45px;
  background-color: #f6f5f2;
  -webkit-transform: translateY(-2%);
          transform: translateY(-2%);
}

.highlights.highlights--free .highlights--free__insc {
  background: #ffffff;
  border-radius: 13px;
  font-size: larger;
  text-align: center;
}

.highlights.highlights--free .highlights--free__insc h4 {
  padding: 8px;
}

.highlights.highlights--free .highlights--free__insc a {
  display: -ms-grid;
  display: grid;
  width: 100%;
}

.highlights.highlights--free .highlights--free__info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.highlights.highlights--free .highlights--free__kit {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.highlights.highlights--free .highlights--free__kit > img {
  width: auto;
  max-height: 460px;
}

@media (min-width: 767px) {
  .highlights.highlights--medals {
    background-image: url("/assets/midia/premiacao-background.jpg"), -webkit-gradient(linear, left top, right top, from(#051944), to(#051944));
    background-image: url("/assets/midia/premiacao-background.jpg"), linear-gradient(to right, #051944, #051944);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
  }
  .highlights.highlights--medals .highlights--medals__stamp {
    display: block;
    position: absolute;
    left: 1%;
    bottom: 0%;
  }
  .highlights.highlights--medals .highlights--medals__stamp #stamp {
    max-width: 234px;
  }
  .highlights.highlights--medals .highlights--medals__medal {
    top: -15%;
    left: auto;
    right: 0%;
    width: 28%;
  }
  .highlights.highlights--vip {
    padding: 64px 0px;
  }
  .highlights.highlights--free .row {
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
  }
}

@media (min-width: 1025px) {
  .highlights.highlights--medals {
    /* background-size: 40%, cover;
      background-position:
        0% 50%,
        center; */
    background-position: left, center;
  }
  .highlights.highlights--medals > .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .highlights.highlights--medals .highlights--medals__stamp {
    position: relative;
  }
  .highlights.highlights--medals .highlights--medals__stamp #stamp {
    max-width: 295px;
  }
  .highlights.highlights--medals .highlights--medals__medal {
    position: relative;
    width: 20%;
  }
  .highlights.highlights--medals .highlights--medals__medal #medal {
    -webkit-transform: translate(0%, -25%);
            transform: translate(0%, -25%);
  }
  .highlights.highlights--vip {
    padding: 120px 0px;
  }
  .highlights.highlights--vip > .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .highlights.highlights--vip .highlights--vip__products {
    position: relative;
    margin-left: 5.3333333333%;
    height: 280px;
  }
  .highlights.highlights--vip .highlights--vip__products #vip-kit {
    position: absolute;
    left: -0%;
    top: -28%;
    z-index: 1;
  }
  .highlights.highlights--vip .highlights--vip__info {
    margin-right: 5.3333333333%;
  }
  .highlights.highlights--free .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 80px;
    padding-bottom: 8px;
  }
  .highlights.highlights--free .highlights--free__info {
    margin-left: 5.3333333333%;
  }
  .highlights.highlights--free .highlights--free__kit {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-right: 5.3333333333%;
  }
}

.certificate {
  padding-bottom: 0px;
}

.certificate > .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.certificate .certificate__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 48px;
          column-gap: 48px;
  row-gap: 64px;
  width: 980px;
  padding: 25px 8px;
  z-index: 1;
}

.certificate .certificate__main::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #90B234;
  color: #152261;
  /* background-image: image("crow-bg.png"), get-color(gradient, type2);
      background-size: 64px, cover;
      background-repeat: repeat, no-repeat; */
  -webkit-filter: drop-shadow(-9px 9px 14px rgba(42, 12, 97, 0.15));
          filter: drop-shadow(-9px 9px 14px rgba(42, 12, 97, 0.15));
  z-index: -1;
}

.certificate .certificate__main > div {
  width: 100%;
}

.certificate .certificate__main .certificate__main__classification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 40px;
  height: 100%;
}

.certificate .certificate__main .certificate__main__classification > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 12px 40px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #152261;
  background: #C02C4A;
}

.certificate .certificate__main .certificate__main__classification > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.certificate .certificate__main .certificate__main__classification > div h3,
.certificate .certificate__main .certificate__main__classification > div span {
  padding: 16px;
}

.certificate .certificate__main .certificate__main__classification > div h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 9px;
  color: #051944;
  background: #F7E02C;
}

.certificate .certificate__main .certificate__main__classification > div span {
  border-radius: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
}

.certificate .certificate__main .certificate__main__classification > div span > a {
  font-weight: bold;
  color: #C33F32;
}

.certificate .certificate__main .certificate__main__classification > div span > a:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.certificate .certificate__main .certificate__main__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  height: 100%;
}

.certificate .certificate__main .certificate__main__number h2 {
  color: #051944;
}

.certificate .certificate__main .certificate__main__number form {
  width: 100%;
}

.certificate .certificate__main .certificate__main__number form fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.certificate .certificate__main .certificate__main__number form fieldset label {
  color: #051944;
}

.certificate .certificate__main .certificate__main__number form fieldset > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.certificate .certificate__main .certificate__main__number form fieldset > div input {
  width: 100%;
  height: 56px;
  padding-left: 8px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1.15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.certificate .certificate__main .certificate__main__number form fieldset button {
  position: absolute;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 19px 35px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #152261;
  background: #C02C4A;
}

@media (min-width: 767px) {
  .certificate .certificate__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .certificate .certificate__main > div {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}

@media (min-width: 1025px) {
  .certificate .certificate__main {
    height: 334.374px;
  }
  .certificate .certificate__main::after {
    border-radius: 17px;
    -webkit-transform: skew(-0.02turn, 0deg);
            transform: skew(-0.02turn, 0deg);
  }
  .certificate .certificate__main .certificate__main__classification > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .certificate .certificate__main .certificate__main__classification > div h3,
  .certificate .certificate__main .certificate__main__classification > div span {
    padding: 6px 14px;
  }
}

.register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 40px;
  padding-left: 16px;
  padding-right: 16px;
}

.register .register__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}

.register .register__info > div {
  color: #051944;
}

.register .register__info > div:not(.register__info__msg) {
  text-align: center;
}

.register .register__info > div:not(.register__info__msg) h2 + * {
  margin-top: 16px;
}

.register .register__info > div.register__info__msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 16px;
  border-radius: 9px;
  background: #F7E02C;
}

.register .register__form {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 24px 0px;
}

.register .register__form > * {
  width: 100%;
}

.register .register__form h4,
.register .register__form label {
  color: #000000;
}

.register .register__form h4 + * {
  margin-top: 24px;
}

.register .register__form h3 {
  text-align: center;
  color: #051944;
}

.register .register__form h3 a {
  color: #C33F32;
  text-decoration: underline;
}

.register .register__form h3 a:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.register .register__form h3 + * {
  margin-top: 32px;
}

.register .register__form > div,
.register .register__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.questions .questions__options > ul {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  width: 100%;
}

.questions .questions__options > ul > li {
  width: 100%;
  padding: 8px 16px;
  border-radius: 5px;
  background: #cccccc;
}

.questions .questions__options > ul > li.active {
  background: #666666;
}

.questions .questions__options > ul > li:not(.active):hover {
  cursor: pointer;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.questions .questions__content {
  display: none;
  /* .price {
      display: none;
    } */
}

.questions .questions__content > div {
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 5px;
  background: #cccccc;
}

.questions .questions__content > div h3 + * {
  margin-top: 24px;
}

.questions .questions__content > div p + p,
.questions .questions__content > div p + ol {
  margin-top: 16px;
}

.questions .questions__content > div p + h4 {
  margin-top: 40px;
}

.questions .questions__content > div h4 + * {
  margin-top: 24px;
}

.questions .questions__content > div ol {
  list-style: decimal-leading-zero;
  padding-left: 40px;
}

.questions .questions__content > div ol > li + li {
  margin-top: 8px;
}

.questions .questions__content > div:not(.active) {
  display: none;
}

@media (min-width: 1025px) {
  .questions .questions__content {
    display: block;
  }
}

.popup {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  z-index: 99999;
}

.popup .popup__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 720px;
  padding: 16px;
}

.popup .popup__box .popup__box__header {
  position: absolute;
  top: 24px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  padding-right: 24px;
}

.popup .popup__box .popup__box__header button {
  padding: 4px 16px;
  border-radius: 5px;
}

.popup .popup__box .popup__box__header button:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.popup .popup__box .popup__box__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.popup .popup__box .popup__box__body img {
  width: 100%;
  max-width: 100%;
}

.popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal--question {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px 8px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.modal--question .modal--question__content {
  position: relative;
  overflow-y: auto;
  width: 100%;
  max-height: 90%;
  padding: 16px;
  border-radius: 5px;
  background-color: #ffffff;
}

.modal--question .modal--question__body h3 + * {
  margin-top: 24px;
}

.modal--question .modal--question__body p + p,
.modal--question .modal--question__body p + ol {
  margin-top: 16px;
}

.modal--question .modal--question__body p + h4 {
  margin-top: 40px;
}

.modal--question .modal--question__body h4 + * {
  margin-top: 24px;
}

.modal--question .modal--question__body ol {
  list-style: decimal-leading-zero;
  padding-left: 32px;
}

.modal--question .modal--question__body ol > li + li {
  margin-top: 8px;
}

.modal--question .modal--question__close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 24px;
  background: none;
}

@media (min-width: 1025px) {
  .modal--question {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */