@charset "UTF-8";
/****** Colors Variables ******/
:root {
  /** Purple **/
  --purple: rgb(38, 20, 71);
  --purple-100: rgba(38, 20, 71, 0.1);
  --purple-200: rgba(38, 20, 71, 0.2);
  --purple-300: rgba(38, 20, 71, 0.3);
  --purple-400: rgba(38, 20, 71, 0.4);
  --purple-500: rgba(38, 20, 71, 0.5);
  --purple-600: rgba(38, 20, 71, 0.6);
  --purple-700: rgba(38, 20, 71, 0.7);
  --purple-800: rgba(38, 20, 71, 0.8);
  --purple-900: rgba(38, 20, 71, 0.9);
  /** Violet **/
  --violet: rgb(131, 56, 236);
  --violet-100: rgba(131, 56, 236, 0.1);
  --violet-200: rgba(131, 56, 236, 0.2);
  --violet-300: rgba(131, 56, 236, 0.3);
  --violet-400: rgba(131, 56, 236, 0.4);
  --violet-500: rgba(131, 56, 236, 0.5);
  --violet-600: rgba(131, 56, 236, 0.6);
  --violet-700: rgba(131, 56, 236, 0.7);
  --violet-800: rgba(131, 56, 236, 0.8);
  --violet-900: rgba(131, 56, 236, 0.9);
  /** Dark Blue **/
  --darkblue: rgb(0, 90, 143);
  --darkblue-100: rgba(0, 90, 143, 0.1);
  --darkblue-200: rgba(0, 90, 143, 0.2);
  --darkblue-300: rgba(0, 90, 143, 0.3);
  --darkblue-400: rgba(0, 90, 143, 0.4);
  --darkblue-500: rgba(0, 90, 143, 0.5);
  --darkblue-600: rgba(0, 90, 143, 0.6);
  --darkblue-700: rgba(0, 90, 143, 0.7);
  --darkblue-800: rgba(0, 90, 143, 0.8);
  --darkblue-900: rgba(0, 90, 143, 0.9);
  /** Light Blue **/
  --lightblue: rgb(58, 134, 255);
  --lightblue-100: rgba(58, 134, 255, 0.1);
  --lightblue-200: rgba(58, 134, 255, 0.2);
  --lightblue-300: rgba(58, 134, 255, 0.3);
  --lightblue-400: rgba(58, 134, 255, 0.4);
  --lightblue-500: rgba(58, 134, 255, 0.5);
  --lightblue-600: rgba(58, 134, 255, 0.6);
  --lightblue-700: rgba(58, 134, 255, 0.7);
  --lightblue-800: rgba(58, 134, 255, 0.8);
  --lightblue-900: rgba(58, 134, 255, 0.9);
  /** Amber **/
  --amber: rgb(255, 190, 11);
  --amber-100: rgba(255, 190, 11, 0.1);
  --amber-200: rgba(255, 190, 11, 0.2);
  --amber-300: rgba(255, 190, 11, 0.3);
  --amber-400: rgba(255, 190, 11, 0.4);
  --amber-500: rgba(255, 190, 11, 0.5);
  --amber-600: rgba(255, 190, 11, 0.6);
  --amber-700: rgba(255, 190, 11, 0.7);
  --amber-800: rgba(255, 190, 11, 0.8);
  --amber-900: rgba(255, 190, 11, 0.9);
  /** Turquoise **/
  --turquoise: rgb(27, 153, 139);
  --turquoise-100: rgba(27, 153, 139, 0.1);
  --turquoise-200: rgba(27, 153, 139, 0.2);
  --turquoise-300: rgba(27, 153, 139, 0.3);
  --turquoise-400: rgba(27, 153, 139, 0.4);
  --turquoise-500: rgba(27, 153, 139, 0.5);
  --turquoise-600: rgba(27, 153, 139, 0.6);
  --turquoise-700: rgba(27, 153, 139, 0.7);
  --turquoise-800: rgba(27, 153, 139, 0.8);
  --turquoise-900: rgba(27, 153, 139, 0.9);
  /** Poppy **/
  --poppy: rgb(237, 37, 78);
  --poppy-100: rgba(237, 37, 78, 0.1);
  --poppy-200: rgba(237, 37, 78, 0.2);
  --poppy-300: rgba(237, 37, 78, 0.3);
  --poppy-400: rgba(237, 37, 78, 0.4);
  --poppy-500: rgba(237, 37, 78, 0.5);
  --poppy-600: rgba(237, 37, 78, 0.6);
  --poppy-700: rgba(237, 37, 78, 0.7);
  --poppy-800: rgba(237, 37, 78, 0.8);
  --poppy-900: rgba(237, 37, 78, 0.9);
  /** Gray **/
  --gray-100: #e8e8e8;
  --gray-200: #c8c8c8;
  --gray-300: #adadad;
  --gray-400: #8f8f8f;
  --gray-500: #616161;
  --gray-600: #333333;
  --gray-800: #131313;
  /****** Transparência Branco ******/
  --white-transp-100: rgba(255, 255, 255, 0.1);
  --white-transp-200: rgba(255, 255, 255, 0.2);
  --white-transp-300: rgba(255, 255, 255, 0.3);
  --white-transp-400: rgba(255, 255, 255, 0.4);
  --white-transp-500: rgba(255, 255, 255, 0.5);
  --white-transp-600: rgba(255, 255, 255, 0.6);
  --white-transp-700: rgba(255, 255, 255, 0.7);
  --white-transp-800: rgba(255, 255, 255, 0.8);
  --white-transp-900: rgba(255, 255, 255, 0.9);
  /****** Transparência Preto ******/
  --black-transp-100: rgba(0, 0, 0, 0.1);
  --black-transp-200: rgba(0, 0, 0, 0.2);
  --black-transp-300: rgba(0, 0, 0, 0.3);
  --black-transp-400: rgba(0, 0, 0, 0.4);
  --black-transp-500: rgba(0, 0, 0, 0.5);
  --black-transp-600: rgba(0, 0, 0, 0.6);
  --black-transp-700: rgba(0, 0, 0, 0.7);
  --black-transp-800: rgba(0, 0, 0, 0.8);
  /** Utility **/
  --darker: #00000033;
  --darkest: #000000AA;
}

/****** Gradientes Variables ******/
:root {
  --gradient-gray: radial-gradient(ellipse at 15% bottom, var(--gray-300), white 150%),
      linear-gradient(to bottom, white 100px, rgba(255, 255, 255, 0) 15%);
  --gradient-gray-dark: radial-gradient(circle at 65% 0%, var(--gray-200) 0%, var(--gray-300) 100%);
  --gradient-violet: radial-gradient(circle at 65% 0%, var(--violet) 0%, #692ec1 100%);
  --gradient-amber: radial-gradient(circle at 50% 0%, var(--amber) 33%, #eaaa07 100%);
  --gradient-poppy: radial-gradient(circle at 50% 0%, var(--poppy) 33%, #e02147 100%);
  /* Background Main Content */
  --gradient-main-content: radial-gradient(circle at right top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
      radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
      linear-gradient(135deg, white, var(--gray), white);
  /* Background Image */
  --bg-aurora: url(../img/bg_aurora.jpg);
}

/****** Size and Spaces Variables ******/
:root {
  --rem: 16px;
  --header-height: 4.5rem;
  --page-header-height: 35vh;
  --hero-header-height: 85vh;
  --padding-tag-button: 0.1rem 0.5rem;
  --padding-button: 0.5rem 1.25rem;
  --padding-input: 0.25rem 0.75rem;
  --padding-input-textarea: 0.75rem;
  --padding-input-select: 0.25rem 2rem 0.25rem 0.75rem;
}

/****** Soft Border Variables ******/
:root {
  --soft-border-size: 0.75rem;
  --soft-border-radius: 1.5rem;
  --soft-border-color: var(--white-transp-400);
}

/****** Base Styles ******/
html {
  font-size: var(--rem);
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: black;
}

::-moz-selection {
  background-color: var(--lightblue);
  color: var(--amber);
}

::selection {
  background-color: var(--lightblue);
  color: var(--amber);
}

/* Fonts */
/** Roboto Regular **/
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/** Roboto Slab - 100 a 900**/
.roboto-slab-regular {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/** Roboto Slab - 100 a 700 **/
.roboto-mono-regular {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Links */
a {
  color: var(--poppy);
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: var(--purple);
}

/* Head Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
}

h1 {
  font-size: 1.8rem !important;
  font-weight: 200 !important;
}

h2 {
  font-size: 1.6rem !important;
  font-weight: 300 !important;
}

h3 {
  font-size: 1.4rem !important;
  font-weight: 400 !important;
}

h4 {
  font-size: 1.3rem !important;
  font-weight: 500 !important;
}

h5 {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}

h6 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.smalllabel {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* Forms */
input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=date],
input[type=button],
input[type=submit],
input[type=reset],
input[type=file],
input[type=color],
input[type=range],
input[type=search],
input[type=tel],
input[type=url],
input[type=time],
input[type=datetime-local],
select,
textarea,
.input-group {
  max-width: 100%;
  box-sizing: border-box;
  outline-width: 1px;
  outline-offset: -0.375rem;
  outline-style: solid;
  border-width: 0.375rem;
  border-style: solid;
}

.input-item,
.input-group {
  border-color: var(--gray-100);
  background-color: white;
}

.input-item {
  color: black;
  background-color: white;
  outline-color: var(--darker);
}

.input-item[disabled] {
  color: black;
  background-color: var(--gray-100);
  outline-color: var(--darker);
}

.input-item:not(textarea, select) {
  padding: var(--padding-input);
  border-radius: 9999px;
}

textarea.input-item {
  padding: var(--padding-input-textarea);
  border-radius: var(--soft-border-radius);
}

select.input-item {
  padding: var(--padding-input-select);
  border-radius: 9999px;
}

.input-item:focus {
  outline-color: var(--darkest);
  border-color: var(--gray-200);
}

.input-item.error {
  outline-color: black;
  border-color: var(--poppy);
}

.input-group {
  border-radius: 9999px;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  outline-color: var(--darker);
}

.input-group .input-item {
  border: none;
  outline: none;
}

.input-group .input-button {
  background: var(--purple);
  color: white;
  border-width: 0.3rem 0.3rem 0.3rem 0;
  outline-width: 0;
  margin-left: -0.35rem;
}

.input-group .input-button:hover {
  background-color: var(--gray-600);
}

.input-group .input-file {
  padding: 0 0.5rem 0 0;
  color: var(--gray-400);
}

.input-group .input-file::file-selector-button {
  background: var(--purple);
  color: white;
  border-width: 1px;
  height: 100%;
  margin-right: 0.3rem;
}

.input-group .input-file:hover::file-selector-button {
  background-color: var(--gray-600);
}

input[type=checkbox],
input[type=radio] {
  border: var(--violet) solid 12px !important;
  background-color: var(--violet);
  width: 1.5rem;
  height: 1.5rem;
}

select.input-item {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/icons/arrow_drop_down_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg);
  background-position: right 5px top 50%;
  background-repeat: no-repeat;
}

/* Background Color Styles */
body {
  background: radial-gradient(ellipse at 50% 100%, rgb(255, 255, 255) 0%, #e8e8e8 75%) top left no-repeat;
}

/** Gradients **/
.bg-gradient-page-header {
  background-image: var(--bg-aurora);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% center;
  background-blend-mode: soft-light;
}

.bg-gradient-login {
  background-image: url(../img/bg_aurora.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.bg-gradient-gray {
  background: var(--gradient-gray) top left no-repeat !important;
  background-blend-mode: hard-light !important;
}

.bg-gradient-gray-dark {
  background: var(--gradient-gray-dark) top left no-repeat !important;
  background-blend-mode: soft-light !important;
}

.bg-gradient-lightblue {
  background: radial-gradient(circle at 65% 0%, var(--lightblue-800) 0%, var(--lightblue) 100%) top left no-repeat !important;
}

.bg-gradient-violet {
  background: var(--gradient-violet) !important;
  background-blend-mode: soft-light !important;
}

.bg-gradient-amber {
  background: var(--gradient-amber) !important;
  background-blend-mode: soft-light !important;
}

.bg-gradient-poppy {
  background: var(--gradient-poppy) !important;
  background-blend-mode: soft-light !important;
}

/** Aurora Gradients **/
.bg-gradient-aurora {
  background: var(--bg-aurora);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: soft-light;
}

.bg-gradient-aurora-lightblue {
  background: radial-gradient(ellipse at 50% 50%, rgb(255, 255, 255), rgba(255, 255, 255, 0.25)), radial-gradient(circle at 50% 50%, rgb(255, 255, 255), rgba(255, 255, 255, 0.2)), radial-gradient(circle at 60% top, var(--amber-300), rgba(255, 255, 255, 0) 40%), radial-gradient(circle at 80% top, var(--poppy-400), rgba(255, 255, 255, 0) 40%), linear-gradient(60deg, rgba(255, 255, 255, 0) 60%, var(--lightblue-500)), radial-gradient(circle at 25% top, var(--lightblue-400), rgba(255, 255, 255, 0) 50%), radial-gradient(ellipse at 75% bottom, var(--lightblue-400), rgba(255, 255, 255, 0) 50%), radial-gradient(circle at 30% bottom, var(--amber-300), rgba(255, 255, 255, 0) 40%), radial-gradient(circle at 20% 200%, var(--poppy-500), rgba(255, 255, 255, 0) 40%), linear-gradient(60deg, var(--lightblue-500), rgba(255, 255, 255, 0) 30%) !important;
  background-blend-mode: soft-light !important;
}

.bg-gradient-aurora-light {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(circle at left top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 25%), radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 50%), radial-gradient(circle at 0% bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 100%), radial-gradient(circle at 100% bottom, var(--lightblue), rgba(255, 255, 255, 0) 20%), radial-gradient(circle at 100% bottom, var(--amber-500), rgba(255, 255, 255, 0) 25%), radial-gradient(circle at 100% bottom, var(--violet), rgba(255, 255, 255, 0) 50%), radial-gradient(circle at 15% bottom, var(--poppy-300), rgba(255, 255, 255, 0) 35%), radial-gradient(circle at 0% bottom, var(--lightblue), rgba(255, 255, 255, 0) 35%), var(--amber-100) !important;
  background-blend-mode: hard-light !important;
}

.bg-gradient-aurora-green {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2)), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2)), radial-gradient(circle at 80% top, var(--poppy-300), rgba(255, 255, 255, 0) 35%), linear-gradient(60deg, rgba(255, 255, 255, 0) 65%, var(--violet-400)), radial-gradient(circle at 20% bottom, var(--amber-400), rgba(255, 255, 255, 0) 35%), linear-gradient(60deg, var(--turquoise-400), rgba(255, 255, 255, 0) 35%) !important;
  background-blend-mode: soft-light !important;
}

/** White Trasparencies **/
.bg-white-transp-100 {
  background-color: var(--white-transp-100);
}

.bg-white-transp-200 {
  background-color: var(--white-transp-200);
}

.bg-white-transp-300 {
  background-color: var(--white-transp-300);
}

.bg-white-transp-400 {
  background-color: var(--white-transp-400);
}

.bg-white-transp-500 {
  background-color: var(--white-transp-500);
}

.bg-white-transp-600 {
  background-color: var(--white-transp-600);
}

.bg-white-transp-700 {
  background-color: var(--white-transp-700);
}

.bg-white-transp-800 {
  background-color: var(--white-transp-800);
}

/* Color Styles */
.bg-darkblue {
  background-color: var(--darkblue);
}

.color-darkblue {
  color: var(--darkblue) !important;
}

.bg-amber {
  background-color: var(--amber);
}

.color-amber {
  color: var(--amber) !important;
}

.bg-turquoise {
  background-color: var(--turquoise);
}

.color-turquoise {
  color: var(--turquoise) !important;
}

.bg-poppy {
  background-color: var(--poppy);
}

.color-poppy {
  color: var(--poppy) !important;
}

.bg-purple {
  background-color: var(--purple);
}

.color-purple {
  color: var(--purple) !important;
}

.bg-poppy {
  background-color: var(--poppy);
}

.color-poppy {
  color: var(--poppy) !important;
}

.bg-violet {
  background-color: var(--violet);
}

.color-violet {
  color: var(--violet) !important;
}

.bg-lightblue {
  background-color: var(--lightblue);
}

.color-lightblue {
  color: var(--lightblue) !important;
}

.bg-orange {
  background-color: var(--orange);
}

.color-orange {
  color: var(--orange) !important;
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.color-gray-100 {
  color: var(--gray-100) !important;
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

.color-gray-200 {
  color: var(--gray-200) !important;
}

.bg-gray-300 {
  background-color: var(--gray-300);
}

.color-gray-300 {
  color: var(--gray-300) !important;
}

.bg-gray-400 {
  background-color: var(--gray-400);
}

.color-gray-400 {
  color: var(--gray-400) !important;
}

.bg-gray-600 {
  background-color: var(--gray-600);
}

.color-gray-600 {
  color: var(--gray-600) !important;
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

.color-gray-800 {
  color: var(--gray-800) !important;
}

.bg-white {
  background-color: white;
}

.bg-white-transp-100 {
  background-color: var(--white-transp-100);
}

.bg-white-transp-200 {
  background-color: var(--white-transp-100);
}

.bg-white-transp-300 {
  background-color: var(--soft-border-color);
  /*0.5*/
}

.color-white {
  color: white !important;
}

.bg-black {
  background-color: black;
}

.color-black {
  color: black !important;
}

/* Soft Border */
.soft-border {
  outline-style: solid;
  outline-color: var(--soft-border-color);
  outline-width: var(--soft-border-size);
  margin: var(--soft-border-size);
  border-radius: var(--soft-border-radius);
}

/* Buttons */
/** Button Config **/
.button.active,
.button.active:hover,
.button.disabled,
.button.disabled:hover {
  cursor: default;
}

.button {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  border-style: solid;
  border-width: 1px;
  padding: var(--padding-button);
  cursor: pointer;
}

.button i {
  font-size: inherit;
}

.button .label {
  text-align: center;
}

.button .label + i {
  margin-left: 0.25rem;
  margin-right: -0.5rem;
  font-size: 1.75rem;
  line-height: 1rem;
}

.button i + .label {
  margin-left: 0.5rem;
}

.button.button-sm {
  padding: var(--padding-tag-button);
  font-size: 0.9rem;
}

.button.button-sm i {
  font-size: 0.9rem;
}

.button:hover,
.button:visited {
  text-decoration: none;
}

.button.icon-button {
  text-align: center;
  padding: 0;
}

.button.icon-button i {
  font-size: x-large;
  margin: 0;
  width: 100%;
}

.button.tag-button {
  padding: var(--padding-tag-button);
  font-size: 0.9rem;
}

.button.tag-button i + .label {
  margin-left: 0.25rem;
}

.button.toggle-button {
  height: 1.5rem;
  width: 2.5rem;
  padding: var(--padding-tag-button);
  font-size: 0.9rem;
  position: relative;
}

.button.toggle-button::before {
  content: " ";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  top: 0.07rem;
  left: 0.075rem;
  position: absolute;
}

.button.toggle-button.checked::before {
  left: unset;
  right: 0.075rem;
}

/** Button Colors **/
/*** Default ***/
.button.active,
.button.button.disabled {
  border-color: var(--darker);
}

.button.active,
.button.active:hover,
.button.active i,
.button.active:hover i {
  background-color: var(--purple);
  color: white;
}

.button.disabled,
.button.disabled:hover,
.button.button-icon-label.disabled i,
.button.button-icon-label.disabled:hover i {
  color: var(--gray-400);
  background-color: var(--gray-100);
}

.button {
  color: black;
  background-color: var(--gray-200);
  border-color: var(--gray-200);
}

.button {
  color: black;
  background-color: var(--gray-200);
  border-color: var(--gray-200);
}

.button:hover {
  color: black;
  background-color: white;
}

.button:hover i {
  color: var(--gray-500);
}

.button.tag-button {
  color: black;
  background-color: white;
}

.button.tag-button:hover i {
  color: black;
}

.button.toggle-button {
  background-color: var(--gray-200);
  border-color: var(--gray-500);
}

.button.toggle-button.checked {
  border-color: black;
}

.button.toggle-button::before {
  background-color: white;
}

.button.toggle-button.checked {
  background-color: var(--purple);
  border: 1px solid black;
}

/*** Primary ***/
.button.button-primary {
  color: white;
  background-color: var(--darkblue);
  border-color: var(--darkblue);
}

.button.button-primary i {
  color: white;
}

.button.button-primary:hover {
  color: black;
  background-color: white;
}

.button.button-primary:hover i {
  color: var(--darkblue);
}

.button.tag-button.button-primary {
  color: black;
  background-color: white;
  border-color: var(--darkblue);
}

.button.tag-button.button-primary:hover {
  color: white;
  background-color: var(--darkblue);
  border-color: black;
}

.button.tag-button.button-primary:hover i {
  color: black;
}

/*** Secondary ***/
.button.button-secondary {
  border-color: var(--violet);
  color: white;
  background-color: var(--violet);
}

.button.button-secondary i {
  color: black;
}

.button.button-secondary:hover i {
  color: var(--violet);
}

.button.button-secondary:hover {
  color: black;
  background-color: white;
}

.button.tag-button.button-secondary {
  color: black;
  background-color: white;
  border-color: var(--violet);
}

.button.tag-button.button-secondary:hover {
  color: white;
  background-color: var(--violet);
  border-color: var(--darkest);
}

.button.tag-button.button-secondary:hover i {
  color: black;
}

/*** Tertiary ***/
.button.button-tertiary {
  border-color: var(--lightblue);
  color: black;
  background-color: var(--lightblue);
}

.button.button-tertiary i {
  color: white;
}

.button.button-tertiary:hover i {
  color: var(--lightblue);
}

.button.button-tertiary:hover {
  color: black;
  background-color: white;
}

.button.tag-button.button-tertiary {
  color: black;
  background-color: white;
  border-color: var(--lightblue);
}

.button.tag-button.button-tertiary:hover {
  color: black;
  background-color: var(--lightblue);
  border-color: var(--darkest);
}

.button.tag-button.button-tertiary:hover i {
  color: white;
}

/*** Amber ***/
.button.button-amber {
  border-color: var(--amber);
  color: black;
  background-color: var(--amber);
}

.button.button-amber i {
  color: white;
}

.button.button-amber:hover i {
  color: black;
}

.button.button-amber:hover {
  color: black;
  background-color: white;
}

.button.tag-button.button-amber {
  color: black;
  background-color: white;
  border-color: var(--amber);
}

.button.tag-button.button-amber:hover {
  color: black;
  background-color: var(--amber);
  border-color: black;
}

.button.tag-button.button-amber:hover i {
  color: white;
}

/*** Turquoise ***/
.button.button-turquoise {
  border-color: var(--turquoise);
  color: black;
  background-color: var(--turquoise);
}

.button.button-turquoise i {
  color: white;
}

.button.button-turquoise:hover {
  color: black;
  background-color: white;
}

.button.button-turquoise:hover i {
  color: var(--turquoise);
}

.button.tag-button.button-turquoise {
  color: black;
  background-color: white;
  border-color: var(--turquoise);
}

.button.tag-button.button-turquoise:hover {
  color: black;
  background-color: var(--turquoise);
  border-color: black;
}

.button.tag-button.button-turquoise:hover i {
  color: white;
}

/*** Poppy ***/
.button.button-poppy {
  border-color: var(--poppy);
  color: black;
  background-color: var(--poppy);
}

.button.button-poppy i {
  color: white;
}

.button.button-poppy:hover i {
  color: var(--poppy);
}

.button.button-poppy:hover {
  color: black;
  background-color: white;
}

.button.tag-button.button-poppy {
  color: black;
  background-color: white;
  border-color: var(--poppy);
}

.button.tag-button.button-poppy:hover {
  color: black;
  background-color: var(--poppy);
  border-color: black;
}

.button.tag-button.button-poppy:hover i {
  color: white;
}

/*** Purple ***/
.button.button-purple {
  color: white;
  background-color: var(--purple);
  border-color: var(--purple);
}

.button.button-purple i {
  color: white;
}

.button.button-purple:hover {
  color: black;
  background-color: white;
}

.button.button-purple:hover i {
  color: var(--purple);
}

.button.tag-button.button-purple {
  color: black;
  background-color: white;
  border-color: var(--purple);
}

.button.tag-button.button-purple:hover {
  color: white;
  background-color: var(--purple);
  border-color: black;
}

.button.tag-button.button-purple:hover i {
  color: black;
}

/*** Light ***/
.button.button-light {
  border-color: var(--darkest);
  color: black;
  background-color: white;
}

.button.button-light:hover i {
  color: black;
}

.button.button-light:hover {
  color: black;
  background-color: var(--gray-100);
}

.button.tag-button.button-light {
  color: black;
  background-color: white;
  border-color: var(--gray-200);
}

.button.tag-button.button-light:hover {
  color: black;
  background-color: var(--gray-100);
  border-color: var(--darker);
}

.button.tag-button.button-light:hover i {
  color: black;
}

/*** Dark ***/
.button.button-dark {
  border-color: var(--darkest);
  color: white;
  background-color: var(--gray-600);
}

.button.button-dark i {
  color: black;
}

.button.button-dark:hover i {
  color: var(--gray-600);
}

.button.button-dark:hover {
  color: black;
  background-color: var(--gray-200);
}

.button.tag-button.button-dark {
  color: black;
  background-color: white;
  border-color: var(--gray-600);
}

.button.tag-button.button-dark:hover {
  color: white;
  background-color: var(--gray-400);
  border-color: black;
}

.button.tag-button.button-dark:hover i {
  color: white;
}

/* Header */
/** Hero **/
.hero-header {
  background: url(http://35.163.177.62/wp-content/uploads/2025/05/Figure-3-1.png), url(../img/bg_aurora.jpg);
  background-size: 60vw, cover;
  background-position: bottom right, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  background-blend-mode: normal;
}

.hero-content {
  padding-top: 10rem;
  padding-bottom: 2rem;
}

.hero-content .page-title {
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  font-weight: 400;
  /* text-wrap: nowrap; */
}

.hero-content .page-description {
  font-weight: 300;
  line-height: 2.5rem;
  vertical-align: baseline;
  max-width: 56ch;
}

.hero-content .calltoaction .card {
  background-color: var(--white-transp-900);
  padding: 1rem;
}

.hero-content .calltoaction .card h1 {
  font-family: "Roboto Slab", serif;
  font-size: 1.8rem;
  color: var(--purple);
}

.hero-content .calltoaction .card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--black);
}

.hero-content .calltoaction .card .icon {
  font-size: 2.5rem;
  border-radius: 9999px;
  padding: 1rem;
  background-color: white;
  overflow: visible;
}

.hero-content .calltoaction .card a:hover {
  color: var(--poppy);
}

.hero-content .calltoaction .card:hover {
  background-color: white;
}

.hero-content .calltoaction .card:hover .icon {
  background-color: var(--purple);
  color: var(--poppy);
}

/** Page Header **/
.page-header {
  background-image: var(--bg-aurora);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% center;
  background-blend-mode: soft-light;
}

.page-header .main-nav {
  background-color: var(--soft-border-color);
}

.page-header-content {
  min-height: var(--page-header-height);
  padding: 0 2rem;
}

.page-header .page-title {
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  font-weight: 400;
  /* text-wrap: nowrap; */
}

.page-header .page-description {
  font-weight: 300;
  line-height: 2.5rem;
  vertical-align: baseline;
  max-width: 56ch;
}

.section-title {
  font-family: "Roboto Slab", serif;
  font-size: 1.8rem;
  font-weight: 200;
}

/** Main Nav **/
.header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.main-nav {
  color: black;
  padding: 0 2rem;
  height: var(--header-height);
}

.main-nav .logo {
  z-index: 99999;
}

.main-nav .button,
.main-nav .button:visited {
  color: inherit;
}

.main-nav .button,
.submenu .button {
  font-size: 1rem;
  overflow: hidden;
  z-index: 99999;
  background: transparent;
  border: transparent;
}

.main-nav .button:hover {
  color: white;
  background-color: var(--purple);
  text-decoration: none;
}

.main-nav .button i,
.submenu .button i {
  color: var(--purple);
}

.main-nav .button:hover,
.submenu:hover .button {
  text-decoration: none;
  color: white;
  background-color: var(--purple);
  border-color: black;
}

.main-nav .button:hover i,
.submenu:hover .button i {
  color: var(--poppy);
}

.main-nav .icon-button i {
  font-size: 2.2rem;
  color: var(--purple);
}

.main-nav .icon-button:hover {
  background-color: var(--purple);
}

.main-nav .icon-button:hover i {
  color: white;
}

.main-nav .icon-button .badge {
  right: 0;
  top: 0;
}

.main-nav.bg-transparent .submenu:hover .button i {
  color: var(--poppy);
}

.main-nav.bg-transparent .icon-button {
  color: var(--purple);
}

.main-nav.bg-transparent .icon-button:hover {
  color: white;
}

.main-nav.bg-transparent .icon-button {
  background-color: var(--white-transp-200);
}

.main-nav.bg-transparent .icon-button:hover {
  background-color: var(--purple);
}

/** Submenu **/
.submenu .submenu-container {
  display: none;
  right: 0;
  top: calc(var(--header-height) - 3rem);
  padding: 2rem 0;
}

.submenu.submenu-full .submenu-container {
  top: calc(var(--header-height) - 1rem);
  height: calc(var(--page-header-height) + var(--header-height) - 3rem);
  width: 100%;
  padding: 1.75rem 0.75rem 1.25rem;
}

.hero-header .submenu.submenu-full .submenu-container {
  height: calc(var(--hero-header-height) + var(--header-height) - 3rem - 12rem);
}

.submenu:hover .submenu-container {
  display: inline-block;
  z-index: 99999999999;
}

.submenu .submenu-container .card {
  background-color: white;
  padding: 1.5rem;
}

.submenu.submenu-full .submenu-container .card {
  background-color: white;
  padding: 2rem 2.5rem;
}

.submenu .sidebar-item a {
  font-size: 1rem;
  color: var(--darkblue);
  padding: var(--padding-input);
}

.submenu .sidebar-item a:hover {
  color: white;
  background-color: var(--purple);
  text-decoration: none;
}

.submenu .sidebar-item a i {
  margin-right: 0.5rem;
  color: var(--poppy);
}

.submenu .sidebar-item a i.material-symbols-rounded {
  font-size: 1.3rem;
}

.submenu .sidebar-item a:hover i {
  color: var(--amber);
}

.submenu .sidebar-title,
.details-text {
  text-transform: uppercase;
  font-size: 0.8rem;
}

.details-text i {
  font-size: inherit;
  margin-right: 0.1rem;
}

.submenu .sidebar-title {
  font-weight: 700;
  color: var(--gray-800);
  margin: 0.25rem 0.5rem 0.75rem;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

/** Breadcrumb **/
.breadcrumb {
  font-size: 0.95rem;
  background-color: var(--white-transp-300);
}

.breadcrumb.color-white a {
  color: white;
}

.breadcrumb.color-black a {
  color: black;
}

.breadcrumb a:hover .icon {
  text-decoration: none !important;
}

.breadcrumb a .icon {
  color: #c5a9fd;
}

.breadcrumb-dark {
  font-size: 0.95rem;
  background-color: var(--black-transp-100);
}

.breadcrumb-dark.color-white a {
  color: white;
}

.breadcrumb-dark.color-black a {
  color: black;
}

.breadcrumb-dark a:hover .icon {
  text-decoration: none !important;
}

/** Toolbar **/
.context-nav .button {
  border-color: var(--darkest) !important;
}

.context-nav .button:hover {
  border-color: var(--darkest) !important;
}

.context-nav .input-item {
  background-color: var(--white-transp-700);
  border-color: transparent;
}

.context-nav .input-item:focus {
  border-color: white;
}

.context-nav .input-item::-moz-placeholder {
  color: var(--gray-500);
}

.context-nav .input-item::placeholder {
  color: var(--gray-500);
}

/* Footer */
.footer-wrapper {
  background: var(--bg-aurora);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: soft-light;
}

/* Content Components */
/** Sidebar **/
.sidebar {
  overflow: hidden;
  background-color: var(--soft-border-color);
}

.sidebar .sidebar-content {
  padding: 0.5rem 1.5rem 1.25rem;
  background-color: white;
  border-radius: var(--soft-border-radius);
}

.sidebar .sidebar-item a {
  font-size: 1rem;
  color: var(--darkblue);
  padding: var(--padding-input);
}

.sidebar .sidebar-item a:hover {
  color: white;
  background-color: var(--purple);
  text-decoration: none;
}

.sidebar .sidebar-item a i {
  margin-right: 0.5rem;
  color: var(--poppy);
}

.sidebar .sidebar-item a:hover i {
  color: var(--amber);
}

.sidebar .sidebar-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
  padding: 1rem 0 1rem;
}

.sidebar hr {
  border: 1px solid var(--gray-100);
  margin: 0.25rem 0;
}

/** Tabs **/
.tab-nav .tab-item.active .button {
  border-color: var(--darkest);
}

.tab-nav .tab-item.disabled .button {
  border-color: var(--darker);
}

.tab-nav .tab-item.active .button,
.tab-nav .tab-item.active .button:hover {
  background-color: var(--purple);
  color: white;
  cursor: default;
}

.tab-nav .tab-item.disabled .button,
.tab-nav .tab-item.disabled .button:hover {
  color: var(--gray-400);
  background-color: var(--gray-100);
  cursor: default;
}

.tab-nav .tab-item .button {
  margin-bottom: 0.75rem;
}

.tab-nav .tab-item .button {
  font-size: 1.1rem;
}

.tab-nav .tab-item:not(.active):not(.disabled) .button {
  background-color: white;
  color: black;
  cursor: pointer;
}

.tab-nav .tab-item:not(.active):not(.disabled):hover .button {
  background-color: var(--darkblue);
  color: white;
}

.tab-nav .tab-item .tab-marker {
  height: 0.3rem;
  border-radius: 9999px;
  margin-bottom: -0.15rem;
}

.tab-nav .tab-item.active .tab-marker {
  background-color: var(--purple);
}

.tab-content {
  padding: 2rem;
}

.tab-content .card {
  outline-color: transparent;
}

/** Basic Cards **/
.card-group {
  overflow: hidden;
}

.card-group .card {
  border-radius: 0;
}

.card {
  border-radius: var(--soft-border-radius);
  overflow: hidden;
}

.card > p > small {
  white-space: nowrap;
}

/*** Default Post Cards ***/
.postcard .card {
  background-color: var(--white-transp-700);
  padding: 0;
  color: var(--gray-500);
}

.postcard:hover .card {
  background-color: white;
  color: black;
  cursor: pointer;
}

.postcard .card .thumb {
  border-radius: var(--soft-border-radius) var(--soft-border-radius) 0 0;
  overflow: hidden;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.postcard .card h1 {
  font-family: "Roboto Slab", serif;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  line-height: 1.75rem;
  color: black;
}

.postcard .card p.content-text {
  display: -webkit-box;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Views */
/** Login **/
.login-wrapper {
  background-color: var(--soft-border-color);
  color: var(--gray-300);
  text-align: center;
}

.login-wrapper a {
  color: var(--purple);
  text-align: center;
}

.login-footer {
  font-size: 0.9rem;
}

.login-footer a {
  text-align: center;
}

.login-footer p.divisor {
  border-left: 1px solid white;
}

/** WordPress **/
/*** Eventos ***/
.eventos .eventos-container {
  background-size: cover;
  width: 100%;
}

.eventos .eventos-container:nth-child(3n+1) {
  background-color: var(--amber);
}

.eventos .eventos-container:nth-child(3n+2) {
  background-color: var(--lightblue);
}

.eventos .eventos-container:nth-child(3n+3) {
  background-color: var(--violet);
}

/*** Números ***/
.numeros-content > .card:nth-child(5n+1) {
  background: var(--lightblue);
}

.numeros-content > .card:nth-child(5n+2) {
  background: var(--violet);
}

.numeros-content > .card:nth-child(5n+3) {
  background: var(--poppy);
}

.numeros-content > .card:nth-child(5n+4) {
  background: var(--turquoise);
}

.numeros-content > .card:nth-child(5n+5) {
  background: var(--turquoise);
}

/*** Sobre Nós ***/
.sobre-content > * {
  margin-bottom: 1.2rem;
  line-height: 1.75rem;
}

/*** Destaques ***/
.destaques-content .calltoaction .card {
  background-color: var(--white-transp-900);
  padding: 1rem;
}

.destaques-content .calltoaction .card h1 {
  font-family: "Roboto Slab", serif;
  font-size: 1.8rem;
  color: var(--purple);
}

.destaques-content .calltoaction .card .icon {
  font-size: 2.5rem;
  border-radius: 9999px;
  padding: 1rem;
  background-color: white;
  overflow: visible;
}

/*** Soluções ***/
.solucoes-principal > .card {
  background: var(--gradient-violet) !important;
  background-blend-mode: soft-light !important;
}

.solucoes-principal > .card h2 {
  background: var(--amber);
}

.solucoes-extra > .card {
  background: var(--gray-100);
}

/*** Recursos ***/
.recursos-container > .card {
  background-color: var(--soft-border-color);
}

.recursos-container > .card:nth-child(2n+1) h1 {
  background: var(--amber);
  color: black;
}

.recursos-container > .card:nth-child(2n+2) h1 {
  background: var(--violet);
  color: white;
}

/*** Contato ***/
.contato-content a.calltoaction {
  text-decoration: none;
  background: white;
  color: black;
}

.contato-content a.calltoaction i {
  color: var(--poppy);
}

.contato-content a.calltoaction:hover {
  background: var(--gradient-violet);
  color: white;
}

.contato-content a.calltoaction:hover i {
  color: black;
}

.contato-map-wrapper {
  background: var(--soft-border-color);
}

/*** Política ***/
.politica-content > * {
  margin-bottom: 1.2rem;
  line-height: 1.75rem;
}

/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-button-prev::after, .swiper-button-next::after {
  z-index: 99;
  font-size: 20px;
  padding: 10px;
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  color: #fff;
  aspect-ratio: 1/1;
}