:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.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-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .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-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.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:not(.swiper-watch-progress),
.swiper-watch-progress .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 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .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: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &: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-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .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-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::-moz-placeholder {
    opacity: 1;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::-moz-placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .pointer-events-none {
    pointer-events: none;
  }
  .static {
    position: static;
  }
  .\!mt-\[25px\] {
    margin-top: 25px !important;
  }
  .mt-5\! {
    margin-top: calc(var(--spacing) * 5) !important;
  }
  .mt-\[45px\]\! {
    margin-top: 45px !important;
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .table {
    display: table;
  }
  .w-11\! {
    width: calc(var(--spacing) * 11) !important;
  }
  .flex-1 {
    flex: 1;
  }
  .transform {
    transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
  }
  .resize {
    resize: both;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-stretch {
    align-items: stretch;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-2\.5 {
    gap: calc(var(--spacing) * 2.5);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-5 {
    gap: calc(var(--spacing) * 5);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .gap-7 {
    gap: calc(var(--spacing) * 7);
  }
  .gap-9 {
    gap: calc(var(--spacing) * 9);
  }
  .gap-11 {
    gap: calc(var(--spacing) * 11);
  }
  .gap-\[25px\] {
    gap: 25px;
  }
  .gap-y-\[29px\] {
    row-gap: 29px;
  }
  .text-center {
    text-align: center;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}
:root {
  --primary-blue: #162634;
  --primary-gold: #be9058;
  --primary-black: #3e3232;
  --primary-gray: #f5f5f5;
  --primary-liner: linear-gradient(90deg, rgba(22, 38, 52, 1) 0%, rgba(65, 123, 174, 1) 100%);
  --dark-500: #9e9e9e;
  --gray-50: #f9fafb;
  --gray-100: #f2f4f7;
  --gray-200: #f9f9f9;
  --gray-400: #98a2b3;
  --black-75: #3e3232bf;
  --theme-color: #2a2a2a;
  --text-color-dark: #0f0f0f;
  --text-color-blog: #0f0f0f;
  --text-color-black: #000000;
  --text-color-gray: #505050;
  --text-color-blue: #162634;
  --text-color-black-blue: #2d3150;
  --background-theme: #ffffff;
  --background-card: #ffffff;
  --background-navigate: #162634;
  --background-dropdown: #f8f8f8;
  --background-pagination: #f5f5f5;
  --background-results: #fbfbfb;
  --dropdown-hover: #eaeaea;
  --border-input: 1px solid #e2e2e2;
  --border-table: 1px solid #ececec;
  --border-result: 1px solid #efefef;
}
[theme="dark"]:root {
  --primary-blue: #283745;
  --primary-gold: #be9058;
  --primary-black: #f9fafb;
  --primary-gray: #162634;
  --primary-liner: linear-gradient(90deg, rgb(237, 237, 237) 0%, rgb(255, 255, 255) 100%);
  --dark-500: #9e9e9e;
  --gray-50: #283745;
  --gray-100: #283745;
  --gray-200: #162634;
  --gray-400: #98a2b3;
  --black-75: #f9fafbbf;
  --theme-color: #f2f4f7;
  --text-color-dark: #f2f4f7;
  --text-color-blog: #f9fafb;
  --text-color-black: #f9fafb;
  --text-color-gray: #f9fafb;
  --text-color-blue: #f9fafb;
  --text-color-black-blue: #f9fafb;
  --background-theme: #162634;
  --background-card: #283745;
  --background-navigate: #0e1820;
  --background-dropdown: #283745;
  --background-pagination: #283745;
  --background-results: #162634;
  --dropdown-hover: #162634;
  --border-input: 1px solid #3d5266;
  --border-table: 1px solid #283745;
  --border-result: 1px solid #283745;
}
.container-regular {
  width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-family: "UniSansSemiBold";
  letter-spacing: -0.03em;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 25px;
}
.section-title {
  font-size: 48px;
  line-height: 52px;
  width: 721px;
  padding-top: 50px;
}
.section-subtitle {
  font-family: "UniSansSemiBold";
  font-size: 20px;
  line-height: 117%;
  color: var(--dark-500);
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (width < 1440px) {
  .container-regular {
    width: 640px;
  }
  .section-title {
    font-size: 36px;
    width: 100%;
  }
}
@media screen and (width < 800px) {
  .container-regular {
    width: 355px;
  }
  .section-title {
    font-size: 20px;
    line-height: 23px;
    width: 100%;
    padding: 20px 0;
  }
}
@media screen and (width < 360px) {
  .container-regular {
    width: auto;
  }
}
@font-face {
  font-family: "UniSansLight";
  src: url("../assets/fonts/Uni%20Sans%20Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "UniSansRegular";
  src: url("../assets/fonts/Uni%20Sans%20Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "UniSansSemiBold";
  src: url("../assets/fonts/Uni%20Sans%20SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "UniSansBold";
  src: url("../assets/fonts/Uni%20Sans%20Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  word-break: break-word;
}
button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}
body {
  font-family: "UniSansRegular", sans-serif;
  font-size: 14px;
  font-weight: normal;
  background-color: var(--background-theme);
  letter-spacing: 0px;
  color: var(--text-color-blue);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner-wrapper {
  height: 220px;
  background-image: url(../assets/images/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner-wrapper .banner-content {
  height: 100%;
}
.banner-wrapper .banner-content .banner-main {
  text-align: center;
  margin-top: 87px;
  width: 724px;
}
.banner-wrapper .banner-content .banner-main .title {
  background: var(--primary-liner);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-family: "UniSansSemiBold";
  font-size: 64px;
  line-height: 64px;
  margin-bottom: 14px;
}
[theme="dark"] .banner-wrapper {
  background-image: url(../assets/images/banner-dark.png);
}
@media screen and (width < 1440px) {
  .banner-wrapper {
    height: 179px;
  }
  .banner-wrapper .banner-content .banner-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: 511px;
  }
  .banner-wrapper .banner-content .banner-main .title {
    font-size: 40px;
  }
}
@media screen and (width < 800px) {
  .banner-wrapper {
    height: 151px;
  }
  .banner-wrapper .banner-content .banner-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: 307px;
  }
  .banner-wrapper .banner-content .banner-main .title {
    font-size: 32px;
    line-height: 40px;
    width: 250px;
  }
}
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.blog-content-header {
  font-family: "UniSansLight";
  font-size: 24px;
  line-height: 127%;
  text-align: center;
}
.blog-content-header p {
  word-break: break-word;
}
.blog-content-main > div {
  gap: 28px;
}
.blog-content-main img {
  height: 400px;
  width: 100%;
  border-radius: 32px;
}
.blog-content-description {
  height: 100%;
  gap: 45px;
}
.blog-content-description p {
  font-size: 24px;
  line-height: 130%;
  font-family: "UniSansLight";
}
.blog-content-description p.semibold-desc {
  font-family: "UniSansSemiBold";
}
.blog-content-btn {
  border-radius: 12px;
  background-color: var(--background-navigate);
  color: #fff;
  padding: 20px;
  font-size: 20px;
  line-height: 22px;
  cursor: pointer;
  text-align: center;
}
@media screen and (width < 1440px) {
  .blog-content-header {
    font-size: 20px;
  }
  .blog-content-header p {
    font-size: 20px !important;
  }
  .blog-content-description {
    gap: 24px;
  }
  .blog-content-description p {
    font-size: 20px !important;
  }
  .blog-content-main > div {
    gap: 24px;
  }
  .blog-content-main img {
    height: 100%;
  }
}
@media screen and (width < 800px) {
  .blog-content {
    gap: 20px;
  }
  .blog-content-header {
    font-size: 15px;
  }
  .blog-content-header p {
    font-size: 15px !important;
    line-height: 25px !important;
  }
  .blog-content-description p {
    font-size: 15px !important;
    line-height: 25px !important;
  }
  .blog-content-main > div {
    flex-direction: column;
  }
  .blog-content-main img {
    height: 100%;
  }
  .blog-content-btn {
    padding: 12px;
    font-size: 15px;
  }
}
.fullscreen {
  height: 100vh;
  display: flex;
}
.fullscreen .fullscreen-left-side {
  position: relative;
  width: 50%;
}
.fullscreen .fullscreen-left-side .logo-fullscreen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;
  height: 131px;
}
.fullscreen .fullscreen-rigth-side {
  position: relative;
  width: 50%;
}
@media screen and (width < 800px) {
  .fullscreen .fullscreen-left-side {
    display: none;
  }
  .fullscreen .fullscreen-rigth-side {
    width: 100%;
  }
}
header .header-shadow {
  box-shadow: 0px 15px 5px -15px rgba(0, 0, 0, 0.1803921569);
}
header .header-wrapper {
  height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
header .header-wrapper .actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
header .navigation {
  justify-self: center;
}
header nav .navigation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav .navigation-item {
  height: 20px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  border-radius: 30px;
  transition: all 0.2s ease;
  color: var(--text-color-dark);
  cursor: pointer;
}
header nav .navigation-item a {
  font-size: 15px;
  color: var(--text-color-dark);
  transition: all 0.2s ease;
}
header nav .navigation-item:hover {
  background-color: var(--primary-gold);
  transition: all 0.2s ease;
}
header nav .navigation-item:hover a {
  color: #fff;
  transition: all 0.2s ease;
}
header nav .navigation-item:has(.icon) {
  position: relative;
  transition: transform 0.3s ease;
}
header nav .navigation-item:has(.icon):hover a {
  color: var(--text-color-dark);
}
header nav .navigation-item.open .icon {
  transform: rotate(180deg);
}
header nav .navigation-item img {
  width: 20px;
  height: 20px;
}
header .header-action {
  cursor: pointer;
  height: 37px;
  width: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 7px;
  border: 1px solid #e6e6e6;
  background: rgba(0, 0, 0, 0);
  color: var(--text-color-black);
  transition: 0.3s;
}
header .header-action.theme {
  background-color: var(--theme-color);
}
header .header-action.language {
  width: 58px;
  position: relative;
}
header .header-action.language span {
  font-size: 14px;
}
header .header-action.language .language-dropdown {
  display: none;
}
header .header-action.language .language-dropdown.open {
  display: block;
}
header .burger-menu {
  display: none;
  cursor: pointer;
}
header .burger-menu svg {
  color: #000;
}
header .header-search {
  width: 100%;
  height: 120px;
  background-color: var(--gray-200);
  align-items: center;
  transition: all 0.2s ease;
  display: none;
}
header .header-search.active {
  display: flex;
}
header .header-search-wrapper {
  display: flex;
  justify-content: space-between;
}
header .header-search-wrapper input {
  width: 100%;
  font-family: "UniSansLight";
  font-size: 20px;
  line-height: 20px;
  color: var(--text-color-black);
}
header .header-search-wrapper .header-search-clear {
  display: none;
}
header .header-search-wrapper .header-search-clear.active {
  display: block;
}
header .header-search-wrapper .header-search-submit {
  display: none;
}
header .header-search-wrapper .header-search-submit.active {
  display: block;
}
header .header-search-wrapper .header-search-submit .svg {
  width: 33px;
  height: 33px;
}
.logo a img {
  width: 125px;
  height: 85px;
}
.logo a img:first-child {
  display: block;
}
.logo a img:last-child {
  display: none;
}
.asidebar {
  position: fixed;
  top: 0;
  right: -314px;
  width: 314px;
  height: 100vh;
  background: #fff;
  box-shadow: -32px 0px 60px 0px rgba(0, 0, 0, 0.0784313725);
  transition: 0.3s ease;
  z-index: 999;
  background-color: var(--background-theme);
}
.asidebar-inner {
  height: 100%;
}
.asidebar-inner .close-sidebar svg {
  width: 100%;
  height: 100%;
}
.asidebar-menu {
  padding: 0 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.asidebar-menu .sidebar-item {
  padding: 15px 35px;
  font-size: 18px;
  font-family: "UniSansSemiBold";
  color: var(--text-color-dark);
  border-radius: 26px;
  line-height: 22px;
}
.asidebar-menu .sidebar-item:hover {
  background-color: #ededed;
  color: #0f0f0f;
}
.asidebar-menu .sidebar-item.has-dropdown {
  padding: 0;
}
.asidebar-menu .sidebar-item.has-dropdown:hover {
  background-color: rgba(0, 0, 0, 0);
  color: var(--text-color-dark);
}
.asidebar-menu .sidebar-item.has-dropdown .sidebar-item-label {
  padding: 15px 35px;
  border-radius: 26px;
}
.asidebar-menu .sidebar-item.has-dropdown .sidebar-item-label:hover {
  background-color: #ededed;
  color: #0f0f0f;
}
.asidebar-menu .sidebar-item .icon {
  transition: transform 0.3s ease;
}
.asidebar-menu .sidebar-item.open .icon {
  transform: rotate(180deg);
}
.asidebar-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.asidebar-header .actions {
  display: none;
}
.asidebar-search {
  display: none;
  width: 100%;
  background-color: var(--gray-200);
}
.asidebar-search-wrapper {
  padding: 0 20px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.asidebar-search-wrapper input {
  width: 100%;
  font-family: "UniSansLight";
  font-size: 14px;
}
.asidebar-search-clear,
.asidebar-search-submit {
  width: 24px;
  height: 24px;
  display: none;
}
.asidebar-search-clear.active,
.asidebar-search-submit.active {
  display: block;
}
.asidebar-search-clear svg,
.asidebar-search-submit svg {
  width: 100%;
  height: 100%;
}
[theme="dark"] .logo a img:first-child {
  display: none;
}
[theme="dark"] .logo a img:last-child {
  display: block;
}
@media screen and (width < 1440px) {
  header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navigation {
    display: none;
  }
  header .burger-menu {
    display: block;
  }
  header .header-search-wrapper input {
    font-size: 16px;
  }
  .logo a img {
    width: 100px;
    height: 68px;
  }
  .asidebar.active {
    right: 0;
    overflow: auto;
  }
}
@media screen and (width < 800px) {
  header .header-wrapper {
    height: 70px;
  }
  header .header-wrapper .actions .header-action {
    display: none;
  }
  header .header-wrapper .actions .burger-menu svg {
    width: 100%;
    height: 100%;
  }
  header .header-search {
    height: 70px;
  }
  header .header-search.active {
    display: flex;
  }
  header .header-search-wrapper input {
    font-size: 14px;
  }
  .logo a img {
    width: 65px;
    height: 44px;
  }
  .asidebar-header {
    border-bottom: 1px solid #e2e4e5;
  }
  .asidebar-header .close-sidebar {
    width: 37px;
    height: 37px;
  }
  .asidebar-header .actions {
    display: flex;
  }
  .asidebar-search.active {
    display: block;
  }
}
footer {
  margin-top: 60px !important;
}
footer .main-footer {
  background-color: var(--primary-blue);
  padding: 80px;
  border-radius: 32px;
}
footer .main-footer .main-footer-columns ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .main-footer .main-footer-columns ul li.main-footer-label span {
  color: #fff;
  font-size: 14px;
  line-height: 100%;
}
footer .main-footer .main-footer-columns ul li.main-footer-sublabel .footer-description span {
  font-size: 16px;
}
footer .main-footer .main-footer-columns ul li.main-footer-sublabel .footer-contact span {
  color: #e7f9fe;
}
footer .main-footer .main-footer-columns ul li.main-footer-sublabel span {
  color: var(--dark-500);
  line-height: 100%;
}
footer .main-footer .main-footer-columns ul li.main-footer-sublabel .icon {
  width: 17px;
  height: 17px;
}
footer .main-footer .main-footer-columns ul li.main-footer-sublabel .icon.location {
  width: 24px;
}
footer .main-footer .main-footer-columns.main {
  width: 374px;
}
footer .main-footer .main-footer-columns.main ul {
  gap: 10px;
}
footer .main-footer .main-footer-columns.main ul li.footer-logo {
  width: 97px;
}
footer .footer-navigation {
  display: flex;
  gap: 82px;
}
footer .sub-footer {
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .sub-footer .copyright {
  letter-spacing: 0;
  color: #000;
  font-size: 15px;
}
footer .sub-footer .socials ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .sub-footer .socials ul li {
  border-radius: 50%;
  background-color: var(--primary-blue);
  padding: 10px;
}
@media screen and (width < 1440px) {
  footer .main-footer {
    padding: 80px 75px;
  }
  footer .footer-navigation {
    display: none;
  }
  footer .sub-footer .copyright {
    font-size: 13px;
  }
  footer .sub-footer .socials ul li {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}
@media screen and (width < 800px) {
  footer {
    margin-top: 20px !important;
  }
  footer .main-footer {
    padding: 25px;
  }
  footer .sub-footer {
    padding: 25px 0;
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
  footer .sub-footer .copyright {
    text-align: center;
  }
  footer .sub-footer .socials ul li {
    width: 35px;
    height: 35px;
  }
}
.card {
  position: relative;
  background-color: var(--gray-50);
  padding: 45px;
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
}
.card.second-content {
  padding-bottom: 36px;
}
.card.night {
  background: linear-gradient(0deg, var(--primary-blue), var(--primary-blue)), linear-gradient(95.4deg, rgba(13, 13, 13, 0.2) 1.82%, rgba(0, 0, 0, 0.2) 46.78%, rgba(0, 0, 0, 0.2) 100%), radial-gradient(103.51% 76.08% at 14.81% 80.9%, rgba(255, 245, 0, 0.15) 17.8%, rgba(0, 0, 0, 0.078) 54.17%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0.093) 100%);
}
.card-header > div {
  gap: 25px;
}
.card-header-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
.card-header-icon {
  min-width: 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #162634;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-header-icon img {
  height: -moz-max-content;
  height: max-content;
  width: 44px;
}
.card-header-title {
  font-family: "UniSansSemiBold";
  font-size: 40px;
  line-height: 40px;
}
.card-header-subtitle {
  font-size: 40px;
  font-family: "UniSansSemiBold";
  line-height: 37px;
}
.card-header-description {
  font-size: 24px;
  line-height: 33px;
  color: var(--gray-400);
  width: 550px;
}
.card-body-description {
  font-family: "UniSansLight";
  font-size: 20px;
  line-height: 30px;
  color: var(--text-color-black);
  margin-top: 45px;
}
.card-body-image {
  cursor: pointer;
  margin-top: 36px;
}
.card-info {
  width: 536px;
}
@media screen and (width < 1440px) {
  .card {
    padding: 30px;
    padding-top: 45px;
  }
  .card.second-content {
    padding-bottom: 0px;
  }
  .card-header-content {
    gap: 20px;
  }
  .card-header-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
  .card-header-subtitle {
    font-size: 32px;
  }
  .card-header-title {
    font-size: 16px;
    line-height: 20px;
  }
  .card-body-description {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
  }
  .card-body-image {
    margin-top: 26px;
  }
  .card-info {
    width: 100%;
  }
}
@media screen and (width < 800px) {
  .card {
    padding: 25px;
  }
  .card-header > div {
    flex-direction: column;
  }
  .card-header-content {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  .card-header-icon {
    min-width: 51px;
    width: 51px;
    height: 51px;
  }
  .card-header-subtitle {
    font-size: 20px;
  }
  .card-header-description {
    width: 100%;
    font-size: 16px;
  }
  .card-header-title {
    font-size: 20px;
    line-height: 37px;
  }
  .card-body-image {
    display: none;
  }
  .card-body-description {
    margin-top: 20px;
  }
}
.card-collaboration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 142px;
  border-radius: 24px;
  background-color: var(--gray-100);
  cursor: pointer;
  overflow: hidden;
}
@media screen and (width < 1440px) {
  #collaboration .container-regular {
    width: auto;
  }
}
@media screen and (width < 800px) {
  .card-collaboration {
    width: 200px;
    height: 96px;
  }
  .card-collaboration img {
    width: 130px;
  }
}
.card-person {
  position: relative;
  width: 100%;
  height: 377px;
}
.card-person-image {
  position: relative;
  padding-top: 8px;
  padding-left: 8px;
  width: 256px;
  height: 315px;
}
.card-person-image img {
  width: 256px;
  position: relative;
  z-index: 2;
}
.card-person-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 132px;
  height: 229px;
  background-color: #162634;
  z-index: 1;
}
.card-person-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 56px;
  height: 138px;
  background-color: var(--primary-gold);
  z-index: 1;
}
.card-person-description {
  position: absolute;
  bottom: 25px;
  right: 0;
  z-index: 3;
  background-color: var(--background-card);
  box-shadow: 0px 89.76px 145.86px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 19px;
  padding: 16px 18px 13px 12px;
}
.card-person-description .card-person-fullname {
  color: var(--text-color-black-blue);
  font-family: "UniSansSemiBold";
  font-size: 20px;
  line-height: 100%;
}
.card-person-description .card-person-position {
  margin-top: 6px;
  color: #9c9fbb;
  font-size: 15px;
  line-height: 100%;
}
.card-person-bottom-grid {
  position: absolute;
  bottom: 0;
  right: 20px;
  height: 34px;
  width: 68px;
  z-index: 4;
}
.card-news {
  position: relative;
  padding: 10px;
  padding-bottom: 17px;
  border-radius: 12px;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.0705882353);
  background-color: var(--background-card);
  width: 405px;
}
.card-news-image {
  height: 278px;
  border-radius: 12px;
  overflow: hidden;
}
.card-news-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-news-content-title {
  padding: 16px 6px;
  padding-bottom: 13px;
  font-size: 24px;
  font-family: "UniSansSemiBold";
  color: var(--primary-black);
}
.card-news-content-description {
  padding: 0 6px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--black-75);
  height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-news-btn {
  margin-top: 15px;
}
.card-news-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 25px;
  background-color: var(--primary-gray);
  color: var(--primary-black);
  width: 100%;
  border-radius: 12px;
}
.card-news-btn a .desc {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.1px;
}
.card-news-btn a .icon {
  width: 16px;
  height: 16px;
}
@media screen and (width < 800px) {
  .card-news {
    padding-bottom: 10px;
    width: 261px;
  }
  .card-news-image {
    height: 207px;
  }
  .card-news-content-title {
    padding: 10px 6px;
    font-size: 16px;
  }
  .card-news-content-description {
    padding: 0;
    font-size: 15px;
    height: auto;
  }
  .card-news-btn {
    margin-top: 15px;
  }
  .card-news-btn a {
    padding: 15px;
  }
  .card-news-btn a .desc {
    font-size: 14px;
  }
}
.card-upload {
  padding: 25px;
  display: flex;
  gap: 25px;
}
.card-upload .card-logo {
  min-width: 55px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #162634;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-upload .card-logo img {
  width: 27px;
  height: 27px;
}
.card-upload .card-main {
  display: flex;
  flex-direction: column;
}
.card-upload .card-main .title {
  font-family: "UniSansSemiBold";
  font-size: 24px;
  line-height: 37px;
  color: var(--text-color-blue);
  margin-bottom: 26px;
}
.card-upload .card-main .description {
  font-family: "UniSansLight";
  font-size: 20px;
  line-height: 30px;
  color: var(--text-color-black);
  margin-bottom: 26px;
}
.card-upload .card-main .action {
  font-family: "UniSansSemiBold";
  font-size: 20px;
  line-height: 30px;
  color: #2f86ea;
}
@media screen and (width < 1440px) {
  .card-upload .card-main .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
  }
  .card-upload .card-main .description,
  .card-upload .card-main .action {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (width < 800px) {
  .card-upload .card-main .title {
    line-height: 25px;
    margin-bottom: 37px;
  }
  .card-upload .card-main .description {
    margin-bottom: 23px;
  }
}
#navigate .navigate-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 45px 0;
  flex-wrap: wrap;
}
#navigate .navigate-content-item a {
  height: 75px;
  border-radius: 32px;
  background-color: var(--gray-100);
  color: var(--text-color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "UniSansSemiBold";
  font-size: 24px;
  line-height: 37px;
  padding: 0 30px;
  width: -moz-max-content;
  width: max-content;
}
#navigate .navigate-content-item.active a {
  background-color: var(--background-navigate);
  color: #f2f4f7;
}
@media screen and (width < 1440px) {
  #navigate .navigate-content-item a {
    font-size: 16px;
  }
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-4 .card-person {
    margin-bottom: 10px;
  }
}
@media screen and (width < 800px) {
  #navigate .navigate-content {
    margin: 30px 0;
    gap: 15px;
  }
  #navigate .navigate-content-item a {
    height: 50px;
    font-size: 15px;
  }
  .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-4 .card-person {
    margin-bottom: 10px;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pagination-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-pagination);
  border-radius: 12px;
  font-family: "UniSansSemiBold";
  font-size: 16px;
  line-height: 100%;
  color: var(--text-color-blue);
}
.pagination-item.active {
  background-color: var(--background-navigate);
  color: var(--primary-gold);
}
.pagination-btn {
  background-color: var(--primary-gold);
}
.pagination-btn img {
  width: 24px;
  height: 24px;
}
.table-responsive {
  border: var(--border-table);
  border-radius: 32px;
  overflow-x: auto;
}
.table-responsive .table {
  width: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
}
.table-responsive .table thead {
  background-color: var(--gray-100);
}
.table-responsive .table thead th {
  font-family: "UniSansSemiBold";
  font-size: 24px;
  line-height: 37px;
  color: var(--text-color-blue);
  padding: 22px 0 21px;
  text-align: left;
}
.dropdown {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-radius: 15px;
  background-color: var(--background-dropdown);
  padding: 19px 0;
  width: 100%;
}
.dropdown.asidebar-dropdown {
  position: static;
  transform: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}
.dropdown.asidebar-dropdown ul {
  padding-left: 36px;
}
.dropdown.asidebar-dropdown ul li {
  border-radius: 26px;
}
.dropdown.asidebar-dropdown ul li a {
  padding: 8px 16px;
}
.dropdown ul li {
  color: var(--text-color-dark);
  line-height: 15px;
  cursor: pointer;
  width: 100%;
}
.dropdown ul li:hover {
  background-color: var(--dropdown-hover);
}
.dropdown ul li a,
.dropdown ul li button {
  padding: 7px 18px;
  display: block;
  width: 100%;
}
.dropdown.navbar-dropdown {
  width: 221px;
  display: none;
}
.dropdown.navbar-dropdown.open {
  display: block;
}
.dropdown.asidebar-dropdown {
  width: 100%;
  display: none;
}
.dropdown.asidebar-dropdown.open {
  display: block;
}
#banner-main {
  margin-top: 9px;
}
#banner-main .banner-wrapper {
  position: relative;
  height: 710px;
}
#banner-main .banner-wrapper .banner-content {
  position: relative;
}
#banner-main .banner-wrapper .banner-content .banner-main {
  margin-top: 180px;
}
#banner-main .banner-wrapper .banner-content .banner-main .title {
  padding-top: 9px;
}
#banner-main .banner-wrapper .banner-content .banner-main .subtitle {
  width: 586px;
  font-size: 20px;
  line-height: 20px;
  color: var(--text-color-gray);
  margin: 0 auto;
}
#banner-main .banner-wrapper .banner-content .banner-main .btn-contact {
  margin-top: 26px;
  border-radius: 13px;
  background-color: #162634;
}
#banner-main .banner-wrapper .banner-content .banner-main .btn-contact a {
  display: flex;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
}
#banner-main .banner-wrapper .banner-content .banner-rigth {
  position: absolute;
  right: 0;
  bottom: 93px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-card {
  border-radius: 16px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0784313725);
  backdrop-filter: blur(6px);
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card {
  width: 296px;
  height: 296px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card .banner-card-content {
  padding-top: 77px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card .banner-card-content .banner-card-icon {
  width: 20px;
  height: 20px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card .banner-card-content .banner-card-amount {
  margin-top: 16px;
  margin-bottom: 7px;
  font-family: "UniSansBold";
  font-size: 29px;
  line-height: 29px;
  color: var(--text-color-blue);
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card .banner-card-content .banner-card-sub {
  font-size: 12px;
  line-height: 12px;
  width: 88px;
  text-align: center;
  color: var(--primary-gold);
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub {
  position: absolute;
  top: 148px;
  left: -78px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card {
  width: 177px;
  height: 177px;
  box-shadow: 6px -5px 22.5px 0px rgba(0, 0, 0, 0.0588235294);
  backdrop-filter: blur(7px);
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card .banner-card-content {
  padding-top: 36px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card .banner-card-content .banner-card-icon {
  width: 16px;
  height: 16px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card .banner-card-content .banner-card-amount {
  margin-top: 16px;
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card .banner-card-content .banner-card-amount .title {
  font-size: 12px;
  line-height: 13px;
  color: var(--primary-gold);
}
#banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card .banner-card-content .banner-card-amount .value {
  font-family: "UniSansBold";
  font-size: 20px;
  line-height: 28px;
  color: var(--text-color-blue);
}
#banner-main .banner-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 367px;
  height: 492px;
}
.banner-content .banner-card {
  background: hsla(0, 0%, 100%, 0.41);
}
.banner-content .banner-rigth-main .banner-card {
  border: 1px solid #f0f0f0;
}
[theme="dark"] .banner-content .banner-card {
  background: #283745;
  border: none;
}
[theme="dark"] .banner-content .banner-rigth-main .banner-card {
  border: none;
}
@media screen and (width < 1440px) {
  #banner-main .banner-wrapper .banner-content .banner-main {
    display: block;
  }
  #banner-main .banner-wrapper .banner-content .banner-main .title {
    font-size: 40px;
  }
  #banner-main .banner-wrapper .banner-content .banner-main .subtitle {
    width: 436px;
    font-size: 16px;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth {
    right: -50px;
    bottom: 70px;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card {
    width: 242px;
    height: 242px;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-main .banner-card .banner-card-content {
    padding-top: 55px;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub {
    position: absolute;
    top: 120px;
    right: 64px;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card {
    width: 144px;
    height: 144px;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth .banner-rigth-content .banner-rigth-sub .banner-card .banner-card-content {
    padding-top: 36px;
  }
  #banner-main .banner-left {
    width: 303px;
    height: 406px;
  }
}
@media screen and (width < 800px) {
  #banner-main .banner-wrapper {
    height: 378px;
  }
  #banner-main .banner-wrapper .banner-content .banner-main {
    margin-top: 92px;
  }
  #banner-main .banner-wrapper .banner-content .banner-main .title {
    font-size: 24px;
    width: 100%;
  }
  #banner-main .banner-wrapper .banner-content .banner-main .subtitle {
    width: 300px;
    font-size: 11px;
  }
  #banner-main .banner-wrapper .banner-content .banner-main .btn-contact {
    width: 99px;
    height: 39px;
  }
  #banner-main .banner-wrapper .banner-content .banner-main .btn-contact a {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 0;
  }
  #banner-main .banner-wrapper .banner-content .banner-rigth {
    display: none;
  }
  #banner-main .banner-left {
    display: none;
  }
}
#services .section-title {
  padding-bottom: 50px;
}
#services .services-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#services .services-content .card-header-icon {
  margin-bottom: 50px;
}
#services .services-content .card-header-icon img {
  width: 30px;
}
#services .services-content .card-body-chart {
  display: flex;
  justify-content: center;
}
#services .services-content .card-body-description {
  margin-top: 20px;
  font-family: "UniSansRegular";
  font-size: 24px;
  line-height: 34px;
  color: var(--gray-400);
}
#services .services-content .card.night .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#services .services-content .card.night .card-body-description {
  color: #fff;
  font-size: 38px;
  line-height: 37px;
}
#services .services-content .second-content > div .card-header {
  margin-bottom: 51px;
}
#services .services-content .second-content > div .market-map {
  display: flex;
  width: 634px;
}
#services .services-content .second-content > div .market-map svg {
  width: 100%;
  height: 327px;
}
#services .services-content .last-content .card-header .other-services .card-header-subtitle {
  margin-top: 130px;
}
#services .services-content .last-content .card-body-image .other-services button {
  margin-top: 50px;
  padding: 15px 25px;
  background-color: var(--primary-gold);
  border-radius: 44px;
}
#services .services-content .last-content .card-body-image .other-services button .desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
}
#services .services-content .last-content .card-body-image .other-services button .icon {
  width: 30px;
  height: 30px;
}
[theme="dark"] .market-map .light {
  display: none;
}
[theme="dark"] .market-map .dark {
  display: block;
}
@media screen and (width < 1440px) {
  #services .services-content .first-content {
    flex-direction: column;
  }
  #services .services-content .second-content > div {
    flex-direction: column;
  }
  #services .services-content .second-content > div .card-header {
    margin-bottom: 30px;
  }
  #services .services-content .second-content > div .card-header-subtitle {
    line-height: 40px;
  }
  #services .services-content .second-content > div .market-map {
    width: auto;
  }
  #services .services-content .last-content .card {
    flex-direction: column;
  }
  #services .services-content .card-header-icon {
    margin-bottom: 30px;
  }
  #services .services-content .card-header-icon img {
    width: 26px;
  }
  #services .services-content .card-body-description {
    font-size: 20px;
    line-height: 33px;
  }
}
@media screen and (width < 800px) {
  #services .section-title {
    padding-bottom: 20px;
  }
  #services .services-content .card-header-icon {
    margin-bottom: 25px;
  }
  #services .services-content .card-header-icon img {
    width: 20px;
  }
  #services .services-content .card-body-description {
    font-size: 16px;
    line-height: 25px;
  }
  #services .services-content .second-content > div .market-map {
    display: none;
  }
  #services .services-content .second-content > div .card-header {
    margin-bottom: 0;
  }
}
.news-swiper {
  overflow: visible;
}
.news-swiper .swiper-wrapper {
  display: grid;
}
@media screen and (width < 1440px) {
  #news .container-regular {
    width: auto;
  }
  .news-swiper {
    overflow: hidden;
  }
  .news-swiper .swiper-wrapper {
    display: flex;
  }
}
.collaboration-swiper {
  overflow: visible;
}
.collaboration-swiper .swiper-wrapper {
  display: grid;
}
@media screen and (width < 1440px) {
  .collaboration-swiper {
    overflow: hidden;
  }
  .collaboration-swiper .swiper-wrapper {
    display: flex;
  }
}
#about-main {
  margin-top: 50px;
}
#about-main .about-main-content .blog-content-header {
  font-family: "UniSansLight";
  font-size: 24px;
  line-height: 127%;
  color: var(--text-color-dark);
  text-align: start;
}
#about-main .about-main-content .blog-content-main .blog-content-description p {
  font-family: "UniSansLight";
  color: var(--text-color-black);
  font-size: 24px;
  line-height: 127%;
}
@media screen and (width < 800px) {
  #about-main {
    margin-top: 20px;
  }
}
#values {
  margin-top: 50px;
}
#values .values-content .card-body-description {
  font-family: "UniSansLight";
  font-size: 20px;
  line-height: 30px;
  color: var(--text-color-black);
}
@media screen and (width < 1440px) {
  #values .values-content .card-header-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  #values .values-content .card-header-icon img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (width < 800px) {
  #values {
    margin-top: 20px;
  }
  #values .values-content > div {
    flex-direction: column;
  }
  #values .values-content .card-header-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  #values .values-content .card-header-icon img {
    width: 26px;
  }
}
#mission {
  margin-top: 50px;
}
@media screen and (width < 1440px) {
  #mission .card-header-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  #mission .card-header-icon img {
    width: 26px;
    height: 26px;
  }
}
@media screen and (width < 800px) {
  #mission .mission-content > div {
    flex-direction: column;
  }
}
#description {
  margin-top: 50px;
  margin-bottom: 68px;
}
#description .description-content .blog-content-header p {
  font-family: "UniSansLight";
  font-size: 24px;
  line-height: 100% !important;
  color: var(--text-color-dark);
  text-align: center;
}
@media screen and (width < 800px) {
  #description {
    margin: 30px 0;
  }
}
#news-list .news-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (width < 1440px) {
  #news-page .navigate-content {
    margin: 25px 0;
  }
  #news-list .news-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  #news-list .news-content .card-news {
    width: 328px;
  }
}
@media screen and (width < 800px) {
  #news-page .navigate-content {
    margin: 15px 0;
  }
  #news-list .news-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  #news-list .news-content .card-news {
    width: 336px;
    margin: 0 auto;
  }
}
#lead-list .leadship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media screen and (width < 1440px) {
  #leadership .navigate-content {
    margin-bottom: 45px;
  }
  #lead-list .leadship-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media screen and (width < 800px) {
  #leadership .navigate-content {
    margin-bottom: 30px;
  }
  #lead-list .leadship-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }
}
#news-detail {
  margin-top: 35px;
}
#news-detail .detail-section .news-detail-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
#news-detail .detail-section .news-detail-image {
  width: 100%;
  height: 379px;
}
#news-detail .detail-section .news-detail-image img {
  border-radius: 32px;
}
#news-detail .detail-section .news-detail-description {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
#news-detail .detail-section .news-detail-description p {
  font-family: "UniSansLight";
  color: var(--text-color-black);
  font-size: 24px;
  line-height: 127%;
}
@media screen and (width < 1440px) {
  #news-detail .detail-section .news-detail-image {
    height: 331px;
  }
  #news-detail .detail-section .news-detail-description {
    gap: 24px;
    font-size: 20px;
  }
  #news-detail .detail-section .news-detail-description p {
    font-size: 20px;
  }
}
@media screen and (width < 800px) {
  #news-detail {
    margin-top: 40px;
  }
  #news-detail .detail-section .news-detail-content {
    gap: 40px;
  }
  #news-detail .detail-section .news-detail-image {
    height: 283px;
  }
  #news-detail .detail-section .news-detail-description {
    gap: 20px;
    font-size: 15px;
  }
  #news-detail .detail-section .news-detail-description p {
    font-size: 15px;
  }
}
#contact-information {
  margin-top: 50px;
}
#contact-information .contact-info-content .card {
  padding: 73px 45px;
}
#contact-information .contact-info-content .card .info-card-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#contact-information .contact-info-content .card .info-card-title {
  font-family: "UniSansSemiBold";
  font-size: 32px;
  line-height: 30px;
}
#contact-information .contact-info-content .card .info-card-description {
  font-family: "UniSansLight";
  font-size: 20px;
  line-height: 30px;
}
#contact-information .contact-info-content .card .info-card-contacts {
  margin-top: 30px;
}
#contact-information .contact-info-content .card .info-card-contacts ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#contact-information .contact-info-content .card .info-card-contacts ul .info-card-item {
  max-width: 375px;
}
#contact-information .contact-info-content .card .info-card-contacts ul .info-card-item-contact {
  line-height: 100%;
}
#contact-information .contact-info-content .card .info-card-contacts ul .info-card-item-contact .icon {
  width: 17px;
  height: 17px;
}
#contact-information .contact-info-content .map {
  border-radius: 32px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (width < 1440px) {
  #contact-information {
    margin-top: 50px;
  }
  #contact-information .contact-info-content .card .info-card-main {
    gap: 24px;
  }
  #contact-information .contact-info-content .card .info-card-title {
    font-size: 26px;
  }
}
@media screen and (width < 800px) {
  #contact-information {
    margin-top: 50px;
  }
  #contact-information .contact-info-content > div {
    flex-direction: column;
  }
  #contact-information .contact-info-content .card .info-card-title {
    font-size: 24px;
  }
  #contact-information .contact-info-content .map {
    height: 400px;
  }
}
#investing-list .investing-actions-content {
  display: flex;
  align-items: center;
  gap: 28px;
}
#investing-list .investing-search {
  position: relative;
  flex-basis: 66.6666666667%;
}
#investing-list .investing-search input {
  width: 100%;
  height: 75px;
  border: var(--border-input);
  border-radius: 32px;
  padding: 19px 31px;
  font-size: 24px;
  line-height: 37px;
  font-family: "UniSansLight";
  color: var(--text-color-blue);
}
#investing-list .investing-search-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 85px;
  height: 59px;
  border-radius: 32px;
  background-color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#investing-list .investing-search-icon img {
  width: 33px;
  height: 33px;
}
#investing-list .investing-select {
  position: relative;
  flex-basis: 33.3333333333%;
}
#investing-list .investing-select input {
  width: 100%;
  height: 75px;
  border-radius: 32px;
  background-color: var(--gray-100);
  padding: 0 35px;
  font-size: 24px;
  line-height: 37px;
  font-family: "UniSansLight";
  color: var(--text-color-blue);
}
#investing-list .investing-select-icon {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#investing-list .investing-select .select-options {
  display: none;
}
#investing-list .investing-select .select-options ul li {
  padding: 7px 18px;
}
#investing-list .investing-select .select-options.open {
  display: block;
}
#investing-list .investing-table {
  margin-top: 24px;
}
#investing-list .investing-table tbody tr > td:first-child {
  padding-left: 54px;
}
#investing-list .investing-table tbody tr img {
  width: 58px;
  height: 58px;
}
#investing-list .investing-table tbody tr td {
  font-size: 24px;
  line-height: 37px;
  color: var(--text-color-blue);
  padding: 26px 0;
}
#investing-list .investing-table tbody tr td.semibold-detail {
  font-family: "UniSansSemiBold";
}
#investing-list .investing-table tbody tr td.ligth-detail {
  font-family: "UniSansLight";
}
#investing-list .investing-table tbody tr td.gold-detail {
  color: var(--primary-gold);
}
@media screen and (width < 1440px) {
  #investing-list .investing-actions-content {
    display: block;
  }
  #investing-list .investing-select {
    display: none;
  }
  #investing-list .investing-table thead tr th {
    padding: 26px 16px;
  }
  #investing-list .investing-table tbody tr > td:first-child {
    padding-left: 0px;
  }
  #investing-list .investing-table tbody tr img {
    display: none;
  }
  #investing-list .investing-table tbody tr td {
    padding: 26px 10px;
  }
}
@media screen and (width < 800px) {
  #investing-list .section-title {
    padding-bottom: 20px;
  }
  #investing-list .investing-actions-content {
    display: block;
  }
  #investing-list .investing-search input {
    height: 59px;
    padding: 10px 28px;
    font-size: 15px;
  }
  #investing-list .investing-search-icon {
    width: 75px;
    height: 46px;
  }
  #investing-list .investing-search-icon img {
    width: 25px;
    height: 25px;
  }
  #investing-list .investing-table thead tr th {
    font-size: 16px;
    padding: 20px 12px;
  }
  #investing-list .investing-table tbody tr td {
    font-size: 16px;
    padding: 20px 12px;
  }
}
#portfolio-management-blog .section-title-portfolio {
  padding-top: 0;
}
#portfolio-management .blog-content {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
#portfolio-management .blog-content-header {
  font-family: "UniSansLight";
  font-size: 24px;
  line-height: 127%;
  text-align: center;
}
#portfolio-management .blog-content-main img {
  height: 400px;
  width: 100%;
  border-radius: 32px;
}
#portfolio-management .blog-content-description {
  height: 100%;
}
#portfolio-management .blog-content-description p {
  font-size: 24px;
  line-height: 130%;
  font-family: "UniSansLight";
}
#portfolio-management .blog-content-description p.semibold-desc {
  font-family: "UniSansSemiBold";
}
.portfolio-category-content {
  margin-top: 50px;
}
.portfolio-category-content > div {
  gap: 24px;
}
.portfolio-category-content .card {
  padding: 25px;
}
.portfolio-category-content .card-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.portfolio-category-content .card-body .portfolio-name,
.portfolio-category-content .card-body .portfolio-percent {
  font-family: "UniSansSemiBold";
  font-size: 20px;
  line-height: 37px;
}
.portfolio-category-content .card-body .portfolio-name {
  color: var(--text-color-blue);
}
.portfolio-category-content .card-body .portfolio-percent {
  color: var(--primary-gold);
}
.portfolio-category-content .card-body .portfolio-btn {
  border-radius: 12px;
  background-color: #162634;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  line-height: 22px;
  cursor: pointer;
}
@media screen and (width < 1440px) {
  .portfolio-category-content {
    margin-top: 25px;
  }
  .portfolio-category-content .card-body .portfolio-name,
  .portfolio-category-content .card-body .portfolio-percent,
  .portfolio-category-content .card-body .portfolio-btn {
    font-size: 20px;
    line-height: 37px;
  }
  .portfolio-category-content .card-body .portfolio-btn {
    line-height: 22px;
  }
}
@media screen and (width < 800px) {
  .portfolio-category-content > div {
    flex-direction: column;
  }
  .portfolio-category-content .card-body .portfolio-name,
  .portfolio-category-content .card-body .portfolio-percent,
  .portfolio-category-content .card-body .portfolio-btn {
    font-size: 20px;
    line-height: 37px;
  }
  .portfolio-category-content .card-body .portfolio-btn {
    line-height: 22px;
  }
}
#anderraytinq-apply .blog-content {
  gap: 36px;
}
.anderraytinq-apply-btn {
  width: 445px;
  border-radius: 12px;
  background-color: var(--background-navigate);
  color: #fff;
  padding: 20px;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}
@media screen and (width < 800px) {
  .anderraytinq-apply-btn {
    padding: 12px;
    font-size: 15px;
  }
}
#unique-opportunities .portfolio-content .card-header-icon img {
  width: 44px;
}
@media screen and (width < 1440px) {
  #unique-opportunities .portfolio-content > div {
    gap: 24px;
  }
}
@media screen and (width < 800px) {
  #unique-opportunities .portfolio-content > div {
    flex-direction: column;
  }
  #unique-opportunities .portfolio-content .card-header-icon img {
    width: 24px;
  }
}
@media screen and (width < 1440px) {
  #investing-list .section-title,
  #portfolio-management .section-title,
  #investment-advice-content .section-title,
  #anderraytinq-collaboration .section-title,
  #unique-opportunities .section-title {
    padding-top: 0;
    padding-bottom: 25px;
  }
}
@media screen and (width < 800px) {
  #investing-list .section-title,
  #portfolio-management .section-title,
  #investment-advice-content .section-title,
  #anderraytinq-collaboration .section-title,
  #unique-opportunities .section-title {
    line-height: 117%;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.licenses-document-content {
  display: flex;
  justify-content: center;
}
.licenses-document-content .card {
  width: 410px;
  padding: 15px;
}
.licenses-document-content .card .licenses-document-description {
  margin-top: 15px;
  font-family: "UniSansLight";
  font-size: 20px;
  line-height: 30px;
  color: var(--text-color-black);
  text-align: center;
  padding: 0 30px;
}
@media screen and (width < 1440px) {
  .licenses-document-content .card {
    width: 350px;
  }
  .licenses-document-content .card .licenses-document-description {
    font-size: 16px;
    line-height: 25px;
    padding: 0 15px;
  }
}
#upload-docs .upload-docs-content {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.year-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.year-tab {
  padding: 0px 16px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.year-tab::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--text-color-blue);
  bottom: 0;
  left: 16px;
  right: 16px;
}
.year-tab.active {
  color: #1e88e5;
}
.year-tab.active::after {
  background-color: #1e88e5;
}
.year-content {
  display: none;
}
.year-content.active {
  display: grid;
}
@media screen and (width < 1440px) {
  #upload-docs .upload-docs-content {
    margin: 0 9px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width < 800px) {
  #upload-docs .upload-docs-content {
    width: 299px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
  .year-tabs {
    flex-wrap: wrap;
  }
}
#licenses .banner-main,
#disclosures .banner-main,
#legal-documents .banner-main {
  width: -moz-max-content;
  width: max-content;
}
#apply .apply-rigth-side .apply-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#apply .apply-rigth-side .apply-content {
  width: 404px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#apply .apply-rigth-side .apply-title {
  font-size: 36px;
  font-family: "UniSansSemiBold";
  background: var(--primary-liner);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
#apply .apply-rigth-side .apply-form {
  height: 61px;
}
#apply .apply-rigth-side .apply-form input {
  width: 100%;
  height: 100%;
  font-family: "UniSansRegular";
  font-size: 20px;
  line-height: 24px;
  color: #969696;
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
#apply .apply-rigth-side .apply-btn {
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 24px;
  font-family: "UniSansRegular";
  border-radius: 17px;
  background-color: #dcdcdc;
  color: #000;
}
#apply .apply-rigth-side .apply-send {
  background-color: var(--primary-blue);
  color: #fff;
}
@media screen and (width < 1440px) {
  #apply .apply-rigth-side .apply-content {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (width < 800px) {
  #apply .apply-rigth-side .apply-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #apply .apply-rigth-side .apply-title {
    font-size: 24px;
  }
  #apply .apply-rigth-side .apply-form {
    height: 50px;
  }
  #apply .apply-rigth-side .apply-form input {
    font-size: 16px;
    line-height: 20px;
  }
  #apply .apply-rigth-side .apply-btn {
    height: 50px;
    font-size: 16px;
    line-height: 20px;
  }
}
#thankPage .thankPage-rigth-side .thankPage-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#thankPage .thankPage-rigth-side .thankPage-content {
  width: 409px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#thankPage .thankPage-rigth-side .thankPage-title {
  font-size: 36px;
  line-height: 36px;
  font-family: "UniSansSemiBold";
  background: var(--primary-liner);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
#thankPage .thankPage-rigth-side .thankPage-description {
  font-size: 24px;
  line-height: 40px;
  font-family: "UniSansRegular";
  color: var(--primary-blue);
}
#thankPage .thankPage-rigth-side .thankPage-btn {
  height: 61px;
  font-size: 20px;
  line-height: 24px;
  font-family: "UniSansRegular";
  border-radius: 12px;
  background-color: var(--primary-blue);
  color: #fff;
  width: 220px;
}
@media screen and (width < 800px) {
  #thankPage .thankPage-rigth-side .thankPage-content {
    padding: 20px;
    width: 100%;
  }
  #thankPage .thankPage-rigth-side .thankPage-btn {
    width: 100%;
  }
}
#search-result #banner .banner-main .title {
  padding-bottom: 8px;
}
#search-result-list .section-title {
  width: 100%;
}
#search-result-list .search-result-content {
  border: var(--border-result);
  background-color: var(--background-results);
}
#search-result-list .search-result-item {
  display: flex;
  align-items: center;
  padding: 25px 36px;
  border-bottom: var(--border-result);
}
#search-result-list .search-result-item:last-child {
  border-bottom: none;
}
#search-result-list .search-result-item a {
  font-family: "UniSansSemiBold";
  font-size: 24px;
  line-height: 30px;
  color: var(--text-color-blue);
}
@media screen and (width < 1440px) {
  #search-result-list .search-result-item a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (width < 800px) {
  #search-result-list .search-result-item {
    padding: 20px;
  }
  #search-result-list .search-result-item a {
    font-size: 16px;
    line-height: 20px;
  }
}
#page404 .page404-wrapper {
  height: 100%;
}
#page404 .page404-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#page404 .page404-header {
  width: 313px;
  text-align: center;
}
#page404 .page404-title {
  font-family: "UniSansBold";
  font-size: 40px;
  line-height: 48px;
  color: var(--text-color-black);
}
#page404 .page404-subtitle {
  font-size: 32px;
  line-height: 38px;
  color: var(--text-color-black);
}
#page404 .page404-description {
  font-size: 16px;
  line-height: 24px;
  color: #4b4b4b;
}
#page404 .page404-btn {
  margin-top: 20px;
  height: 61px;
  width: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 24px;
  font-family: "UniSansRegular";
  border-radius: 17px;
  background-color: #dcdcdc;
  color: #000;
}
@media screen and (width < 1440px) {
  #page404 .page404-title {
    font-size: 32px;
    line-height: 38px;
  }
  #page404 .page404-subtitle {
    font-size: 24px;
    line-height: 28px;
  }
  #page404 .page404-description {
    font-size: 16px;
    line-height: 24px;
  }
  #page404 .page404-image {
    height: 320px;
  }
}
@media screen and (width < 800px) {
  #page404 .page404-content {
    padding: 0px;
  }
  #page404 .page404-title {
    font-size: 24px;
    line-height: 28px;
  }
  #page404 .page404-subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  #page404 .page404-description {
    font-size: 14px;
    line-height: 20px;
  }
}
