:root {
  font-size: 0.9375vw;
  --text-multiplier: 1;
  --spaceBetweenBlocks: calc(200rem * 1 / 18);
  --menu-bg: #ffffff;
  --menu-text: #193476;
  --toggle-track: #001D67;
  --toggle-dot: #ffffff;
  --bady-bg: #ECEBEE;
  --body-text: #001D67;
  --heading-text: #001D67;
}
:root[data-theme="dark"] {
  --menu-bg: #001D67;
  --menu-text: #808EB3;
  --toggle-track: #C16E32;
  --toggle-dot: #ffffff;
  --bady-bg: #000C2C;
  --body-text: #808EB3;
  --heading-text: #CCD2E1;
}
@media only screen and (max-width: 1023px) {
  :root {
    --spaceBetweenBlocks: calc(524.6151rem * 1 / 9.6);
  }
}
body {
  font-family: "Montserrat", sans-serif;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: calc(25rem * 1 / 18);
  background-color: var(--bady-bg);
}
@media only screen and (max-width: 1023px) {
  body {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding: 0 20px;
  }
}
body.no-scroll {
  overflow: hidden;
}
body main,
body .content {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: calc(25rem * 1 / 18);
  min-height: calc(800rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  body main,
  body .content {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding: 0 20px;
  }
}
/**
 * Global Reset of all HTML Elements
 * 
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Open Sans", "Helvetica", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
hr {
  border-bottom: 1px solid gray;
}
.mont-thin {
  font-family: "montserrat", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.mont-200 {
  font-family: "montserrat", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.mont-300 {
  font-family: "montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.mont,
.mont-400 {
  font-family: "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.mont-medium,
.mont-500 {
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.mont-semibold,
.mont-600 {
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.mont-bold,
.mont-700 {
  font-family: "montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.mont-800 {
  font-family: "montserrat", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.mont-heavy,
.mont-900 {
  font-family: "montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
}
h1,
.h1 {
  font-size: calc(56rem * 1 / 18);
  line-height: 100%;
}
@media only screen and (max-width: 1023px) {
  h1,
  .h1 {
    font-size: 36px;
  }
}
h2,
.h2 {
  font-size: calc(40rem * 1 / 18);
  line-height: 100%;
}
@media only screen and (max-width: 1023px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}
h3,
.h3 {
  font-size: calc(30rem * 1 / 18);
  line-height: calc(40rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  h3,
  .h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.body-caption {
  font-size: calc(12rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .body-caption {
    font-size: 12px;
  }
}
.body-small {
  font-size: calc(14rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .body-small {
    font-size: 14px;
  }
}
.body {
  font-size: calc(16rem * 1 / 18);
  line-height: 130%;
}
@media only screen and (max-width: 1023px) {
  .body {
    font-size: 16px;
  }
}
.body-medium {
  font-size: calc(18rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .body-medium {
    font-size: 18px;
  }
}
.body-large {
  font-size: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .body-large {
    font-size: 20px;
  }
}
.body-xl {
  font-size: calc(22rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .body-xl {
    font-size: 22px;
  }
}
.apply-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  column-gap: calc(25rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .apply-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding: 0 20px;
  }
}
.small-grid {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
}
@media only screen and (max-width: 1023px) {
  .small-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
.fill-grid {
  grid-column: 1 / -1;
}
.transition {
  transition: all 0.3s ease-in-out;
}
.radius5 {
  border-radius: calc(5rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .radius5 {
    border-radius: 5px;
  }
}
.radius10 {
  border-radius: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .radius10 {
    border-radius: 10px;
  }
}
.boxShadow {
  box-shadow: 0 calc(5rem * 1 / 18) calc(10rem * 1 / 18) 0 rgba(128, 142, 179, 0.15);
}
@media only screen and (max-width: 1023px) {
  .boxShadow {
    box-shadow: 0 5px 10px 0 rgba(128, 142, 179, 0.15);
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  grid-column: 1 / 5;
  width: calc(342rem * 1 / 18);
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  background-color: var(--menu-bg);
}
@media only screen and (max-width: 1023px) {
  .nav {
    display: none;
  }
}
.nav__logo {
  width: calc(248rem * 1 / 18);
  height: calc(63rem * 1 / 18);
  padding: calc(20rem * 1 / 18) 0 calc(20rem * 1 / 18) calc(25rem * 1 / 18);
}
.nav__logo .dark {
  display: none;
}
.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav__menu {
  flex-grow: 1;
  padding: calc(30rem * 1 / 18);
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav__menu::-webkit-scrollbar {
  display: none;
}
.nav__menu ul {
  list-style: none;
  margin: 0;
  padding: calc(20rem * 1 / 18) 0;
}
.nav__menu ul:first-of-type {
  border-bottom: calc(1rem * 1 / 18) solid #CCD2E1;
}
.nav__menu ul li {
  margin-bottom: calc(5pxrem * 1 / 18);
}
.nav__menu ul li a {
  display: flex;
  align-items: center;
  gap: calc(15rem * 1 / 18);
  padding: 10px;
  border-radius: calc(5rem * 1 / 18);
  color: #001D67;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  border: calc(1rem * 1 / 18) transparent solid;
  color: var(--menu-text);
}
@media only screen and (max-width: 1023px) {
  .nav__menu ul li a {
    border-radius: 5px;
  }
}
.nav__menu ul li a:hover,
.nav__menu ul li a.active {
  background: #f2f4f7;
  border: calc(1rem * 1 / 18) #CCD2E1 solid;
}
.nav__menu ul li a:hover .icon .navy,
.nav__menu ul li a.active .icon .navy {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.nav__menu ul li a:hover .icon .cooper,
.nav__menu ul li a.active .icon .cooper {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.nav__menu ul li a .icon {
  width: calc(24rem * 1 / 18);
  height: calc(24rem * 1 / 18);
  position: relative;
}
.nav__menu ul li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav__menu ul li a .icon .navy {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.nav__menu ul li a .icon .cooper {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.nav__menu ul li a .icon .white {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.nav__menu ul li a .theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__menu ul li a .toggle-track {
  width: calc(20rem * 1 / 18);
  height: calc(12rem * 1 / 18);
  background-color: var(--toggle-track);
  border-radius: calc(10rem * 1 / 18);
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.nav__menu ul li a .toggle-dot {
  width: calc(8rem * 1 / 18);
  height: calc(8rem * 1 / 18);
  background-color: var(--toggle-dot);
  border-radius: 50%;
  position: absolute;
  top: calc(2rem * 1 / 18);
  left: calc(2rem * 1 / 18);
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
.nav__footer {
  padding: calc(10rem * 1 / 18);
}
.nav__footer-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3AAC74;
  padding: calc(6rem * 1 / 18) calc(10rem * 1 / 18);
  border-radius: calc(5rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .nav__footer-text {
    border-radius: 5px;
  }
}
.nav__footer-text span {
  color: #ffffff;
  font-size: calc(14rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .nav__footer-text span {
    font-size: 14px;
  }
}
.nav__footer-icon {
  position: relative;
}
.nav__footer-icon .green {
  display: none;
  position: absolute;
  right: 0;
  top: calc(-10rem * 1 / 18);
}
.nav__footer-icon .white {
  position: absolute;
  right: 0;
  top: calc(-10rem * 1 / 18);
}
.nav__footer-icon:hover .green {
  display: block;
}
.nav__footer-icon:hover .white {
  display: none;
}
.mobNav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px 20px;
  grid-column: 1 / -1;
  background-color: var(--menu-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--menu-text);
}
@media only screen and (max-width: 1023px) {
  .mobNav {
    display: flex;
  }
}
.mobNav__logo {
  width: 180px;
  height: 46px;
}
.mobNav__logo img {
  width: 100%;
  height: 100%;
}
.mobNav__logo img.dark {
  display: none;
}
.mobNav .menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  .mobNav .menu-toggle {
    display: flex;
  }
}
.mobNav .menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--body-text);
  transition: all 0.3s ease-in-out;
}
.mobNav .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}
.mobNav .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobNav .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}
.mobNav__nav {
  position: fixed;
  top: 76px;
  right: -100%;
  background: #fff;
  padding: 30px 20px 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  z-index: 2000;
  height: calc(100vh - 76px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  background-color: var(--menu-bg);
}
.mobNav__nav.open {
  left: 0;
  right: 0;
}
.mobNav__nav .advisor {
  flex-shrink: 0;
  margin-bottom: 10px;
}
.mobNav__nav .advisor > p {
  color: var(--body-text);
}
.mobNav__nav-menu {
  margin-top: 20px;
  flex: 1;
  overflow-y: visible;
}
.mobNav__nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #CCD2E1;
}
.mobNav__nav-menu ul li {
  margin-bottom: 5px;
}
.mobNav__nav-menu ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px;
  border-radius: calc(5rem * 1 / 18);
  color: #001D67;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  border: 1px transparent solid;
  color: var(--menu-text);
}
@media only screen and (max-width: 1023px) {
  .mobNav__nav-menu ul li a {
    border-radius: 5px;
  }
}
.mobNav__nav-menu ul li a:hover,
.mobNav__nav-menu ul li a.active {
  background: #f2f4f7;
  border: 1px #CCD2E1 solid;
}
.mobNav__nav-menu ul li a:hover .icon .navy,
.mobNav__nav-menu ul li a.active .icon .navy {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.mobNav__nav-menu ul li a:hover .icon .cooper,
.mobNav__nav-menu ul li a.active .icon .cooper {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.mobNav__nav-menu ul li a .icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.mobNav__nav-menu ul li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobNav__nav-menu ul li a .icon .navy {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.mobNav__nav-menu ul li a .icon .cooper {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.mobNav__nav-menu ul li a .icon .white {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.mobNav__nav-menu ul li a .theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobNav__nav-menu ul li a .toggle-track {
  width: 20px;
  height: 12px;
  background-color: var(--toggle-track);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mobNav__nav-menu ul li a .toggle-dot {
  width: 8px;
  height: 8px;
  background-color: var(--toggle-dot);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
.mobNav__footer {
  padding: 10px 0;
  flex-shrink: 0;
  margin-top: auto;
}
.mobNav__footer-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3AAC74;
  padding: 6px 10px;
  border-radius: calc(5rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .mobNav__footer-text {
    border-radius: 5px;
  }
}
.mobNav__footer-text span {
  color: #ffffff;
  font-size: 14px !important;
}
.mobNav__footer-icon {
  position: relative;
}
.mobNav__footer-icon .green {
  display: none;
  position: absolute;
  right: 0;
  top: -10px;
}
.mobNav__footer-icon .white {
  position: absolute;
  right: 0;
  top: -10px;
}
.mobNav__footer-icon:hover .green {
  display: block;
}
.mobNav__footer-icon:hover .white {
  display: none;
}
:root[data-theme="dark"] .nav__logo .dark,
:root[data-theme="dark"] .mobNav__logo .dark {
  display: block;
}
:root[data-theme="dark"] .nav__logo .light,
:root[data-theme="dark"] .mobNav__logo .light {
  display: none;
}
:root[data-theme="dark"] .nav__menu-link .icon .navy {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
:root[data-theme="dark"] .nav__menu-link .icon .white {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
:root[data-theme="dark"] .nav__menu-link:hover,
:root[data-theme="dark"] .nav__menu-link.active {
  background: #001343;
  border: calc(1rem * 1 / 18) #4C6195 solid;
}
:root[data-theme="dark"] .nav__menu-link:hover .icon .white,
:root[data-theme="dark"] .nav__menu-link.active .icon .white {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
:root[data-theme="dark"] .nav__menu-link:hover .icon .cooper,
:root[data-theme="dark"] .nav__menu-link.active .icon .cooper {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
:root[data-theme="dark"] .nav__menu-link:hover span,
:root[data-theme="dark"] .nav__menu-link.active span {
  color: #CCD2E1;
}
:root[data-theme="dark"] .nav__menu-link .toggle-dot {
  transform: translateX(calc(8rem * 1 / 18));
}
:root[data-theme="dark"] .nav__menu-link span {
  color: #808EB3;
}
:root[data-theme="dark"] .mobNav__nav-menu .nav__menu-link .toggle-dot {
  transform: translateX(8px);
}
/* Topbar wrapper */
.topbar {
  grid-column: 6 / 24;
  height: calc(100rem * 1 / 18);
  position: absolute;
  right: calc(80rem * 1 / 18);
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
}
@media only screen and (max-width: 1023px) {
  .topbar {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .topbar {
    display: none;
  }
}
.topbar__left {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(448rem * 1 / 18);
  height: calc(467rem * 1 / 18);
  z-index: 0;
}
.topbar__left .symbol-dark {
  display: none;
}
.topbar__left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.topbar__middle {
  display: flex;
  align-items: center;
  gap: calc(20rem * 1 / 18);
  grid-column: 6 / 14;
}
.topbar__middle-label {
  text-transform: uppercase;
  color: var(--menu-text);
}
.topbar__middle-select {
  position: relative;
  width: calc(400rem * 1 / 18);
  height: calc(44rem * 1 / 18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: calc(1rem * 1 / 18) solid #ddd;
  border-radius: calc(5rem * 1 / 18);
  background-color: #ffffff;
  padding-right: calc(10rem*1 / 18);
}
.topbar__middle-select img {
  width: calc(24rem * 1 / 18);
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.topbar__middle-select.active img {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.topbar__middle-select .selected {
  padding: calc(8rem * 1 / 18) calc(10rem * 1 / 18) calc(8rem * 1 / 18) calc(15rem * 1 / 18);
  color: var(--menu-text);
  position: relative;
}
.topbar__middle-options {
  display: none;
  position: absolute;
  top: 91%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: calc(1rem * 1 / 18) solid #CCD2E1;
  border-top: none;
  border-radius: 0 0 calc(5rem * 1 / 18) calc(5rem * 1 / 18);
  box-shadow: 0 calc(2rem * 1 / 18) calc(6rem * 1 / 18) rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.topbar__middle-options.open {
  display: block;
}
.topbar__middle-options .option {
  padding: calc(10rem * 1 / 18) calc(15rem * 1 / 18);
  color: #808EB3;
}
.topbar__middle-options .option:hover {
  background: #f2f4f7;
}
.topbar__right {
  grid-column: 14 / 19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10rem * 1 / 18);
  margin-left: calc(20rem * 1 / 18);
}
.topbar__right-advisor {
  color: var(--menu-text);
  text-transform: uppercase;
}
.topbar__right-btn {
  background-color: #001D67;
  color: #fff;
  border: none;
  padding: calc(10rem * 1 / 18) calc(20rem * 1 / 18);
  border-radius: calc(5rem * 1 / 18);
  cursor: pointer;
  transition: background 0.2s;
}
@media only screen and (max-width: 1023px) {
  .topbar__right-btn {
    border-radius: 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .topbar__right-btn {
    padding: 10px 20px;
    margin-top: 10px;
  }
}
.topbar__right-btn:hover {
  background: #C16E32;
}
.mobile__topbar {
  flex-direction: column;
  grid-column: 1 / -1;
  height: 100px;
  position: relative;
  top: 100px;
  display: none;
}
@media only screen and (max-width: 1023px) {
  .mobile__topbar {
    display: flex;
    gap: 10px;
  }
}
.mobile__topbar-label {
  text-transform: uppercase;
  color: var(--menu-text);
}
.mobile__topbar-select {
  position: relative;
  width: 100%;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 10px 0;
}
.mobile__topbar-select img {
  width: 24px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
  padding-right: 10px;
}
.mobile__topbar-select.active img {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
  padding-right: 10px;
}
.mobile__topbar-select .selected {
  padding: 8px 10px 8px 15px;
  color: var(--menu-text);
  position: relative;
}
.mobile__topbar-options {
  display: none;
  position: absolute;
  top: 91%;
  left: -1px;
  right: 0;
  background: #ffffff;
  border: 1px solid #CCD2E1;
  border-top: none;
  border-radius: 0 0 10px 10px;
  z-index: 1000;
  width: 100%;
}
.mobile__topbar-options.open {
  display: block;
}
.mobile__topbar-options .option {
  padding: 10px 15px;
  color: #808EB3;
}
.mobile__topbar-options .option:hover {
  background: #f2f4f7;
}
:root[data-theme="dark"] .symbol-dark {
  display: block;
}
:root[data-theme="dark"] .symbol-light {
  display: none;
}
:root[data-theme="dark"] .topbar__middle-select,
:root[data-theme="dark"] .mobile__topbar-select {
  color: #CCD2E1;
  background-color: #001D67;
  border: 1px solid #334a85;
}
:root[data-theme="dark"] .topbar__middle-options,
:root[data-theme="dark"] .mobile__topbar-options {
  border: 1px solid #334a85;
  border-top: none;
  background: #001D67;
}
:root[data-theme="dark"] .topbar__middle-options .option,
:root[data-theme="dark"] .mobile__topbar-options .option {
  border-top: 1px solid #334a85;
}
:root[data-theme="dark"] .topbar__middle-options .option:hover,
:root[data-theme="dark"] .mobile__topbar-options .option:hover {
  background: #193476;
}
:root[data-theme="dark"] .topbar__right-btn {
  background-color: #C77C46;
}
:root[data-theme="dark"] .topbar__right-btn:hover {
  background-color: #001D67;
}
.pn {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .pn {
    display: none;
  }
}
.pn__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pn__list-item {
  margin: 0 calc(10rem * 1 / 18);
}
.pn__list-link {
  text-decoration: none;
  color: var(--menu-text);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.pn__list-link::after {
  content: "";
  position: absolute;
  background-color: transparent;
  left: 0;
  right: 0;
  bottom: calc(-10rem * 1 / 18);
  width: 100%;
  height: calc(1rem * 1 / 18);
  transition: all 0.3s ease-in-out;
}
.pn__list-link:hover {
  color: #C77C46;
}
.pn__list-link:hover::after {
  content: "";
  position: absolute;
  background-color: #C77C46;
  left: 0;
  right: 0;
  bottom: calc(-10rem * 1 / 18);
  width: 100%;
  height: calc(1rem * 1 / 18);
}
.pn__mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 45px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #ffffff;
  margin: 10px 0 20px;
}
@media only screen and (max-width: 1023px) {
  .pn__mobile {
    display: flex;
  }
}
.pn__mobile img {
  width: 24px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
  padding-right: 10px;
}
.pn__mobile.active img {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.pn__mobile .selected {
  padding: 8px  10px  8px  15px;
  color: var(--menu-text);
  position: relative;
  color: #C16E32;
}
.pn__mobile-options {
  display: none;
  position: absolute;
  top: 87%;
  left: -1px;
  right: 0;
  background: #ffffff;
  border: 1px solid #CCD2E1;
  border-top: none;
  border-radius: 0 0 10px 10px;
  z-index: 1000;
  width: 100%;
}
.pn__mobile-options.open {
  display: block;
}
.pn__mobile-options .option {
  padding: 10px 15px;
  color: #808EB3;
}
.pn__mobile-options .option:hover {
  background: #f2f4f7;
}
:root[data-theme="dark"] .pn__mobile {
  color: #CCD2E1;
  background-color: #001D67;
  border: 1px solid #334a85;
}
:root[data-theme="dark"] .pn__mobile-options {
  border: 1px solid #334a85;
  border-top: none;
  background: #001D67;
}
:root[data-theme="dark"] .pn__mobile-options .option {
  border-top: 1px solid #334a85;
}
:root[data-theme="dark"] .pn__mobile-options .option:hover {
  background: #193476;
}
.footer {
  grid-column: 6 / 25;
  box-sizing: border-box;
  padding-top: calc(45rem * 1 / 18);
  position: relative;
  z-index: 8;
}
@media only screen and (max-width: 1023px) {
  .footer {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}
.footer *,
.footer *::before,
.footer *::after {
  box-sizing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
.footer img,
.footer svg {
  border: 0;
  display: block;
  height: auto;
  max-width: 100%;
}
.footer a:link,
.footer a:visited {
  text-decoration: none;
}
.footer a:hover,
.footer a:active {
  outline: 0;
  text-decoration: underline;
}
.footer ol,
.footer ul {
  list-style: none;
}
.footer {
  background-color: #ffffff;
}
@media print {
  .footer {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .footer {
    padding-bottom: 2.5%;
  }
}
.footer__top {
  display: flex;
  justify-content: center;
  padding: 1.75% 0 3.75% 0;
}
@media only screen and (max-width: 600px) {
  .footer__top {
    padding: 4.75% 0 3.75% 0;
  }
}
.footer__top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 92.5%;
}
@media only screen and (max-width: 600px) {
  .footer__top-row {
    align-items: center;
    flex-direction: column;
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  .footer__top-box {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .footer__top-box--left {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1199px), only screen and (max-width: 1023px) {
  .footer__top-box--middle {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .footer__top-box--right {
    margin-top: 1.25rem;
  }
}
.footer__logo--rgf {
  width: calc(200rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__logo--rgf {
    width: 200px;
  }
}
.footer__logo--cipf {
  width: calc(60rem * 1 / 18);
  margin: auto;
  margin-bottom: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__logo--cipf {
    width: 60px;
    margin-bottom: 10px;
  }
}
.footer__logo--iiroc {
  width: calc(140rem * 1 / 18);
  margin-bottom: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__logo--iiroc {
    width: 140px;
    margin-bottom: 10px;
  }
}
.footer__social-row {
  display: flex;
  align-items: center;
  margin-top: calc(50rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__social-row {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer__social-row {
    justify-content: center;
    margin-top: 1rem;
  }
}
.footer__social-box:first-of-type {
  margin-right: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__social-box:first-of-type {
    margin-right: 10px;
  }
}
@media (hover) {
  .footer__social-icon-link:hover .footer__social-icon,
  .footer__social-icon-link:active .footer__social-icon,
  .footer__social-icon-link:focus .footer__social-icon {
    opacity: 0.75;
  }
}
.footer__social-icon {
  width: 2.25rem;
}
@media only screen and (max-width: 1023px) {
  .footer__social-icon {
    width: 25px;
  }
}
.footer__nav {
  display: flex;
  align-items: flex-start;
}
.footer__nav-box--middle {
  margin: 0 calc(50rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__nav-box--middle {
    margin: 0 2rem;
  }
}
.footer__nav-item:not(:last-of-type) {
  margin-bottom: calc(15rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__nav-item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
.footer__nav-link {
  color: #001D67;
}
.footer__nav-link:hover,
.footer__nav-link:active,
.footer__nav-link:focus {
  color: #353b59 !important;
  text-decoration: underline;
}
.footer__nav-dropdown {
  border-left: calc(2rem * 1 / 18) solid #C16E32;
  margin: calc(15rem * 1 / 18) 0 0 calc(15rem * 1 / 18);
  padding-left: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__nav-dropdown {
    border-left: 2px solid #C16E32;
    margin: 15px 0 0 15px;
    padding-left: 20px;
  }
}
.footer__nav-dropdown-item:not(:last-of-type) {
  margin-bottom: calc(5rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__nav-dropdown-item:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
.footer__nav-dropdown-link {
  color: #001D67;
}
.footer__nav-dropdown-link:hover,
.footer__nav-dropdown-link:active,
.footer__nav-dropdown-link:focus {
  color: #353b59 !important;
  text-decoration: underline;
}
.footer__search {
  position: relative;
}
@media only screen and (max-width: 600px) {
  .footer__search {
    display: none;
  }
}
.footer__search-field {
  height: calc(45rem * 1 / 18);
  width: 100%;
  border: calc(1rem * 1 / 18) solid #808EB3;
  border-radius: calc(50rem * 1 / 18);
  padding-left: calc(25rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__search-field {
    height: 45px;
    border: 1px solid #808EB3;
    border-radius: 50px;
    padding-left: 25px;
  }
}
.footer__search-field::placeholder {
  color: #808EB3;
}
.footer__search-icon {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__search-icon {
    width: 20px;
  }
}
.footer__member-row {
  display: flex;
  align-items: center;
  margin-top: calc(45rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__member-row {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer__member-row {
    justify-content: space-around;
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer__member-row {
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer__member-box:last-of-type {
  margin-left: calc(45rem * 1 / 18);
}
@media only screen and (max-width: 600px) {
  .footer__member-box:last-of-type {
    margin-left: 0;
  }
}
.footer__member-link {
  display: flex;
  align-items: center;
  color: #94664F !important;
  text-transform: uppercase;
}
.footer__member-link--cipf {
  justify-content: flex-start;
}
.footer__member-link--iiroc {
  justify-content: flex-end;
}
@media only screen and (max-width: 600px) {
  .footer__member-link--iiroc {
    justify-content: center;
  }
}
.footer__arrow {
  margin-left: calc(5rem * 1 / 18);
  width: calc(5rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__arrow {
    margin-left: 5px;
    width: 5px;
  }
}
.footer__bottom {
  display: flex;
  justify-content: center;
  padding: calc(10rem * 1 / 18) 0;
}
@media only screen and (max-width: 1023px) {
  .footer__bottom {
    padding: 10px 0;
  }
}
.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92.5%;
}
@media only screen and (max-width: 600px) {
  .footer__bottom-row {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }
}
.footer__bottom-box {
  color: #94664F;
}
@media only screen and (max-width: 600px) {
  .footer__bottom-box:last-of-type {
    border-top: 1px solid rgba(65, 64, 66, 0.3);
    padding-top: calc(18rem * 1 / 18);
    margin-top: calc(20rem * 1 / 18);
    width: 100%;
  }
}
@media only screen and (max-width: 600px) and only screen and (max-width: 1023px) {
  .footer__bottom-box:last-of-type {
    padding-top: 18px;
    margin-top: 20px;
  }
}
.footer__trade-name {
  width: 65%;
}
@media only screen and (max-width: 600px) {
  .footer__trade-name {
    margin: 0 auto;
  }
}
.footer__legal-nav-list {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 600px) {
  .footer__legal-nav-list {
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 600px) {
  .footer__legal-nav-item {
    flex: 0 1 31%;
  }
}
.footer__legal-nav-item:not(:last-of-type) {
  margin-right: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 600px) {
  .footer__legal-nav-item:not(:last-of-type) {
    margin-right: auto;
  }
}
.footer__legal-nav-link {
  color: #94664F !important;
}
.home {
  grid-column: 6 / 24;
  margin-top: calc(180rem * 1 / 18);
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .home {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .home {
    grid-column: 1 / -1;
    margin-top: 120px;
  }
}
.home__heading {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
  align-items: center;
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .home__heading {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
.home__heading-title {
  grid-column: 1 / 6;
  color: var(--body-text);
}
@media only screen and (max-width: 1023px) {
  .home__heading-title {
    grid-column: 1 / -1;
  }
}
.home__heading-info {
  grid-column: 14 / 19;
  position: relative;
  text-transform: uppercase;
  text-decoration: underline;
  color: #001D67;
}
@media only screen and (max-width: 1023px) {
  .home__heading-info {
    grid-column: 1 / -1;
    margin-left: 25px;
  }
}
.home__heading-info::before {
  content: "";
  position: absolute;
  left: calc(-20rem * 1 / 18);
  background-color: #C16E32;
  width: calc(14rem * 1 / 18);
  height: calc(14rem * 1 / 18);
  border-radius: 50%;
  top: calc(5rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__heading-info::before {
    left: -20px;
    width: 14px;
    height: 14px;
    top: 5px;
  }
}
.home__content {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
  grid-column: 1 / -1;
  margin: 0 0 calc(115rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__content {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .home__content {
    margin: 10px 0 115px;
    gap: 20px;
  }
}
.home .box {
  background-color: var(--menu-bg);
  box-shadow: 0 calc(5rem * 1 / 18) calc(10rem * 1 / 18) 0 rgba(128, 142, 179, 0.15);
  border-radius: calc(10rem * 1 / 18);
  padding: calc(30rem * 1 / 18) calc(35rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home .box {
    box-shadow: 0 5px 10px 0 rgba(128, 142, 179, 0.15);
  }
}
@media only screen and (max-width: 1023px) {
  .home .box {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .home .box {
    padding: 30px 20px;
  }
}
.home .box .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: calc(20rem * 1 / 18);
  border-bottom: calc(1rem * 1 / 18) solid #B2BBD1;
}
@media only screen and (max-width: 1023px) {
  .home .box .heading {
    padding-bottom: 20px;
    border-bottom: 1px solid #B2BBD1;
  }
}
.home .box .heading .title {
  color: var(--heading-text);
}
.home .box .heading .link {
  text-decoration: none;
  text-transform: uppercase;
  color: #001D67;
  background-color: #f2f4f7;
  border: calc(1rem * 1 / 18) solid #CCD2E1;
  border-radius: calc(5rem * 1 / 18);
  padding: calc(10rem * 1 / 18) calc(15rem * 1 / 18);
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
@media only screen and (max-width: 1023px) {
  .home .box .heading .link {
    border-radius: 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .home .box .heading .link {
    border: 1px solid #CCD2E1;
    padding: 10px 15px;
  }
}
.home .box .heading .link:hover {
  background-color: #C16E32;
  border: calc(1rem * 1 / 18) solid #C16E32;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .home .box .heading .link:hover {
    border: 1px solid #C16E32;
  }
}
.home__tv {
  grid-column: 1 / 7;
  height: calc(500rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__tv {
    grid-column: 1 / -1;
    height: auto;
  }
}
.home__tv-title {
  color: var(--heading-text);
  margin-bottom: calc(30rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__tv-title {
    margin-bottom: 30px;
  }
}
.home__tv-amount {
  border: calc(1rem * 1 / 18) solid #e5e8f0;
  border-top: calc(1rem * 1 / 18) solid #B2BBD1;
  background-color: #fafafb;
  border-radius: calc(10rem * 1 / 18);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .home__tv-amount {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .home__tv-amount {
    border: 1px solid #e5e8f0;
    border-top: 1px solid #B2BBD1;
  }
}
.home__tv-amount p {
  font-size: calc(60rem * 1 / 18);
  color: #001D67;
  position: relative;
  padding-left: calc(30rem * 1 / 18);
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .home__tv-amount p {
    font-size: 40px;
    padding-left: 30px;
  }
}
.home__tv-amount p > sup {
  font-size: calc(24rem * 1 / 18);
  position: absolute;
  top: calc(15rem * 1 / 18);
  left: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__tv-amount p > sup {
    font-size: 24px;
    top: 5px;
    left: 15px;
  }
}
.home__tv-amount p > span {
  font-size: calc(24rem * 1 / 18);
  position: relative;
  bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .home__tv-amount p > span {
    font-size: 24px;
  }
}
.home__tv-list {
  list-style: none;
  margin-top: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__tv-list {
    margin-top: 20px;
  }
}
.home__tv-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(10rem * 1 / 18) 0;
  border-bottom: calc(1rem * 1 / 18) solid #CCD2E1;
}
@media only screen and (max-width: 1023px) {
  .home__tv-list li {
    padding: 10px 0;
    border-bottom: 1px solid #CCD2E1;
    flex-wrap: wrap;
  }
}
.home__tv-list li > span {
  color: #4C6195;
}
@media only screen and (max-width: 1023px) {
  .home__tv-list li > span {
    width: 100%;
  }
}
.home__investments {
  grid-column: 7 / 19;
  height: calc(500rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__investments {
    grid-column: 1 / -1;
    height: auto;
  }
}
.home__insurance {
  grid-column: 1 / 7;
  grid-row: span 2;
  height: calc(674rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__insurance {
    grid-column: 1 / -1;
    height: auto;
    grid-row: auto;
    padding: 20px !important;
  }
}
.home__insurance-content {
  margin-top: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__insurance-content {
    margin-top: 20px;
  }
}
.home__insurance-link {
  display: flex;
  align-items: center;
  gap: calc(10rem * 1 / 18);
  padding: calc(12rem * 1 / 18) calc(10rem * 1 / 18);
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .home__insurance-link {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 10px;
  }
}
.home__insurance-link:hover .text {
  text-decoration: underline;
}
.home__insurance-link .image {
  width: calc(65rem * 1 / 18);
  height: calc(72rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__insurance-link .image {
    width: 65px;
    height: 72px;
  }
}
.home__insurance-link .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home__insurance-link .image .dark {
  display: none;
}
.home__insurance-link .text {
  color: var(--heading-text);
}
.home__records {
  grid-column: 7 / 19;
  height: calc(413rem * 1 / 18);
  padding: calc(30rem * 1 / 18) calc(20rem * 1 / 18) !important;
}
@media only screen and (max-width: 1023px) {
  .home__records {
    grid-column: 1 / -1;
    height: auto;
    padding: 30px 20px !important;
  }
}
.home__records-grid {
  display: flex;
  flex-wrap: wrap;
  gap: calc(20rem * 1 / 18);
  margin-top: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__records-grid {
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
  }
}
.home__records-item {
  background-color: #fafafb;
  border: calc(1rem * 1 / 18) solid #CCD2E1;
  border-radius: calc(5rem * 1 / 18);
  position: relative;
  width: calc(130rem * 1 / 18);
  height: calc(130rem * 1 / 18);
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .home__records-item {
    border-radius: 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .home__records-item {
    border: 1px solid #CCD2E1;
    width: 130px;
    height: 130px;
  }
}
.home__records-item:hover .home__records-icon {
  transform: scale(1.1);
}
.home__records-item:hover .home__records-name {
  text-decoration: underline;
}
.home__records-item .number {
  color: #C16E32;
  position: absolute;
  top: calc(10rem * 1 / 18);
  left: calc(10rem*1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__records-item .number {
    top: 10px;
    left: 10px;
  }
}
.home__records-item .dots {
  position: absolute;
  top: calc(10rem * 1 / 18);
  right: calc(10rem*1 / 18);
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .home__records-item .dots {
    top: 10px;
    right: 10px;
  }
}
.home__records-item .dots span {
  width: calc(3rem * 1 / 18);
  height: calc(3rem * 1 / 18);
  background-color: #001D67;
  border-radius: 50%;
  display: block;
  margin: calc(3rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__records-item .dots span {
    width: 3px;
    height: 3px;
    margin: 3px;
  }
}
.home__records-icon {
  width: calc(47rem * 1 / 18);
  height: calc(47rem * 1 / 18);
  margin: auto;
  margin-top: calc(20rem * 1 / 18);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .home__records-icon {
    width: 47px;
    height: 47px;
    margin-top: 20px;
  }
}
.home__records-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home__records-name {
  color: #001D67;
  text-align: center;
  margin-top: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__records-name {
    margin-top: 10px;
  }
}
.home__reports {
  grid-column: 7 / 13;
  height: calc(281rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__reports {
    grid-column: 1 / -1;
    height: auto;
  }
}
.home__reports-list {
  margin-top: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__reports-list {
    margin-top: 20px;
  }
}
.home__reports-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(10rem * 1 / 18) 0;
  border-bottom: calc(1rem * 1 / 18) solid #CCD2E1;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .home__reports-link {
    padding: 10px 0;
    border-bottom: 1px solid #CCD2E1;
  }
}
.home__reports-link:hover span {
  text-decoration: underline;
}
.home__reports-link > span {
  color: #4C6195;
  text-decoration: none;
}
.home__reports-link .dark {
  display: none;
}
.home__dsl {
  grid-column: 13 / 19;
  height: calc(281rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__dsl {
    grid-column: 1 / -1;
    height: auto;
  }
}
.home__dsl-list {
  margin-top: calc(20rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__dsl-list {
    margin-top: 20px;
  }
}
.home__dsl-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(10rem * 1 / 18) 0;
  border-bottom: calc(1rem * 1 / 18) solid #CCD2E1;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .home__dsl-link {
    padding: 10px 0;
    border-bottom: 1px solid #CCD2E1;
  }
}
.home__dsl-link:hover span {
  text-decoration: underline;
}
.home__dsl-link > span {
  color: #4C6195;
  text-decoration: none;
}
.home__dsl-link .dark {
  display: none;
}
.home__mes {
  grid-column: 7 / 19;
}
@media only screen and (max-width: 1023px) {
  .home__mes {
    grid-column: 1 / -1;
  }
}
.home__mes-content {
  margin-top: calc(30rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .home__mes-content {
    margin-top: 30px;
  }
}
.home__mes-content .text {
  color: #808EB3;
  line-height: 150%;
}
.home__mes-content .link {
  text-decoration: none;
  text-transform: uppercase;
  padding: calc(10rem * 1 / 18) calc(15rem * 1 / 18);
  background-color: #001D67;
  color: #ffffff;
  display: block;
  margin: calc(30rem * 1 / 18) 0 0;
  border-radius: calc(5rem * 1 / 18);
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .home__mes-content .link {
    border-radius: 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .home__mes-content .link {
    padding: 10px 15px;
    margin: 30px 0 0;
  }
}
.home__mes-content .link:hover {
  background-color: #C16E32;
}
:root[data-theme="dark"] .home__heading-info {
  color: #CCD2E1;
}
:root[data-theme="dark"] .home .box {
  border: calc(1rem * 1 / 18) solid #334a85;
  box-shadow: none;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home .box {
    border: 1px solid #334a85;
  }
}
:root[data-theme="dark"] .home .box .heading .link {
  color: #ffffff;
  background-color: #4C6195;
  border: calc(1rem * 1 / 18) solid #4C6195;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home .box .heading .link {
    border: 1px solid #4C6195;
  }
}
:root[data-theme="dark"] .home .box .heading .link:hover {
  background-color: #C16E32;
  border: calc(1rem * 1 / 18) solid #C16E32;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home .box .heading .link:hover {
    border: 1px solid #C16E32;
  }
}
:root[data-theme="dark"] .home__tv-amount {
  background-color: transparent;
  border: none;
  border-top: calc(1rem * 1 / 18) solid #808EB3;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home__tv-amount {
    border-top: 1px solid #808EB3;
    border-radius: 0;
  }
}
:root[data-theme="dark"] .home__tv-amount p {
  color: #ffffff;
}
:root[data-theme="dark"] .home__tv-list li {
  border-bottom: calc(1rem * 1 / 18) solid #4C6195;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home__tv-list li {
    border-bottom: 1px solid #4C6195;
  }
}
:root[data-theme="dark"] .home__tv-list li > span {
  color: #808EB3;
}
:root[data-theme="dark"] .home__insurance-heading .link {
  color: #ffffff;
  background-color: #4C6195;
  border: calc(1rem * 1 / 18) solid #4C6195;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home__insurance-heading .link {
    border: 1px solid #4C6195;
  }
}
:root[data-theme="dark"] .home__insurance-link {
  border-bottom: calc(1rem * 1 / 18) solid #4C6195;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home__insurance-link {
    border-bottom: 1px solid #4C6195;
  }
}
:root[data-theme="dark"] .home__insurance-link .dark {
  display: block;
}
:root[data-theme="dark"] .home__insurance-link .light {
  display: none;
}
:root[data-theme="dark"] .home__reports-link {
  border-bottom: calc(1rem * 1 / 18) solid #4C6195;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home__reports-link {
    border-bottom: 1px solid #4C6195;
  }
}
:root[data-theme="dark"] .home__reports-link > span {
  color: #808EB3;
}
:root[data-theme="dark"] .home__reports-link .dark {
  display: block;
}
:root[data-theme="dark"] .home__reports-link .light {
  display: none;
}
:root[data-theme="dark"] .home__dsl-link {
  border-bottom: calc(1rem * 1 / 18) solid #4C6195;
}
@media only screen and (max-width: 1023px) {
  :root[data-theme="dark"] .home__dsl-link {
    border-border: 1px solid #4C6195;
  }
}
:root[data-theme="dark"] .home__dsl-link > span {
  color: #808EB3;
}
:root[data-theme="dark"] .home__dsl-link .dark {
  display: block;
}
:root[data-theme="dark"] .home__dsl-link .light {
  display: none;
}
:root[data-theme="dark"] .home__mes-content .text {
  color: #CCD2E1;
}
:root[data-theme="dark"] .home__mes-content .link {
  background-color: #4C6195;
  color: #ffffff;
}
:root[data-theme="dark"] .home__mes-content .link:hover {
  background-color: #C16E32;
}
.investments {
  grid-column: 6 / 24;
  margin-top: calc(180rem * 1 / 18);
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .investments {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .investments {
    grid-column: 1 / -1;
    margin-top: 120px;
  }
}
.investments__heading {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: calc(25rem * 1 / 18);
  grid-template-rows: auto;
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .investments__heading {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
.investments__heading-title {
  grid-column: 1 / 5;
  color: var(--menu-text);
  margin-left: calc(10rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .investments__heading-title {
    grid-column: 1 / -1;
    margin-left: 10px;
  }
}
.investments__heading-nav {
  grid-column: 7 / 19;
}
@media only screen and (max-width: 1023px) {
  .investments__heading-nav {
    grid-column: 1 / -1;
  }
}
.investments__content {
  grid-column: 1 / -1;
  height: calc(800rem * 1 / 18);
  background-color: #ffffff;
  border-radius: calc(10rem * 1 / 18);
  margin: 0 0 calc(115rem * 1 / 18);
  position: relative;
  box-shadow: 0 calc(5rem * 1 / 18) calc(10rem * 1 / 18) 0 rgba(128, 142, 179, 0.15);
}
@media only screen and (max-width: 1023px) {
  .investments__content {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .investments__content {
    box-shadow: 0 5px 10px 0 rgba(128, 142, 179, 0.15);
  }
}
@media only screen and (max-width: 1023px) {
  .investments__content {
    height: 800px;
    margin: 0 0 100px;
  }
}
.investments__content-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.investments__content-text h3 {
  color: #CCD2E1;
}
