<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Banner parallax */

.hero.hero-static {
  min-height: 0 !important;
  max-height: none;
  height: auto !important;
  width: 100%;
}

.hero-static .hero-img {
  width: 100%;
  min-height: 110vh;
}

.home .hero-parallax {
  background-size: 100% auto;
}

@media only screen and (max-width: 991px) {
  .hero-parallax {
    background-position: center !important;
  }
}

.hero.hero-static .header-text {
  position: absolute !important;
  top: 0px;
  transform: translateX(-50%);
  left: 50%;
}

/* GLOBAL
 ----------------------------------------*/

h1 {
  font-size: 3.125em;
}


@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2.5em;
  }
}


/* BUTTONS
 ----------------------------------------*/

.button.b-yellow {
  border-color: #fedf01 !important;
  background-color: #fedf01 !important;
  color: #252525 !important;
}

.button.b-yellow:hover {
  background-color: #feef80 !important;
  border-color: #feef80 !important;
}


/* NAV
 ----------------------------------------*/

.navbar-default,
#global-navigation.headeractive {
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}
#primary-navigation {
  transition: 0.2s;
}
.navbar:not(.headerattop) #primary-navigation, 
.navbar.headeractive #primary-navigation {
  padding: 5px 0;
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  height: 0;
}
#global-navigation.navbar:not(.headerattop), 
#global-navigation.navbar.headeractive {
  height: 0;
}


/* NAV DOTS
 ----------------------------------------*/

.nav-dots {
  position: fixed;
  z-index: 5;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-dots li {
  position: relative;
  padding: 0;
  margin: 20px 0;
}

.nav-dots li a .dot {
  position: relative;
  z-index: 3;
  display: block;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: solid 1px #fff;
  background-color: #006ac3;
  transition: 0.2s;
}

.nav-dots li .hidden-text {
  position: absolute;
  top: -7px;
  right: -5px;
  max-width: 0;
  width: auto;
  padding: 10px 30px 10px 13px;
  border-radius: 2px;
  background-color: rgba(0, 106, 195, 0.85);
  color: #fff;
  font-family: "Meta", Arial, sans-serif;
  font-weight: 400;
  line-height: 0.5em;
  overflow: hidden;
  transform: translateX(5px);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s, max-width 0s 0.2s;
}

.nav-dots li a:hover .hidden-text {
  max-width: 600px;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.3s, opacity 0.4s, max-width 0s;
}

.nav-dots li.active .dot,
.nav-dots li a:hover .dot {
  background-color: #fff;
  transform: scale(0.75);
}


/* NAV HAMBURGER
 ----------------------------------------*/

.nav-ham {
  position: fixed;
  z-index: 115;
  top: 50px;
  right: 30px;
}

@media only screen and (max-width: 991px) {
  .nav-ham {
    top: 15px;
    right: 15px;
  }
}

.nav-ham #hamMenu {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #006ac3;
  color: #fff;
  transition: 0.2s;
}

/* OPEN NAV */

body.open-nav-ham,
body.open-footer {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  /*body.open-footer,*/
  body.open-nav-ham {
    position: fixed;
  }
}

body::after {
  content: '';
  content: '';
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body.open-nav-ham::after,
body.open-footer::after {
  opacity: 1;
  visibility: visible;
}

body.open-footer .nav-ham,
body.open-nav-ham section.footer:not(.footer-contact) {
  z-index: 10;
}

body.open-footer #global-navigation {
  z-index: 9;
}

/* HAMBURGER ICON */

.nav-ham .ham-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.nav-ham .ham-btn,
.nav-ham .ham-btn::before,
.nav-ham .ham-btn::after {
  height: 2px;
  width: 20px;
  background-color: #fff;
  transition: 0.4s;
}
.nav-ham .ham-btn::before,
.nav-ham .ham-btn::after {
  content: '';
  position: absolute;
}
.nav-ham .ham-btn::before {
  top: -7px;
}
.nav-ham .ham-btn::after {
  top: 7px;
}

body:not(.open-nav-ham) .nav-ham #hamMenu:hover .ham-btn::before {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}
body:not(.open-nav-ham) .nav-ham #hamMenu:hover .ham-btn::after {
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
}

/* OPEN NAV - hamburger icon */

.open-nav-ham .nav-ham #hamMenu {
  background-color: transparent;
}
.open-nav-ham .nav-ham .ham-btn {
  background-color: transparent;
}
.open-nav-ham .nav-ham .ham-btn::before {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
}
.open-nav-ham .nav-ham .ham-btn::after {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
}

/* NAV LINKS */

.nav-links {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  height: 100%;
  padding: 90px 30px 50px;
  opacity: 0;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transition: 0.2s ease-out;
  overflow-y: scroll;
}

@media only screen and (min-width: 992px) {
  .nav-links {
    width: 40vw;
    /*min-width: 300px;*/
    max-width: 400px;
    background-color: rgba(0, 106, 195, 0.8);
  }
}
@media only screen and (max-width: 991px) {
  .nav-links {
    width: 50vw;
    min-width: 350px;
    max-width: 100%;
    padding-top: 50px;
    background-color: rgba(0, 106, 195, 0.9);
  }
}
@media only screen and (max-width: 479px) {
  .nav-links {
    z-index: 101;
    min-width: 100%;
    padding: 30px 15px 20px;
  }
}

.nav-links ul li a, .nav-links ul li div.nav-heading {
  font-family: "Meta", Arial, sans-serif;
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-links ul li a:hover, .nav-links ul li div.nav-heading:hover {
  color: #c3e2fa;
}

.nav-links ul ul {
  padding-left: 20px;
}

/* OPEN NAV - nav links */

.open-nav-ham .nav-links {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}
.nav-links .list-links {
  display: none;
}
.open-nav-ham .nav-links .list-links {
  display: block;
}


/* HERO
 ----------------------------------------*/

@keyframes heroFadeOn {
  0% {
    transform: translateX(-100%) skewX(0deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) skewX(13deg);
    opacity: 1;
  }
}
@keyframes heroTextFadeOn {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-angle {
  position: relative;
  /*background-size: cover;*/
  background-position: center;
  /*background-attachment: fixed;*/
  overflow: hidden;
  background-repeat: no-repeat;
}

.hero-angle .container {
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 992px) {
  .home .hero-angle::after{
    /*position:fixed;*/
    z-index: 0;
  }
  .hero-angle::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: -50%;
    width: 115%;
    height: 100%;
    background-color: rgba(255,255,255,0.85);
    box-shadow: 3px 3px 12px rgba(0,0,0,0.1);
    transform: skewX(13deg);
    -webkit-transform: skewX(13deg);
    -ms-transform: skewX(13deg);
    transition: 0.5s;
    animation-name: heroFadeOn;
    animation-duration: 0.8s;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-angle::after {
    width: 105%;
  }
}
@media only screen and (min-height: 900px) and (min-width: 1200px) {
  .hero-angle::after {
    width: 110%;
  }
}

.hero-angle::before {
  z-index: 3;
}

.hero-angle .header-text {
  transition: 0.8s 0.2s;
  animation-name: heroTextFadeOn;
  animation-duration: 0.6s;
}

/* HOME */

.home .hero-angle {
  min-height: 110vh;
}

.home .hero-angle .container {
  padding-top: 200px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .home .hero-angle .container {
    padding-top: 150px;
    padding-bottom: 480px;
  }
}
@media only screen and (max-width: 767px) {
  .home .hero-angle .container {
    padding-top: 370px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .home .hero-angle .container {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}

.home .hero-angle .hero-image {
  left: 0; 
  width: 100%;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 992px) {
  .home .hero-angle .hero-image {
    position: fixed;
    top: 0; 
    height: 100%; 
  }
}
@media only screen and (max-width: 991px) {
  .home .hero-angle .hero-image {
    position: absolute;
    bottom: 0;
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .home .hero-angle .hero-image {
    top: 80px;
    height: 250px;
  }
}
@media only screen and (max-width: 479px) {
  .home .hero-angle .hero-image {
    height: 200px;
  }
}

/* HOME - FIXED LAYOUT */

@media only screen and (min-width: 992px) {
  .home.layout-fixed .hero-angle {
    min-height: 120vh;
  }
}

/* ACTIVE HERO */

@media only screen and (min-width: 992px) {
  .hero-angle.hero-active::after {
    transform: translateX(-100%) skewX(0deg);
    opacity: 0;
    transition: 0.8s;
  }
  .hero-angle.hero-active .header-text {
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.5s;
  }
}

/* INNER PAGE / HERO SMALL */

.hero.hero-small {
  background-size: cover;
}

.hero.hero-small::before {
  background-color: rgba(37, 37, 37, 0.68);
}

/* MOBILE HERO */

@media (max-width: 991px) {
  .home .hero:not(.map-banner):not(.people):before {
    background: transparent;
  }
  /*.hero:not(.map-banner):not(.people):before {
    background: rgba(255, 255, 255, 0.8);
  }*/
}


/* FOOTER
 ----------------------------------------*/
section.footer:not(.footer-contact) .f-list:first-child {
  border-right-color: #fedf01;
}

section.footer:not(.footer-contact) hr.divider {
  border-top-color: #fedf01;
}

section.footer:not(.footer-contact) .backtoptop:hover {
  border-color: #fedf01 !important;
}


/* PARALLAX IMAGE MODULE
 ----------------------------------------*/

section.image-full {
  background-color: #fff;
}
.image-full p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 991px) {
  section.image-full {
    background-position: center !important;
    background-size: cover;
  }
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
}  

@media only screen and (max-width: 479px) {
}



/* RBCUS Rebrand Updated Styles*/
h1, h2, h3,
#da-portlet-content .portlet-content-container .liferay-faces-bridge-body .da-update-portlet h2,
.cards .card .block h3,
.hero h1 
{
  color: #003168;
  font-family: "RBC Display Medium";
}

h4, h5, h6, p, a, h4.meta-normal,
section.footer:not(.footer-contact) a:not(.button),
p a:not(.button),
.nav-links ul li a, .nav-links ul li div.nav-heading, #da-portlet-content ul li, .cke_editable_themed ul li,
#da-portlet-content ol li, .cke_editable_themed ol li,
#da-portlet-content .portlet-content-container .liferay-faces-bridge-body ul li,
.cards .card .block div.block-text div,
section.footer:not(.footer-contact) .f-list,
.meta-normal,
section.footer:not(.footer-contact) .copyright,
.footer .footer-legal a.backtoptop,
.nav-pills &gt; li &gt; a {
  font-family: "Roboto";
}

p,
.hero .subtitle,
p.person-title,
p.subheader,
.cards .card .block div.block-text p,
p.alert, #da-portlet-content ul li, .cke_editable_themed ul li,
#da-portlet-content ol li, .cke_editable_themed ol li,
.cards .card .block div.block-text div {
  color: #000000;
  font-size: 18px;
}

a,
p a:not(.button) {
  font-size: 18px;
}

/* Website Navigation Menu Style */
.nav-links ul li a, .nav-links ul li div.nav-heading {
  font-size: 16px;
}

/* Banner Text style in hero banner*/
.hero .subtitle,
.hero .advisor-designations {
  font-family: "RBC Display Medium";
}

/* Paragraph designation style with specific class name*/
p.person-title,
p.subheader {
  font-family: "Roboto";
}

/* Website Navigation Menu link*/
#primary-navigation .navbar-nav &gt; li &gt; a {
  font-size: 16px;
  font-family: "Roboto";
}

h1,
.hero h1.advisor-name,
.home h1,
.hero-low h1 {
  font-size: 48px;
}

@media (max-width: 768px) {
  h1,
  .hero h1.advisor-name,
  .home h1,
  .hero-low h1 {
    font-size: 40px;
  }
}

h2,
#da-portlet-content .portlet-content-container .liferay-faces-bridge-body .da-update-portlet h2 {
  font-size: 40px;
}

@media (max-width: 768px) {
  h2,
  #da-portlet-content .portlet-content-container .liferay-faces-bridge-body .da-update-portlet h2 {
    font-size: 36px;
  }
}

h3,
.cards .card .block h3 {
  font-size: 30px;
}

@media (max-width: 768px) {
  h3,
  .cards .card .block h3 {
    font-size: 28px;
  }
}

h4,
h4.meta-normal {
  font-size: 24px;
}

@media (max-width: 768px) {
  h4,
  h4.meta-normalh4.meta-normal {
    font-size: 22px;
  }
}

h5 {
  font-size: 22px;
  font-weight: 400;
}

@media (max-width: 768px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 18px;
}

@media (max-width: 768px) {
  h6 {
    font-size: 18px;
  }
}

/* Setting Footer Anchor Links to initial font sizes*/
.footer .footer-legal a{
  font-size: 14px;
}

.footer .footer-legal a.backtoptop {
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer .footer-legal a,
  .footer .footer-legal a.backtoptop{
    font-size: 12.5px;
  }
}

/* Hero Banner Title color */

.hero h1 {
  color: #ffffff;
}

.hero h4 {
  color: #ffffff;
}

p.job-titles {
  margin-top : -7px;
}

#da-portlet-content .portlet-content-container .liferay-faces-bridge-body ol li {
  line-height: 30px;
  font-weight: 300;
}
/* Latest Blog Widget Style Updates */
h4.meta-normal,
.cards-side h4 {
  font-size: 24px;
}

@media (max-width: 768px) {
  h4.meta-normal,
  .cards-side h4 {
    font-size: 22px;
  }
}
/* Bio Title Styles Updated */
p.person-title {
  font-size: 20px;
  line-height: 30px;
  font-style: normal;
}

@media (max-width: 768px) {
  p.person-title {
    font-size: 18px;
    font-family: "Roboto",sans-serif;
  }
}

/* My Team Styles Updated */
.advisor-module .advisor .person-title {
  font-size: 20px;
  line-height: 30px;
  font-family: "Roboto";
}

.advisor-module .advisor .person-title i {
  font-style: normal;
}

.advisor-module .advisor h4, .advisor-module .advisor .name {
  margin: 0 !important;
  padding: 0;
  color: #252525;
  font-size: 24px;
  font-family: "Roboto";
  line-height: 1.5em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
}

@media (max-width: 768px) {
  .advisor-module .advisor .person-title {
    font-size: 18px;
    font-family: "Roboto",sans-serif;
  }
}</pre></body></html>