.form-wrapper {
  width: 100%;
  scroll-margin-top: 100px;
}
html {
  scroll-behavior: smooth;
}

.bottom-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0060BF;
  animation: pulse-blue 2s infinite;
  background-size: 200% auto;
  color: white !important;
  font-size: 20px;
  padding: 16px;
  border: none;
  border-top: 2px solid #2c47d0;
  cursor: pointer;
  text-align: center;
  font-weight: bolder;
  box-sizing: border-box;
  z-index: 50;
  transition: all 0.3s ease-in-out;
}

.bottom-button:hover {
  background-color: #3b50d6;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 99, 255, 0.4);
}

.bottom-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(74, 99, 255, 0.2);
  background-color: #2e3eb0;
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
*,
::before,
::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
span {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
}
body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  color: #0a0a0a;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
}

h1,
h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

img {
  object-fit: contain;
}

a {
  color: white;
  transition: color 0.3s ease;
}

a:hover {
  color: blue;
  text-decoration: underline;
}
@font-face {
  font-family: "rte-icons";
  src: url("/fonts/rte-icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

html,
body {
  height: 100%;
}

.layout {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 100vh;
  background-color: white;
}

.layout__header {
  position: sticky;
  top: 0;
  flex: none;
  z-index: 10;
}

.layout__main {
  flex: 1 0 auto;
}

.layout__footer {
  position: relative;
  flex: none;
}

/* Header */
.header {
  min-height: 77px;
  margin: 0 auto;
}

.header--main {
  background-color: white;
}

.header--main .header__top {
  max-width: 1140px;
  padding: 0 0 0 10px;
  margin: 0 auto;
  box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.04);
}

.header--main .header__top,
.header--main .header__top .nav-header .nav-header__list .nav-header__item > a {
  color: #24221f;
}

.header--main .header__top .nav-header .nav-header__list .nav-header__item > a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.header--main .header__top {
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header--main .header__top .nav-header {
  display: none;
}

.header--main .header__top .nav-header .nav-header__list {
  display: none;
  align-items: center;
  gap: 10px;
}

.header--main .header__top .header__logo .logo {
  font-family: "rte-icons", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  margin: 0 auto;
  overflow: hidden;
  display: block;
}

.header--main .header__top .header__logo .logo::before {
  content: "\e90e";
  font-size: 64px;
  line-height: 64px;
  color: #24221f;
}

.header--main .header__top .header__user-info > a .profile-icon {
  font-family: "rte-icons", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  width: 33px;
  max-width: 33px;
}

.header--main .header__top .header__user-info > a .search-icon {
  font-family: "rte-icons", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  width: 33px;
  max-width: 33px;
}

.header--main .header__top .header__user-info > a .profile-icon::before {
  content: "\e926";
  color: #24221f;
  font-size: 33px;
  line-height: 42px;
}

.header--main .header__top .header__user-info > a .search-icon::before {
  content: "\e925";
  color: #24221f;
  font-size: 33px;
  line-height: 42px;
}

.header--main .header__top .header__burger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header--main .header__top .header__burger .burger-title {
  font-size: 12px;
  font-weight: 600;
}

.header--main .header__top .header__burger .burger-icon {
  display: block;
  width: 24px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.header--main .header__top .header__burger .burger-icon > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #24221f;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(1) {
  top: 0;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(2) {
  top: 8px;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(3) {
  top: 8px;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(4) {
  top: 17px;
}

.header--main .header__bottom {
  background-color: #005ab4;
}

.header--main .header__bottom .header-nav-bottom__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header--main
  .header__bottom
  .header-nav-bottom__list
  .header-nav-bottom__item {
  padding: 0 7px;
}

.header--main .header__bottom {
  padding: 5px 0;
}

.header--main .header__bottom .header-nav-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(1),
.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(2) {
  font-weight: 600;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item {
  font-size: 12px;
  line-height: 1.9;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item
  > a {
  position: relative;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(1)
  > a::after,
.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(2)
  > a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "▸";
  color: #fff;
  z-index: 2;
  position: relative;
  padding-left: 0.5rem;
  display: inline-block;
}

/* END => Header */

/* Main */
.main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
}

.page-section--intro {
  padding: 10px 0 20px 0;
}

h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875rem;
  margin-bottom: 10px;
}

.page-section--intro .modified-date {
  color: #6d7278;
  font-size: 0.75rem;
  line-height: 0.875rem;
  margin-bottom: 10px;
}

.page-section--intro .page-section__image > img {
  width: 100%;
}

article p {
  font-size: 16px;
  line-height: 24px;
}
article h2 {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 16px;
}

article p a,
article h2 a,
h1 a {
  text-decoration: underline;
  color: #005ab4;
}
article img,
article video {
  width: 100%;
  margin-bottom: 16px;
}

.page-section.page-section--intro img {
  width: calc(100% + 20px);
  max-width: none;
  margin-left: -10px;
}

/* END => Main  */

/* Footer */
.footer {
  margin: 0 auto;
}

.footer--desktop .footer__row .footer__col--top .footer__inner,
.footer--desktop .footer__row .footer__col--main .footer__inner,
.footer--desktop .footer__row .footer__col--bottom .footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer--desktop .footer__row .footer__col--top {
  padding: 30px 0;
  border-top: 1px solid #dbd9d4;
  border-bottom: 1px solid #dbd9d4;
}

.footer--desktop .footer__row .footer__col--bottom {
  padding: 20px 0 40px;
  background-color: #eeecec;
}

.footer--desktop .footer-action .footer-action__title {
  color: #000;
  font-size: 30px;
  margin-bottom: 10px;
}

.footer--desktop .footer-action .footer-action__text {
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer--desktop .footer-action .footer-action__btn {
  display: flex;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-align: left;
  background: #005ab4;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  color: #ffffff;
  margin: 0 0 20px;
  cursor: pointer;
  width: auto;
  margin-bottom: 0;
  width: max-content;
}

.footer--desktop .footer-action .footer-action__btn {
  text-decoration: none;
}

.footer--desktop .footer-action .footer-action__btn .footer-action__icon {
  display: inline-block;
  background: url("/img/white-icon-right-arrow.svg") no-repeat;
  width: 17px;
  height: 18px;
  margin-left: 14px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col
  .footer-nav__list
  .footer-nav__item
  > a,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col
  .footer-nav__list
  .footer-nav__item
  > a {
  font-size: 0.75rem;
  line-height: 0.9375rem;
  color: #24221f;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:last-child
  .footer-nav__list
  .footer-nav__item
  > a:hover {
  text-decoration: none;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col
  .footer-nav__title,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .footer-nav__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  color: #292724;
  font-size: 0.75rem;
  line-height: 0.9375rem;
  text-transform: uppercase;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col:last-child {
  flex-direction: column;
  align-items: flex-start;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col {
  width: 33.333%;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col:last-child {
  width: 100%;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list {
  display: flex;
  align-items: center;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list {
  gap: 10px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list {
  gap: 10px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row {
  margin: 0 -10px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col {
  padding: 10px;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(1)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(1)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(2)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(2)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(3)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(3)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(4)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(4)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(5)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(5)
  > a
  > span {
  font-family: "rte-icons", sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(1)
  > a
  > span::before,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(1)
  > a
  > span::before {
  content: "\e930";
  font-size: 30px;
  line-height: 30px;
  background-color: #6f6f6f;
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(2)
  > a
  > span::before,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(2)
  > a
  > span::before {
  content: "\e906";
  font-size: 30px;
  line-height: 30px;
  background-color: #6f6f6f;
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(3)
  > a
  > span::before,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(3)
  > a
  > span::before {
  content: "\e927";
  font-size: 30px;
  line-height: 30px;
  background-color: #6f6f6f;
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(4)
  > a
  > span::before,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(4)
  > a
  > span::before {
  content: "\e928";
  font-size: 30px;
  line-height: 30px;
  background-color: #6f6f6f;
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(7)
  .footer-nav__list
  .footer-nav__item:nth-child(5)
  > a
  > span::before,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(5)
  > a
  > span::before {
  content: "\e904";
  font-size: 30px;
  line-height: 30px;
  background-color: #6f6f6f;
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(4)
  .footer-nav__list
  .footer-nav__item:nth-child(4),
.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:first-child
  .footer-nav__list
  .footer-nav__item:nth-child(6) {
  margin-bottom: 16px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .footer-nav__item {
  padding: 0 !important;
}

.footer--desktop .footer__col--bottom .footer-privacy {
  padding: 20px 0;
}

.footer--desktop .footer__col--bottom .footer-privacy > a > .logo {
  font-family: "rte-icons", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  display: block;
  margin-top: -30px;
}

.footer--desktop .footer__col--bottom .footer-privacy > a:hover {
  text-decoration: none;
}

.footer--desktop .footer__col--bottom .footer-privacy > a > .logo::before {
  content: "\e90e";
  font-size: 50px;
  line-height: 50px;
  color: #24221f;
}

.footer--desktop .footer__col--bottom {
  position: relative;
}

.footer--desktop .footer__col--bottom .footer-privacy {
  display: flex;
  flex-direction: column;
}

.footer--desktop .footer__col--bottom .footer-privacy .footer-privacy__text {
  font-size: 14px;
  line-height: 22px;
}

.footer--desktop
  .footer__col--bottom
  .footer-privacy
  .footer-privacy__decor
  > a {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: #6f6f6f;
  padding: 6px 9px 10px;
  margin: 0 10px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
}

.footer--desktop
  .footer__col--bottom
  .footer-privacy
  .footer-privacy__decor
  > a:hover {
  text-decoration: none;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col {
  display: flex;
  flex-direction: column;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .footer-nav__item {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  color: #292724;
  font-size: 0.75rem;
  line-height: 0.9375rem;
  padding: 8px 10px;
  margin: 0px 0px;
  text-transform: uppercase;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .arrow-item {
  float: right;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #292724;
  margin-top: 3px;
}

.footer--desktop .footer__row .footer__col--main .footer-nav--desktop {
  display: none;
}

/* END => Footer */

@media screen and (min-width: 768px) {
  .header--main .header__top .header__burger {
    order: 1;
  }

  .header--main .header__top .nav-header {
    display: flex;
  }

  .header--main .header__top .nav-header .nav-header__list {
    display: flex;
  }

  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(6),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(7),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(8),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(9) {
    display: none;
  }

  .footer--desktop
    .footer__row
    .footer__col--main
    .footer-nav--desktop
    .footer-nav__row
    .footer-nav__col {
    width: 15%;
  }

  .footer--desktop .footer__row .footer__col--main .footer-nav--mobile {
    display: none;
  }

  .footer--desktop .footer__row .footer__col--main .footer-nav--desktop {
    display: block;
  }
  .footer-nav__item a,
  .footer-nav__title,
  .nav-header__item,
  .header-nav-bottom__item {
    font-size: 14px !important;
  }
  .page-section.page-section--intro img {
    margin-left: 0;
    width: 100%;
  }
  .main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1028px) {
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(6),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(7),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(8),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(9) {
    display: block;
  }

  .page-section--intro,
  article {
    max-width: 740px;
  }

  h1 {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .page-section--intro .modified-date {
    margin-bottom: 30px;
  }
}

/* END => Media queries */
.investor-container * {
  box-sizing: border-box;
}
.investor-container {
  display: flex;
  flex-direction: column;
  font-family: inherit, sans-serif;
}

.investor-row {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.investor-card {
  width: 48%;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

.investor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 8px;
}

.investor-role {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  height: 50px;
}

.investor-info {
  color: #6b6b6b;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}

.investor-sum {
  font-size: 24px;
  font-weight: 700;
  margin: 5px 0;
  color: green;
}

.investor-quote {
  width: 100%;
  /* background: #f4f7ff; */
}

.investor-text {
  color: #6b6b6b;
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 480px) {
  .investor-row {
    flex-direction: column;
  }

  .investor-card {
    width: 100%;
    margin: 0;
  }
}
@font-face {
  font-family: "cnn-icons";
  src: url("fonts/cnn-icons.ttf") format("ttf");

  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.comments-container * {
  font-family: inherit;
}

.comments-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 16px;
}

.comments-header {
  padding-top: 8px;

  border-bottom: 1px solid #ddd;
  position: relative;
}

.comments-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  display: inline-block;
}

.comments-underline {
  width: 140px;
  height: 3px;
  background-color: #f15d22;
  margin-top: 10px;
}

.comment {
  display: flex;
  margin-top: 25px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  margin-right: 12px;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-meta {
  font-size: 15px;
  margin-bottom: 4px;
}

.comment-author {
  font-weight: 700;
  color: #656c7a;
  font-size: 13px;
}

.comment-time {
  font-weight: 400;
  font-size: 12px;
  color: #888;
  margin-left: 6px;
}

.comment-text {
  font-size: 15px;
  color: #111;
  margin-bottom: 6px;
  line-height: 21px;
  font-weight: 300;
}

.comment-actions {
  font-size: 12px;
  color: #555;
  display: flex;
  gap: 6px;
  align-items: center;
}

.comment-actions .icon {
  font-family: "cnn-icons" !important;
  font-size: 11px;
  color: #999;
}

.vote-down {
  padding-right: 0;
  padding-left: 6px;
  border-left: 2px solid #e7e9ee;
}
.vote-down,
.vote-up {
  position: relative;
  min-height: 14px;
  overflow: hidden;
}

.comment-actions a {
  color: #666;
  text-decoration: none;
}

.comment-actions a:hover {
  text-decoration: underline;
}

/* Reply */
.comment.reply {
  margin-left: 60px;

  padding-left: 12px;
}

/* Responsive */
@media (max-width: 600px) {
  .comment-avatar {
    width: 44px;
    height: 44px;
  }

  .comments-underline {
    display: none;
  }

  .comments-container {
    padding: 16px 10px;
  }
  .comments-title {
    display: none;
  }
}
.formTimer * {
  box-sizing: border-box;
  font-family: inherit;
}
.formTimer {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background-color: #0a0a0a;
  border-radius: 25px;
  padding: 18px 22px 36px 22px;
}
.formTitle {
  color: #fff;
  font-size: 26px;
  line-height: 28px;
  text-align: center;
  margin: 0;
}
.form-img {
  width: 100%;
  border-radius: 25px;
  margin-top: 8px;
}
.formSub {
  margin-top: 15px !important;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
#timer {
  color: #0092ed;
  font-weight: 700;
  font-size: 43px;
  margin-top: 0;
  margin-bottom: 10px;
}
.overlay {
  position: fixed;
  overflow: auto;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: none;
}

.reg-button {
  scroll-margin-top: 100px;
  background-color: #0060BF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border: none;
  outline: none;
  box-shadow: 0 4px 6px rgba(74, 99, 255, 0.2);
  transition: all 0.3s ease;
  user-select: none;
  animation: pulse-blue 2s infinite;
}
.reg-button:hover {
  background-color: #3b50d6;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 99, 255, 0.4);
}

.reg-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(74, 99, 255, 0.2);
  background-color: #2e3eb0;
}
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 99, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 99, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 99, 255, 0);
  }
}

@media (max-width: 550px) {
  .formTimer {
    padding: 6px 4px;
  }

  .formTitle {
    font-size: 22px;
  }

  .formSub {
    font-size: 16px;
    margin-top: 0 !important;
  }

  #timer {
    font-size: 34px;
  }
}