@font-face {
  font-family: "PP Eiko Thin";
  src: url("/f/PPEiko-Thin.otf") format("opentype"); /* Ensure correct path */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PP Eiko Medium";
  src: url("/f/PPEiko-Medium.otf") format("opentype"); /* Ensure correct path */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PP Eiko Heavy";
  src: url("/f/PPEiko-Heavy.otf") format("opentype"); /* Ensure correct path */
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

*, a {
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  body, html {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

p {
  text-align: left;
  font-family: "gotham", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #1C253B;
  font-size: 0.9rem;
  line-height: 1.65em;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/***SECTION + CONTAINS***/
section.padSml {
  padding: 4.5rem 0;
}
section.padMed {
  padding: 6rem 0;
}
section.padLrg {
  padding: 8rem 0;
}

.contain, .container {
  width: calc(100% - 2rem);
  max-width: 1300px;
  margin: 0 auto;
}

.cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.btn {
  line-height: 1em;
  font-size: 0.7em;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.92px;
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #76B0BD;
  transition: color 0.5s ease, padding 0.5s ease;
}

.btn::before {
  content: "";
  width: 20px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom: 2px solid #76B0BD;
  border-top: 2px solid #76B0BD;
  border-left: 2px solid #76B0BD;
  transition: all 0.5s ease;
}

.btn::after {
  content: "";
  width: 20px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom: 2px solid #76B0BD;
  border-top: 2px solid #76B0BD;
  border-right: 2px solid #76B0BD;
  transition: border-color 0.5s ease;
}

.btn:hover {
  color: #fff;
  padding: 10px 25px;
}

.btn:hover::before {
  width: calc(100% - 20px);
  border-color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.btn:hover::after {
  border-color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.flex_dwrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
}
.flex_dwrapper.--space_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_dwrapper.--item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#container .split-line {
  overflow: hidden;
  line-height: normal;
}
#container .split-line > span {
  transform: translate(0, 100%);
  will-change: transform;
  transition: transform 1s ease 0.1s;
  display: block;
}
#container .in-view .split-line > span {
  transform: translate(0, 0);
}

/***** FORM *****/
form input, form textarea {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
form input:focus, form textarea:focus, form button:focus, form select:focus {
  outline: none;
}
form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 4;
  height: 94px;
}
header .contain, header .container {
  position: relative;
  height: 100%;
  max-width: 1880px;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
header .logo {
  background: url(/i/logo.svg) no-repeat center/contain;
  width: 220px;
  height: 34px;
  display: block;
  z-index: 1;
}
header #nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #01070B;
}
header #nav .contain, header #nav .container {
  max-width: 1300px;
  display: flex;
  flex-direction: row;
  height: auto;
  top: 50%;
  transform: translate(0, -50%);
  position: relative;
}
header #nav nav {
  padding-right: 100px;
  max-width: 900px;
}
header #nav nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
header #nav nav li {
  width: 50%;
  margin-bottom: 60px;
  max-width: 400px;
}
header #nav nav li.selNav a, header #nav nav a:hover {
  position: relative;
}
header #nav nav li.selNav a::before, header #nav nav a:hover::before {
  content: "";
  background: url(/i/symbol.svg) no-repeat center left/34px auto;
  position: absolute;
  left: -70px;
  top: calc((2.5rem - 34px) / 2);
  width: 34px;
  height: 34px;
}
header #nav nav a {
  font-family: "PP Eiko Thin";
  font-size: 2.5em;
  color: #ABBFC9;
  transition: color 0.3s ease, opacity 0.5s ease;
}
header #nav nav li:nth-last-child(1) {
  margin-bottom: 0;
}
header #nav nav li:nth-last-child(2) {
  margin-bottom: 0;
}
header #nav .contact {
  padding-left: 100px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 380px;
}
header #nav .contact p label {
  text-transform: uppercase;
  color: #ABBFC9;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2.4px;
  line-height: 1.8em;
  display: block;
}
header #nav .contact p {
  color: #728A97;
  font-size: 1rem;
  line-height: 36px;
  font-weight: 300;
  margin-top: 2em;
}
header #nav .contact p a {
  color: inherit;
  transition: color 0.3s ease;
}
header #nav .contact p a:hover {
  color: #4F7589;
}
header #nav .contact p:first-child {
  margin-top: 0;
}
header .right {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
header .v-line {
  width: 0;
  height: 1.8rem;
  border-right: 1px solid #fff;
}
header .client-login-btn.--mobile {
  display: none;
}
header button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
header button span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6.58px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  transition: color 0.3s ease;
}
header button:hover span {
  color: #76B0BD;
}
header #menu_btn {
  padding-right: 40px;
}
header #menu_btn i {
  transition-delay: 0.6s;
  transition: all 0.2s ease-out;
  height: 3px;
  width: 30px;
  background-color: #76B0BD;
  position: absolute;
  right: 0;
}
header #menu_btn i:nth-child(2) {
  top: 3px;
}
header #menu_btn i:nth-child(3) {
  top: 13px;
}

header.active #menu_btn i:nth-child(2) {
  transform: rotate(45deg);
  top: 8px;
}
header.active #menu_btn i:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

header.scroll {
  background: #01070B;
  /* #menu_btn span{color:#76B0BD} */
}

footer {
  padding: 80px 0;
  background: #01070B;
}
footer .logo {
  background: url(/i/logo.svg) no-repeat center/contain;
  width: 302px;
  height: 47px;
  display: block;
  margin: 0 auto;
}
footer nav {
  padding: 30px 0;
  border-top: 1px solid #3A464D;
  border-bottom: 1px solid #3A464D;
}
footer nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer nav ul li {
  color: #3A464D;
  font-size: 0.7em;
  font-weight: 600;
}
footer nav ul li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  letter-spacing: 6.58px;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 5px;
}
footer nav a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #4F7589;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
footer nav a:hover {
  color: #4F7589;
}
footer nav a:hover::after {
  width: calc(100% - 5px);
}
footer nav li.selNav a {
  color: #4F7589;
}
footer nav li.selNav a::after {
  width: calc(100% - 5px);
}
footer .contain, footer .container {
  max-width: 1000px;
}
footer .contain > div:nth-child(1), footer .container > div:nth-child(1) {
  margin-bottom: 80px;
}
footer .contain > div:nth-child(3), footer .container > div:nth-child(3) {
  margin-top: 30px;
  text-align: center;
}
footer p {
  color: #5c656a;
  font-size: 0.75em;
  font-weight: 300;
  text-align: center;
  line-height: 1.1em;
}
footer p a {
  color: inherit;
  transition: color 0.3s ease;
}
footer p a:hover {
  color: #4F7589;
}

body .cookie-disclaimer {
  background-color: #E5F3F3;
  box-shadow: initial;
  border-radius: 10px;
  width: 90% !important;
  max-width: 1320px !important;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px !important;
  z-index: 1000;
}
body .cookie-disclaimer * {
  color: #1C253B;
  text-transform: none !important;
}
body .cookie-disclaimer .c-disclaimer.c-on {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
body .cookie-disclaimer .c-disclaimer.c-on p {
  margin: 0 1rem 0 0;
}
body .cookie-disclaimer .c-disclaimer.c-on > a, body .cookie-disclaimer .c-disclaimer.c-on button {
  min-width: 175px;
  margin: 0 !important;
}
body .cookie-disclaimer .c-content a:nth-child(5), body .cookie-disclaimer .c-content button:nth-child(5) {
  color: #fff;
  background-color: #d13e3e !important;
}
body .cookie-disclaimer .c-content a:nth-child(6), body .cookie-disclaimer .c-content button:nth-child(6) {
  color: #fff;
  background-color: #93aac5 !important;
}
body .cookie-disclaimer p, body .cookie-disclaimer div {
  font-size: 0.8rem;
  line-height: 1.33em;
}
body .cookie-disclaimer a, body .cookie-disclaimer button {
  text-decoration: none;
}
body .cookie-disclaimer ul {
  list-style-type: none;
}
body .cookie-disclaimer .c-content h2 {
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: normal;
}
body .cookie-disclaimer h3 {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2em;
}
body .cookie-disclaimer h3.c-on {
  color: #A5C4D4 !important;
}
body .cookie-disclaimer .btn-agree, body .cookie-disclaimer li > a, body .cookie-disclaimer li > button {
  background-color: #264C5B;
  color: #fff;
}
body .cookie-disclaimer li > button {
  width: 100%;
  text-align: left;
  text-decoration: none !important;
}
body .cookie-disclaimer .btn-preferences, body .cookie-disclaimer .c-nav .btn-close-pref a, body .cookie-disclaimer .c-nav .btn-close-pref button {
  background-color: #264C5B;
  color: #fff;
}
body .cookie-disclaimer .c-nav .btn-close-pref button {
  text-align: left;
}
body .cookie-disclaimer .btn-agree, body .cookie-disclaimer .btn-preferences {
  border-radius: 3.5rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

#shade {
  display: none;
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

#login_wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 90vw;
  max-width: 1000px;
  height: 400px;
  background-color: #fff;
  display: none;
  z-index: 999;
}
#login_wrapper .btn-close {
  height: 22px;
  width: 22px;
  background: url(/i/close.svg) center/contain no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#login_wrapper .content {
  width: 100%;
  padding: 1rem 0;
  height: 100%;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#login_wrapper .content a {
  padding: 0 2rem;
  width: 33.33%;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 180px;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#login_wrapper .content a:last-child {
  border-right: 0;
}
#login_wrapper .content img, #login_wrapper .content svg {
  display: block;
  margin: 0 auto 2rem;
  width: 90%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}
#login_wrapper .content .addepar-logo {
  max-width: 150px;
}
#login_wrapper .content .emoney-logo {
  max-width: 190px;
  margin-bottom: 1rem;
}
#login_wrapper .content .fidelity-logo {
  max-width: 300px;
}
#login_wrapper .content img {
  margin-bottom: 3rem;
}
#login_wrapper .content .fill-green {
  fill: #A5C4D4;
}
#login_wrapper .content .fill-white {
  fill: #1C253B;
}
#login_wrapper .content p {
  text-align: center;
}

.popup-modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 90vw;
  max-width: 900px;
  height: 55vh;
  max-height: 550px;
  background-color: #fff;
  display: none;
  z-index: 999;
  border-radius: 10px;
  overflow: hidden;
}
.popup-modal .btn-close {
  height: 22px;
  width: 22px;
  background: url(/i/close.svg) center/contain no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popup-modal .content {
  width: 100%;
  padding: 2rem 1rem;
  height: 100%;
  overflow: auto;
}
.popup-modal .content a {
  color: #76B0BD;
  text-decoration: underline;
}

@media screen and (max-width: 1500px) {
  header #nav .contact {
    min-width: 400px;
  }
  header #nav nav {
    padding-left: 60px;
  }
  header #nav nav a {
    font-size: 2em;
  }
  header #nav nav li.selNav a::before {
    left: -50px;
    width: 30px;
    height: 30px;
    background-size: 30px auto;
  }
}
@media screen and (max-width: 1279px) {
  body .cookie-disclaimer {
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    bottom: 0 !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on {
    display: block !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > p {
    margin-bottom: 1.5rem;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > a {
    margin-bottom: 0.5rem !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > .btn-agree {
    margin-right: 0.75rem !important;
  }
}
@media screen and (max-width: 1279px) {
  header #nav .contact {
    display: none;
  }
  header #nav nav {
    max-width: 1200px;
    padding-left: 50px;
    padding-right: 50px;
  }
  header #nav nav ul {
    justify-content: center;
  }
}
@media screen and (max-width: 979px) {
  footer nav {
    padding-bottom: 15px;
  }
  footer nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer nav ul li {
    margin-right: 10px;
    margin-bottom: 15px;
  }
  footer nav ul li:last-child {
    margin-right: 0;
  }
  footer nav ul li a {
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  header #menu_btn {
    height: 20px;
  }
  header button span, header .v-line {
    display: none;
  }
  header .client-login-btn.--mobile {
    display: block;
  }
  header #nav nav {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    /*
    li:nth-child(7){order:4;}
    li:nth-child(8){order:8;}
    */
  }
  header #nav nav ul {
    flex-direction: column;
    width: 100%;
  }
  header #nav nav li {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 1.25em;
  }
  header #nav nav li:nth-child(1) {
    order: 1;
  }
  header #nav nav li:nth-child(2) {
    order: 2;
  }
  header #nav nav li:nth-child(3) {
    order: 3;
  }
  header #nav nav li:nth-child(4) {
    order: 4;
  }
  header #nav nav li:nth-child(5) {
    order: 5;
  }
  header #nav nav li:nth-child(6) {
    order: 6;
  }
  header #nav nav li:nth-child(7) {
    order: 7;
  }
  header #nav nav li:nth-last-child(2) {
    margin-bottom: 1.25em;
  }
  header #nav nav li.selNav {
    padding-left: 50px;
  }
  header #nav nav li a {
    font-size: 2.5em;
  }
  header #nav nav li.selNav a::before {
    left: -50px;
    width: 32px;
    height: 32px;
    background-size: 32px auto;
  }
  #login_wrapper {
    height: auto;
    max-width: 400px;
  }
  #login_wrapper .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2.5rem 2.5rem 1.25rem;
  }
  #login_wrapper .content a {
    width: 100%;
    padding: 2rem 0;
    height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  #login_wrapper .content a:last-child {
    border-bottom: 0;
  }
  #login_wrapper .content .emoney-logo {
    margin-bottom: 0;
  }
  #login_wrapper .content img, #login_wrapper .content svg {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  footer {
    padding-top: 70px;
  }
  footer .logo {
    max-width: 100%;
  }
  footer .contain > div:nth-child(1), footer .container > div:nth-child(1) {
    margin-bottom: 70px;
  }
}

/*# sourceMappingURL=global.css.map */
