/* =======================================
   VARIABLES
   ======================================= */
/* =======================================
   IMPORTS
   ======================================= */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  margin-top: 0;
}

ul, ol {
  margin-top: 0;
}

/* =======================================
    SIZES
    ======================================= */
header#header {
  z-index: 999;
  width: 100%;
  top: 0;
  position: relative;
  background: #fff;
  height: 60px;
  padding-top: 19px;
}
header#header .top {
  background: #DEDEDE;
  display: none;
}
header#header .top .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  padding: calc(16px / 2) 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header#header .top .container .menu-utility-menu-container {
  margin-left: auto;
}
header#header .top .container .menu-utility-menu-container .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}
header#header .top .container .menu-utility-menu-container .menu li {
  display: inline-block;
  padding: calc(16px / 2);
  line-height: 14px;
}
header#header .top .container .menu-utility-menu-container .menu li:first-of-type {
  padding-left: 0;
}
header#header .top .container .menu-utility-menu-container .menu li:last-of-type {
  padding-right: 0;
}
header#header .top .container a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: bold;
}
header#header .top .container a:hover {
  color: #131515;
}
@media screen and (min-width: 768px) {
  header#header .top {
    display: block;
  }
}
header#header .main .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header#header .main .container .logo {
  width: 126px;
  padding: 3px 0px 0px;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -83px;
}
header#header .main .container .logo img {
  display: block;
}
header#header .main .container #main-menu {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
header#header .main .container #main-menu .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
header#header .main .container #main-menu .menu li {
  display: inline-block;
  padding: 16px;
  position: relative;
}
header#header .main .container #main-menu .menu li:first-of-type {
  padding-left: 0;
}
header#header .main .container #main-menu .menu li:last-of-type {
  padding-right: 0;
}
header#header .main .container #main-menu .menu li a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: bold;
}
header#header .main .container #main-menu .menu li a:hover {
  color: #131515;
}
header#header .main .container #main-menu .menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: #EDEFF0;
  padding: calc(16px / 2) 16px;
  width: 100vw;
  max-width: 250px;
  margin-left: calc(0px - 16px);
}
header#header .main .container #main-menu .menu li .sub-menu li {
  padding: calc(16px / 2);
  display: block;
}
header#header .main .container #main-menu .menu li .sub-menu li a {
  display: block;
}
header#header .main .container #main-menu .menu li:hover .sub-menu {
  display: block;
}
header#header #mobile-toggle {
  z-index: 999;
  margin-left: 0;
  margin-right: 27px;
  position: relative;
  top: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header#header #mobile-toggle a {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
header#header #mobile-toggle a span {
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 26px;
}
header#header #mobile-toggle a span.active {
  visibility: visible;
  opacity: 1;
}
header#header #mobile-toggle a span img {
  display: inline-block;
}
header#header #mobile-menu {
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  padding: 0 16px 16px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: calc(100vh - 100% - 41px);
  top: 41px;
  overflow-y: auto;
}
header#header #mobile-menu .searchform input[type=submit] {
  display: none;
}
header#header #mobile-menu .searchform input[type=search] {
  width: 100%;
  background: #FFFFFF url(../img/search.svg) no-repeat;
  background-position: 20px 10px;
  padding: calc(16px / 2) calc(16px / 2) calc(16px / 2) 50px;
  letter-spacing: 0.34px;
  color: #FFFFFF;
  font-weight: 400;
  font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
}
header#header #mobile-menu.active {
  visibility: visible;
  opacity: 1;
  z-index: 900;
}
header#header #mobile-menu ul {
  padding: 0;
  margin: 16px 0 0;
}
header#header #mobile-menu ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header#header #mobile-menu ul li .sub-menu {
  display: none;
}
header#header #mobile-menu ul li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-left: auto;
}
header#header #mobile-menu ul li a {
  font-weight: bold;
  color: #000000;
  padding: 12px 0;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-decoration: none;
  letter-spacing: 0.4px;
}
header#header #mobile-menu ul li.hidden {
  display: none;
}
header#header #mobile-menu ul li.expanded {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none;
}
header#header #mobile-menu ul li.expanded::after {
  display: none;
}
header#header #mobile-menu ul li.expanded a {
  padding: 16px;
  margin: 0 calc(0px - 16px) calc(0px - 16px);
}
header#header #mobile-menu ul li.expanded a::after {
  display: none;
}
header#header #mobile-menu ul li.expanded a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-right: 16px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header#header #mobile-menu ul li.expanded .sub-menu {
  width: 100%;
}
header#header #mobile-menu ul li.expanded .sub-menu li {
  border-top: none;
}
header#header #mobile-menu ul li.expanded .sub-menu li::after {
  display: none;
}
header#header #mobile-menu ul li.expanded .sub-menu li a {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  background: transparent;
  margin: 0;
  border-bottom: none;
}
header#header #mobile-menu ul li.expanded .sub-menu li a::before {
  display: none;
}

#alert {
  display: none;
}
#alert.visible {
  display: block;
  background: #A2382F;
  color: #FFFFFF;
  z-index: 1;
}
#alert .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: calc(16px / 2) calc(16px * 3) calc(16px / 2) 16px;
  position: relative;
  max-width: 1200px;
}
#alert .container .copy {
  margin: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 6px 20px 10px 0;
}
#alert .container .copy p {
  margin: 0;
  display: inline-block;
}
#alert .container .copy p a {
  color: #FFFFFF;
  font-weight: 600;
}
#alert .container .copy span {
  font-weight: 700;
  margin-right: 4px;
  display: inline-block;
  text-transform: uppercase;
}
#alert .container #noticeClose {
  position: absolute;
  right: 0;
  top: 8px;
  cursor: pointer;
  margin-right: 16px;
}

.search {
  position: relative;
  display: none;
}
.search #searchButton {
  display: block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: calc(16px * 2);
}
.search #searchsubmit {
  display: none;
}
.search #searchform {
  width: 100%;
  padding: 16px 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.search #searchform div {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search #searchform div input[type=search] {
  width: 100%;
  background: #F4F5F8 url(../img/search.svg) no-repeat 12px 12px;
  border: none;
  padding: 9px 30px 10px 40px;
  letter-spacing: 0.34px;
  font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  font-size: 1.8rem;
  border-radius: 50px;
  color: #212529;
}
.search #searchform div input[type=search]::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}
.search #searchform div input[type=submit] {
  background: #FFFFFF;
  border: none;
  margin-left: calc(16px / 2);
  padding: calc(16px / 2) 16px;
  font-weight: bold;
  cursor: pointer;
}
.search #searchform.active {
  visibility: visible;
  opacity: 1;
}

.search.active {
  display: block;
}

.search-clear {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 19px;
  right: 28px;
  text-indent: -99999px;
  background: url(../img/search-close.svg) no-repeat 50% 50%;
  display: block;
}

body .search #searchform div {
  padding: 0;
}

.close-search {
  position: absolute;
  top: 19px;
  left: 15px;
  display: block;
  height: 20px;
  width: 20px;
}

.search #searchform {
  padding: 8px 16px 8px 50px;
}

header#header .header-login {
  margin-top: 4px;
  padding: 5px 23px 6px 23px;
  position: absolute;
  top: -12px;
  right: 10px;
}

header#header #mobile-menu {
  padding-left: 20px;
  padding-right: 20px;
}

header#header #mobile-menu ul li a {
  font-size: 1.8rem;
  font-weight: 400;
  color: #212529;
}

header#header #mobile-menu ul li.expanded > .sub-menu {
  display: block;
}

header#header #mobile-menu ul li.expanded > .sub-menu > .menu-item-has-children {
  position: relative;
}

header#header #mobile-menu ul li.expanded > .sub-menu > .menu-item-has-children > a:after {
  content: " ";
  display: inline-block;
  width: 7px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 17px;
  right: 10px;
}

header#header #mobile-menu ul li.expanded > .sub-menu > .menu-item-has-children.expanded > a:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

header#header #mobile-menu ul li:after,
header#header #mobile-menu ul li a:after {
  position: absolute;
  top: 20px;
  right: 13px;
}

header#header #mobile-menu ul li.expanded a {
  margin: 0;
  padding: 12px 16px;
}

header#header #mobile-menu ul li.expanded a::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 7px;
}

header#header #mobile-menu > ul > li.expanded > a {
  margin-left: -16px;
  margin-right: -16px;
  background-color: #ECEDF2;
  text-align: center;
}

header#header #mobile-menu ul li a:hover:after,
header#header #mobile-menu ul li a:hover,
header#header #mobile-menu ul li.menu-item-has-children:hover:after {
  opacity: 0.5;
}

header#header #mobile-menu ul {
  margin-top: 0;
}

header#header #mobile-menu ul li {
  padding: 0px;
  position: relative;
}

header#header #mobile-menu ul li a {
  padding-left: 0;
  padding-right: 0;
}

header#header #mobile-menu ul li a,
header#header #mobile-menu ul li.expanded .sub-menu li a {
  border-bottom: 1px solid #DEDEDE;
}

header#header #mobile-menu ul li.expanded li.expanded > a {
  border-bottom-width: 0;
  font-weight: 700;
}

header#header #mobile-menu ul li.expanded .sub-menu li a {
  padding-top: 12px;
  padding-bottom: 12px;
}

header#header #mobile-menu ul li.expanded .sub-menu .sub-menu li a {
  padding-left: 16px;
  border-bottom-width: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

header#header #mobile-menu ul li:last-child a {
  border-bottom-width: 0;
}

.mobile-find-location label {
  font-weight: 700;
  color: #212529;
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.mobile-find-location {
  background-color: #F4F5F8;
  border-radius: 8px;
  margin-top: 50px;
  padding: 16px;
  position: relative;
}

.expanded .mobile-find-location {
  display: none;
}

.mobile-find-location input[type=text] {
  border-width: 0;
  background: #fff;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
}

.mobile-find-location input[type=submit] {
  height: 20px;
  width: 21px;
  background: url(../img/search.svg) no-repeat 50% 50%;
  border-width: 0;
  padding: 0;
  position: absolute;
  bottom: 29px;
  right: 30px;
}

#login-form {
  background-color: #f4f7f6;
  border: 1px solid #d7d7d7;
  padding: 20px 20px 15px;
  width: 310px;
  position: absolute;
  right: 4px;
  top: 39px;
  margin-left: -155px;
  border-radius: 2px;
  z-index: 10050;
}

body.login-active #login-form {
  display: block;
}

#login-form {
  display: none;
}

#login-form.active {
  display: block;
}

#login {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#login .btn {
  border-radius: 30px;
}

#login label {
  display: none;
}

#login input[type=text], #login select {
  width: 100%;
  margin-right: 10px;
  border: 1px solid #d7d7d7;
  font-weight: 400;
  color: #000;
  font-size: 1.5rem;
  height: 38px;
}

#login ::-webkit-input-placeholder {
  font-size: 1.5rem;
  color: #666;
}

#login ::-moz-placeholder {
  font-size: 1.5rem;
  color: #666;
}

#login :-ms-input-placeholder {
  font-size: 1.5rem;
  color: #666;
}

#login :-moz-placeholder {
  font-size: 1.5rem;
  color: #666;
}

#login-form .btn {
  padding: 8px 12px 9px 12px;
}

.audience-selector {
  display: none;
}

.desktop-inline-search {
  display: none;
}

.utility-nav {
  display: none;
}

@media screen and (min-width: 768px) {
  body footer#footer .container .top .column.mobile-half-column {
    width: calc(25% - 48px);
  }
}
@media screen and (min-width: 992px) {
  header#header {
    height: 116px;
    padding-top: 5px;
  }
  body.search #searchButton {
    display: none;
  }
  header#header .main .container {
    display: block;
  }
  header#header #mobile-toggle {
    display: none;
  }
  header#header .main .container .logo {
    position: static;
    margin: 0;
  }
  header#header .header-login {
    top: 8px;
  }
  .audience-selector {
    display: block;
    position: absolute;
    top: 17px;
    left: 170px;
  }
  .audience-selector li {
    display: inline-block;
    margin-right: 18px;
  }
  .audience-selector li a {
    text-decoration: none;
    display: block;
    -webkit-transition: none;
    transition: none;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #212529;
    text-align: center;
  }
  .audience-selector li.active a,
  .audience-selector li a:hover {
    border-bottom: 4px solid #CD493C;
    padding-bottom: 6px;
    font-weight: 600;
  }
  .desktop-inline-search .search-clear {
    top: 9px;
    right: 9px;
    display: none;
  }
  .desktop-inline-search .search-clear.active {
    display: block;
  }
  .desktop-inline-search:before {
    content: " ";
    display: block;
    height: 15px;
    width: 15px;
    background: url(../img/search.svg) no-repeat 50% 50%/cover;
    position: absolute;
    top: 12px;
    left: 15px;
  }
  .desktop-inline-search {
    display: block;
    position: absolute;
    top: 13px;
    right: 120px;
    width: 200px;
  }
  .desktop-inline-search input[type=search] {
    border: 1px solid #DEDEDE;
    border-radius: 50px;
    font-size: 1.6rem;
    color: #6E6E6E;
    font-weight: 400;
    padding: 5px 16px 6px 37px;
  }
  .desktop-inline-search input[type=search]::-webkit-search-cancel-button {
    display: none;
    -webkit-appearance: none;
    appearance: none;
  }
  header#header .menu-bg {
    display: block;
    background-color: #ECEDF2;
    margin-top: 11px;
  }
  header#header .main .container #main-menu {
    display: block;
  }
  header#header .main .container #main-menu .menu > li:first-child {
    margin-left: 0;
  }
  header#header .main .container #main-menu .menu > li {
    padding: 0;
    margin-left: -4px;
    text-align: center;
    position: relative;
  }
  header#header .main .container #main-menu .menu li a {
    font-weight: 400;
    color: #212529;
    font-size: 1.6rem;
  }
  header#header .main .container #main-menu .menu > li > a {
    display: block;
    font-size: 1.6rem;
    padding: 9px 16px 10px;
  }
  .audience-selector li a:before,
  header#header .main .container #main-menu .menu > li > a:before {
    content: "";
    display: block;
    content: attr(title);
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .page-id-2810 header#header .main .container #main-menu .menu > li#menu-item-1787 > a {
    font-weight: 400;
    background-color: transparent;
  }
  header#header .main .container #main-menu .menu > li:hover > a,
  header#header .main .container #main-menu .menu > li > a:hover,
  header#header .main .container #main-menu .menu > li.current_page_parent > a,
  header#header .main .container #main-menu .menu > li.current-menu-item > a,
  header#header .main .container #main-menu .menu > li.current-page-ancestor > a {
    background-color: #fff;
    font-weight: 600;
  }
  header#header .main .container .utility-nav li.menu-item-has-children:hover .sub-menu {
    display: block;
    position: absolute;
    top: 37px;
    left: 0;
    display: block;
    min-width: 165px;
    padding: 16px 16px 10px;
    background-color: #fff;
  }
  header#header .main .container #main-menu .menu > li:hover > .sub-menu {
    display: block;
    width: 300px;
    max-width: 300px;
    background-color: #fff;
    padding: 14px 15px;
    left: 16px;
  }
  header#header .main .container #main-menu .menu li .sub-menu .sub-menu {
    background: transparent;
    width: auto;
  }
  header#header .main .container .utility-nav {
    display: block;
    position: absolute;
    bottom: -2px;
    right: 5px;
  }
  header#header .main .container #main-menu .menu > li:hover > .sub-menu a {
    text-align: left;
  }
  header#header .main .container #main-menu .menu > li:hover > .sub-menu a:hover {
    opacity: 0.5;
  }
  header#header .main .container .utility-nav .sub-menu {
    display: none;
  }
  header#header .main .container .utility-nav li {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
  }
  header#header .main .container .utility-nav li a:hover {
    opacity: 0.5;
  }
  header#header .main .container .utility-nav li a {
    font-size: 1.6rem;
    text-decoration: none;
    padding: 5px 10px;
  }
}
footer#footer {
  background: #F4F5F8;
  border-top: 1px solid #DEDEDE;
}
footer#footer a {
  color: #000000;
  text-decoration: none;
}
footer#footer a:hover {
  text-decoration: underline;
  color: #131515;
}
footer#footer .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
footer#footer .container h3 {
  margin: 0 0 calc(16px / 2);
}
footer#footer .container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0;
  gap: calc(16px * 4);
}
footer#footer .container .top .column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer#footer .container .top .column {
    width: calc(25% - calc(16px * 3));
  }
}
footer#footer .container .top p {
  margin: 0;
  line-height: 28px;
}
footer#footer .container .top .menu {
  padding: 0;
  margin: 16px 0;
  list-style: none;
}
footer#footer .container .top .menu li {
  margin: calc(16px / 2) 0;
}
footer#footer .container .top .menu a {
  line-height: 28px;
  color: #000000;
}
footer#footer .container .top .menu a:hover {
  color: #131515;
}
footer#footer .container .top .social a {
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
footer#footer .container .top .social a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
footer#footer .container .top .social a svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  fill: #131515;
}
footer#footer .container .top .social img {
  width: 30px;
  height: 30px;
}
footer#footer .bottom .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer#footer .bottom .container .menu-policy-menu-container {
  margin-left: auto;
}
footer#footer .bottom .container .menu-policy-menu-container .menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(16px * 3);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer#footer .bottom .container .menu-policy-menu-container .menu li {
  display: inline-block;
}
footer#footer .bottom .container .menu-policy-menu-container .menu li a {
  color: #000000;
}
footer#footer .bottom .container .menu-policy-menu-container .menu li a:hover {
  color: #131515;
}
footer#footer .bottom .container .copy-disclaimer {
  letter-spacing: 0.7px;
  margin-bottom: calc(16px * 2);
}

.disclaimer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 15px;
}

.disclaimer-flex > div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 1px solid #d7d7d7;
  text-align: center;
  padding: 4px 10px;
}

.footer-logo {
  max-width: 126px;
  height: auto;
  margin-bottom: 4px;
  display: inline-block;
}

body footer#footer .container {
  padding: 0;
}

footer#footer {
  font-size: 1.6rem;
}

footer#footer a {
  font-size: 1.6rem;
}

footer#footer .container .top h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

footer#footer .container .top .column.mobile-half-column {
  width: calc(50% - 10px);
}

footer#footer .container .top {
  gap: 20px;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 25px;
  margin-bottom: 15px;
  padding-left: 16px;
  padding-right: 16px;
}

footer#footer .footer-phone a {
  text-decoration: underline;
}

footer#footer .container .top .menu {
  margin: 0;
}

footer#footer .container .top .menu li {
  margin: 0 0 4px;
}

footer#footer .bottom .container {
  padding: 0;
}

footer#footer .bottom .copyright a {
  text-decoration: underline;
  color: #212529;
}

footer#footer .bottom .copyright {
  line-height: 2;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 10px;
}

footer#footer .bottom .column {
  margin-bottom: 6px;
}

footer#footer .bottom .container .menu-policy-menu-container {
  margin-bottom: 14px;
}

footer#footer .social a svg {
  fill: #0B2A4A;
}

footer#footer .social a:hover {
  opacity: 0.5;
}

footer#footer .social a {
  margin-right: 12px;
  display: inline-block;
  width: 32px;
  height: 32px;
}

footer#footer .bottom .container .menu-policy-menu-container .menu {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
}

footer#footer .bottom .container .copy-disclaimer {
  font-size: 1.4rem;
  color: #6E6E6E;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 20px;
}

.disclaimer-flex {
  margin-bottom: 15px;
}

.footer-fdic {
  padding-left: 10px;
  display: inline-block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.hero {
  padding: 0;
  color: #fff;
  text-align: left;
}
.hero.blue-bg {
  padding-top: 45px;
  background-color: #0B2A4A;
}
.hero.img-hero {
  padding-bottom: 0;
}
.hero .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1920px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero .container .left, .hero .container .right {
  width: 100%;
  text-align: left;
}
.hero .container .left img:not(.hero-swoosh), .hero .container .right img:not(.hero-swoosh) {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.hero p {
  margin-bottom: 15px;
}
.hero .buttons {
  margin-top: 42px;
}
.hero .buttons .btn,
.hero .buttons .hero-text-link {
  margin-bottom: 30px;
}
.hero .blue .buttons {
  margin-bottom: 10px;
}
.hero .hero-text-link {
  color: #fff;
  display: inline-block;
}
.hero .hero-text-link:hover {
  opacity: 0.7;
}

.hero-container {
  background-size: cover;
  width: 100%;
  text-align: left;
  position: relative;
}
.hero-container .content {
  max-width: 1200px;
  margin: auto;
}
.hero-container.full-left, .hero-container.full-right {
  padding-left: 16px;
  padding-right: 16px;
}
.hero-container.full-left .full-hero-container, .hero-container.full-right .full-hero-container {
  padding-left: 0;
  padding-right: 0;
}
.hero-container.full-left .content, .hero-container.full-right .content {
  border-radius: 16px;
  background-color: #0B2A4A;
  max-width: 550px;
  margin: 0;
}
.hero-container.image-left, .hero-container.image-right, .hero-container.blue {
  max-width: 1150px;
  margin: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.hero-container.image {
  height: 200px;
  background-size: cover;
}
.hero-container.blue .content .hero-swoosh {
  margin-left: auto;
  margin-right: auto;
}
.hero-container.blue .content {
  text-align: center;
}
.hero-container .hero-background-image {
  padding-top: 200px;
  background-size: cover;
  background-position: 50% 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero-container .full-hero-container {
  max-width: 1150px;
  margin: auto;
  z-index: 1;
  position: relative;
  margin-top: 130px;
  padding: 30px 16px 0;
}
.hero-container .full-hero-container .content {
  background-color: #0B2A4A;
  border-radius: 16px;
  padding: 34px 16px 1px;
}
.hero-container .btn {
  padding: 8px 23px 9px 23px;
}

.hero-swoosh {
  margin-bottom: 20px;
  width: 63px;
  height: auto;
}

.hero .slick-dots {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0;
}
.hero .slick-dots:hover li.slick-active button {
  width: 8px;
  -webkit-transition: none;
  transition: none;
}
.hero .slick-dots:hover li.slick-active:hover {
  padding: 0;
}
.hero .slick-dots:hover li.slick-active:hover button {
  width: 16px;
}
.hero .slick-dots li {
  list-style-type: none;
  margin: 0;
  width: 16px;
  text-align: center;
}
.hero .slick-dots li button {
  opacity: 0.25;
  background-color: #fff;
  height: 8px;
  width: 8px;
  border-radius: 8px;
  text-indent: -99999px;
  text-align: left;
  -webkit-transition: none;
  transition: none;
}
.hero .slick-dots li.slick-active, .hero .slick-dots li:hover {
  padding: 0;
}
.hero .slick-dots li.slick-active button, .hero .slick-dots li:hover button {
  background-color: #fff;
  width: 16px;
  opacity: 1;
}

.slick-pause {
  height: 32px;
  width: 32px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  background: url(../img/pause-icon.svg) no-repeat 50% 50%/cover;
  position: relative;
  top: -8px;
  display: inline-block;
  margin-right: 8px;
  text-indent: -99999px;
  text-align: left;
}

.slick-pause.paused {
  background: url(../img/play-icon.svg) no-repeat 50% 50%/cover;
}

.slick-pause:hover {
  cursor: pointer;
}

.hero-slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 28px;
  padding-left: 16px;
  padding-right: 16px;
}

body .hero .container {
  padding: 0;
}

.general {
  padding: calc(16px * 4) 0;
}
.general .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(16px * 2);
}
.general .container .column {
  width: 100%;
}
.general .container .column .module:not(:last-of-type) {
  margin-bottom: 16px;
}
.general .container .column img, .general .container .column iframe {
  max-width: 100%;
}
.general .container.halves .column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .general .container.halves .column {
    width: calc(50% - 16px);
  }
}
.general .container.smallleft .column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .general .container.smallleft .column:first-of-type {
    width: calc(40% - 16px);
  }
  .general .container.smallleft .column:last-of-type {
    width: calc(60% - 16px);
  }
}
.general .container.smallright .column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .general .container.smallright .column:first-of-type {
    width: calc(60% - 16px);
  }
  .general .container.smallright .column:last-of-type {
    width: calc(40% - 16px);
  }
}
.general .container.thirds .column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .general .container.thirds .column {
    width: calc(33.3333% - 16px * 1.3333);
  }
}
.general .container.fourths .column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .general .container.fourths .column {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 992px) {
  .general .container.fourths .column {
    width: calc(25% - 16px - calc(16px / 2));
  }
}
.general.small .container {
  max-width: 1050px;
}

.accordion {
  padding: 30px 0;
}
.accordion .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.accordion .container .accordionItems .accordionItem {
  background: #FFFFFF;
  margin-bottom: 20px;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 20px;
  position: relative;
}
.accordion .container .accordionItems .accordionItem .accordionTitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  padding: 0 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active {
  margin-bottom: 15px;
}
.accordion .container .accordionItems .accordionItem .accordionTitle:hover {
  color: #CD493C;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
}
.accordion .container .accordionItems .accordionItem .accordionTitle:after {
  width: 18px;
  height: 12px;
  background: url(../img/salmon-down-arrow.svg) no-repeat 0 0;
  content: " ";
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
}
.accordion .container .accordionItems .accordionItem .accordionCopy {
  display: none;
  font-size: 1.6rem;
}
.accordion .container .accordionItems .accordionItem .accordionCopy p:first-of-type {
  margin-top: 0;
}
.accordion .container .accordionItems .accordionItem .accordionCopy ::marker {
  color: #131515;
}

body a.transcript {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
}

.transcript-container {
  position: relative;
  text-align: right;
  margin-bottom: 15px;
}

.transcript-container > div {
  position: relative;
  z-index: 1;
}

.transcript-container .transcript:focus {
  text-decoration: none;
}

body a.transcript:hover,
.transcript-container a.transcript:focus:hover {
  text-decoration: underline;
}

.transcript-container .transcript span {
  display: none;
}

.transcript-container .transcript-copy {
  display: none;
  position: absolute;
  bottom: -210px;
  left: 0;
  height: 200px;
  width: 100%;
  text-align: left;
  padding: 16px;
  background-color: #fff;
  color: #212529;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 2;
}

.transcript-container .transcript-copy .close span {
  display: none;
}

.transcript-container.active .transcript {
  color: #cd493c;
  font-size: 1.6rem;
}

.transcript-container.active .transcript span {
  text-align: left;
  text-indent: -9999px;
  display: inline-block;
  background: #cd493c url(../img/close.webp) 0 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0 0 0 7px;
  position: relative;
  top: 3px;
}

.transcript-container.active .transcript-copy {
  display: block;
}

.transcript-container.active .close span {
  text-align: left;
  text-indent: -9999px;
  display: inline-block;
  background: #cd493c url(../img/close.svg) -506px -108px;
  height: 19px;
  width: 20px;
  border-radius: 50%;
  margin: 0 0 0 7px;
  position: relative;
  top: 1px;
}

@media (min-width: 600px) {
  .transcript-container .transcript-copy {
    height: 100px;
    bottom: -110px;
  }
}
@media (min-width: 992px) {
  .transcript-container {
    top: 0;
  }
  .transcript-container .transcript-copy {
    bottom: -210px;
  }
}
.cards {
  padding: calc(16px * 4) 0;
}
.cards .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1050px;
  gap: calc(16px * 3);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cards .container .intro {
  width: 100%;
}
.cards .container h2 {
  width: 100%;
  margin: 0;
}
.cards .container .card {
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #000000;
  position: relative;
  width: 100%;
}
.cards .container .card.first {
  background: #131515;
  color: #FFFFFF;
  padding: calc(16px * 2) 0 calc(16px * 3);
}
.cards .container .card.first *:not(a.btn):not(a.btn span) {
  margin: 0 0 16px 0;
  padding: 0 calc(16px * 2);
}
.cards .container .card.last {
  background: #EDEFF0;
  padding: calc(16px * 2) 0 calc(16px * 3);
}
.cards .container .card.last *:not(a.btn):not(a.btn span) {
  margin: 0 0 16px 0;
  padding: 0 calc(16px * 2);
}
.cards .container .card .featured {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #131515;
  color: #FFFFFF;
  padding: 0 16px 0 calc(16px * 1.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cards .container .card .featured::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  background: url(../img/star.svg) no-repeat center/contain;
  margin-right: calc(16px / 2);
}
.cards .container .card .image {
  min-height: 80px;
  max-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.cards .container .card .image img {
  min-height: 100%;
  width: auto;
}
.cards .container .card .content {
  padding: calc(16px * 2) calc(16px * 2) calc(16px * 3);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cards .container .card .content h4 {
  margin: 0;
  color: #000000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cards .container .card .content p {
  margin-bottom: 0;
}
.cards .container .card .content span {
  display: inline-block;
  margin-top: auto;
  padding-top: calc(16px * 2);
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}
.cards .container .card .content span::after {
  content: "";
  display: inline-block;
  background: url(../img/arrow-right.svg) no-repeat right/cover;
  width: 20px;
  height: 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
@media screen and (min-width: 768px) {
  .cards .container .card {
    width: calc(50% - calc(16px * 1.5));
    min-width: calc(50% - calc(16px * 1.5));
  }
}
@media screen and (min-width: 1100px) {
  .cards .container .card {
    width: calc(33.33333% - calc(16px * 2));
  }
}
.cards .container a:hover h4 {
  color: #131515 !important;
}
.cards .container a:hover span::after {
  width: 31px !important;
}
.cards.stretch .card {
  width: calc(100% - calc(16px * 1.5));
}
.cards.stretch .card .image {
  min-height: 117px;
}
.cards.stretch .card.last {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards.stretch .card.last * {
  width: 100%;
  max-width: 300px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.cards.stretch .card.last .btn {
  margin: calc(16px * 2) 0 0 !important;
  width: auto !important;
}
.cards.stretch .card.last ul, .cards.stretch .card.last ol {
  padding-left: 20px;
}
.cards.stretch .card.last *:not(.btn) {
  max-width: calc(100% - calc(16px * 4));
  padding: 0;
}
@media screen and (min-width: 768px) {
  .cards.stretch .card {
    width: calc(50% - calc(16px * 1.5));
  }
}
.cards .image.noimage {
  min-height: 0px !important;
}
.cards.bg .container {
  gap: calc(16px * 3) 0;
}
.cards.bg .container h2 {
  margin-bottom: calc(16px * 2);
}
.cards.bg .container .card {
  background-size: cover;
  background-position: center;
  width: 100%;
}
.cards.bg .container .card .content {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(0, 0, 0, 0.3)), to(transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  min-height: calc(270px - calc(16px * 4));
  padding: calc(16px * 2);
}
.cards.bg .container .card .content h4 {
  color: #FFFFFF;
  margin-top: auto;
  margin-bottom: 16px;
}
.cards.bg .container .card .content h4::after {
  opacity: 0;
  content: "";
  display: inline-block;
  background: url(../img/arrow-right.svg) no-repeat right/cover;
  width: 20px;
  height: 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.cards.bg .container .card .image {
  display: none;
}
@media screen and (min-width: 768px) {
  .cards.bg .container .card {
    width: 33.3333%;
  }
}
.cards.bg .container a:hover .content h4::after {
  margin-left: 16px;
  opacity: 1;
}

section.cta {
  padding: calc(16px * 4) 0;
}
section.cta .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(calc(16px * 4) * 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
section.cta .container .cta-img {
  border-radius: 16px;
}
section.cta.notop .left {
  padding-top: 0;
}
section.cta.nobottom .left {
  padding-bottom: 0;
}

.comparison {
  padding: 0px 0 60px;
}
.comparison .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1050px;
}
.comparison .container .intro {
  max-width: 800px;
  padding-bottom: calc(16px * 2);
  margin: auto;
}
.comparison .container .comparisonTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(16px * 3);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.comparison .container .comparisonTable .tableItem {
  width: 33.3333%;
  background: #EDEFF0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - calc(16px * 4));
  width: 100%;
}
.comparison .container .comparisonTable .tableItem .heading {
  background: #DEDEDE;
  padding: 16px calc(16px * 2);
  min-height: calc(100px - calc(16px * 2));
}
.comparison .container .comparisonTable .tableItem .heading h3 {
  margin: 0;
  max-width: 80%;
}
.comparison .container .comparisonTable .tableItem.flagged .heading {
  position: relative;
}
.comparison .container .comparisonTable .tableItem.flagged .heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 46px;
  background: #131515;
  mask-image: url(../img/banner.svg);
  -webkit-mask-image: url(../img/banner.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  top: 0;
  right: 16px;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading {
  border-color: #131515;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading::after {
  background: #131515;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading {
  border-color: #131515;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading::after {
  background: #131515;
}
.comparison .container .comparisonTable .tableItem .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.comparison .container .comparisonTable .tableItem .content .tableItems {
  padding: 16px calc(16px * 2);
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item {
  padding: 16px 0;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item.small {
  color: #000000;
  letter-spacing: 0.32px;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item span {
  display: block;
  letter-spacing: 0.4px;
  color: #000000;
  font-weight: 500;
}
.comparison .container .comparisonTable .tableItem .content .cta {
  margin-top: auto;
  padding: 16px calc(16px * 2) calc(16px * 2);
}
.comparison .disclaimer {
  margin-top: -100px;
  padding: calc(100px + calc(16px * 2)) 0 calc(16px * 2);
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  letter-spacing: 0.32px;
  font-style: italic;
}
.comparison .disclaimer p {
  max-width: 700px;
  margin: 16px auto;
}

.slider {
  padding: calc(16px * 4) 0;
}
.slider .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.slider .container img {
  max-width: 100%;
}
.slider .container .slider-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider .container .slider-single .slick-list {
  width: calc(100% - 100px);
}
.slider .container .slider-single .slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(16px * 3);
}
.slider .container .slider-single .slide .btn {
  margin-top: calc(16px * 2);
}
.slider .container .slider-single .slide img {
  width: 33.333%;
}
.slider .container .slider-multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider .container .slider-multi .slick-list {
  max-width: calc(100% - 92px);
}
.slider .container .slider-multi a {
  text-decoration: none !important;
}
.slider .container .slider-multi .slide {
  padding: 0 calc(16px / 2);
  width: calc(100% - 16px) !important;
}
.slider .container .slider-multi .slide .content {
  margin-top: 16px;
}

.slick-arrow {
  background: url(../img/chevron.svg) no-repeat center/cover;
  border: none;
  width: 28px;
  min-width: 28px;
  height: 47px;
  cursor: pointer;
}

.slick-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 16px;
}

.slick-next {
  margin-left: 16px;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: calc(16px * 2);
  padding: 0;
  width: 100%;
}
.slick-dots li {
  list-style: none;
  margin: 0 5px;
}
.slick-dots li button {
  display: inline-block;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  border: none;
  background-color: #000000;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-dots li.slick-active button {
  background-color: #131515;
}

.videoCarousel {
  position: inherit !important;
  padding: calc(16px * 4) 0;
}
.videoCarousel .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.videoCarousel .container .buttons {
  text-align: center;
}
.videoCarousel .container .buttons.left {
  text-align: left;
}
.videoCarousel .container .slide .thumbnail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.videoCarousel .container .slide .thumbnail img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.videoCarousel .container .slide .thumbnail svg {
  position: absolute;
  max-width: 50px;
  max-height: 50px;
}
.videoCarousel .video-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.videoCarousel .video-slider .slick-list {
  max-width: calc(100% - 92px);
  margin: 0 -20px;
}
.videoCarousel .video-slider .slick-list .slick-slide {
  margin: 0 20px;
}
.videoCarousel .popup {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  z-index: 2;
}
.videoCarousel .popup .loading {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.videoCarousel .popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.videoCarousel .popup .close {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  width: 34px;
  height: 34px;
}
.videoCarousel .popup .content {
  z-index: 2;
  max-width: 90%;
}
.videoCarousel .popup .content iframe {
  max-width: 100%;
}
.videoCarousel .st0 {
  fill: none;
}
.videoCarousel .st1 {
  fill: #FFFFFF;
}
.videoCarousel .st2 {
  fill: #131515;
}

.icons .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 16px;
}

.icons .icon-card img {
  margin: auto;
  width: 100%;
  max-width: 80px;
}

.icons .icon-card {
  width: 50%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.icons .icon-card h3 {
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

.icons .icon-card .content {
  padding-right: 20px;
  padding-left: 20px;
}

section.team {
  padding: calc(16px * 3) 0 calc(16px * 4);
}
section.team .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1050px;
}
section.team .container .search {
  margin-bottom: calc(16px * 4);
}
section.team .container .search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(16px * 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.team .container .search form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
section.team .container .search form div strong {
  letter-spacing: 1.12px;
  font-weight: 500;
  margin-bottom: calc(16px / 2);
}
section.team .container .search form div select {
  background: #FFFFFF url(../img/down.svg) no-repeat calc(100% - calc(16px * 1.5)) center;
  border: #000000 1px solid;
  padding: calc(16px - 2px) calc(calc(16px * 1.5) - 2px);
  letter-spacing: 0.34px;
  font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
section.team .container .teamMembers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(16px * 3);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.team .container .teamMembers .member {
  max-width: 318px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 400px;
  overflow: hidden;
  position: relative;
}
section.team .container .teamMembers .member .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
section.team .container .teamMembers .member img {
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
section.team .container .teamMembers .member .content {
  position: absolute;
  bottom: 0;
  padding: 16px 16px calc(16px * 2) 16px;
  text-align: center;
  width: calc(100% - calc(16px * 2));
  color: #FFFFFF;
  z-index: 2;
}
section.team .container .teamMembers .member .content h3 {
  letter-spacing: 0.44px;
  font-weight: 800;
  font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  color: #FFFFFF;
  margin: 0 0 calc(16px / 2);
}
section.team .container .teamMembers .member .content span {
  display: block;
}
section.team .container .teamMembers .member .content a {
  display: block;
  margin-top: 0;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  max-height: 100%;
  visibility: visible;
  opacity: 1;
}
section.team .container .teamMembers .member:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
section.team .container .teamMembers .member:hover .content a {
  margin-top: 16px;
  max-height: 100%;
  visibility: visible;
  opacity: 1;
}

.single .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.single .container .mainContent {
  max-width: 1050px;
  margin: calc(16px * 3) auto calc(calc(16px * 3) * 2);
}
.single .container .mainContent .returnLink {
  margin-bottom: calc(16px * 2);
}
.single .container .mainContent .returnLink a {
  color: #000000;
  letter-spacing: 1.12px;
  font-weight: 500;
  text-decoration: none;
}
.single .container .mainContent .returnLink a::before {
  content: "";
  display: inline-block;
  background: url(../img/arrow-white.svg) no-repeat center/contain;
  width: 16px;
  height: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.single .container .mainContent .returnLink a:hover::before {
  margin-right: calc(16px * 1.5);
}
.single .container .mainContent .image {
  margin-bottom: calc(16px * 2);
}
.single .container .mainContent .image img {
  max-width: 100%;
  height: auto;
}
.single .container .mainContent .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single .container .mainContent .flex .addthis_inline_share_toolbox {
  max-width: 46px;
  margin-right: calc(16px * 2);
}
.single .container .mainContent .flex .addthis_inline_share_toolbox .at-resp-share-element .at-share-btn:focus, .single .container .mainContent .flex .addthis_inline_share_toolbox .at-resp-share-element .at-share-btn:hover {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
.single .container .mainContent .flex .content .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single .container .mainContent .flex .content .data h1 {
  width: 100%;
  margin-top: 0;
}

.single-post .container .mainContent .flex .content .data {
  margin-bottom: calc(16px * 2);
}
.single-post .container .mainContent .flex .content .data h1 {
  margin: 0;
}

.post-type-archive-event .date, .search .posts .date {
  font-weight: 500;
  margin-bottom: 16px;
}

.blog .container, .archive .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog .container .header, .archive .container .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: calc(16px * 2) 0 calc(calc(16px * 3) * 2) 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.blog .container .header h1, .archive .container .header h1 {
  margin: 0 calc(16px * 2) 0 0;
  width: 100%;
}
.blog .container .header form, .archive .container .header form {
  margin-left: auto;
  width: 100%;
}
.blog .container .header form div, .archive .container .header form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.blog .container .header form div input[type=search], .archive .container .header form div input[type=search] {
  background: #FFFFFF;
  background-position: 20px 10px;
  border: #000000 1px solid;
  padding: calc(16px - 4px) calc(16px * 1.5);
  letter-spacing: 0.34px;
  color: #000000;
  font-family: "Gotham Narrow", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  width: 100%;
  max-width: 350px;
}
.blog .container .header form div input[type=submit], .archive .container .header form div input[type=submit] {
  background: #131515 url(../img/arrow-white.svg) no-repeat center/19px;
  width: 48px;
  height: 48px;
  color: transparent;
  border: none;
  margin-left: 16px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
}
.blog .container .header form div input[type=submit]:hover, .archive .container .header form div input[type=submit]:hover {
  background-color: #131515;
}
.blog .container .navigation, .archive .container .navigation {
  text-align: center;
  margin-bottom: calc(calc(16px * 3) * 2);
}
.blog .container .navigation .nav-links, .archive .container .navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog .container .navigation .nav-links .page-numbers, .archive .container .navigation .nav-links .page-numbers {
  color: #000000;
  text-decoration: none;
  margin: 0 calc(16px / 2);
}
.blog .container .navigation .nav-links .page-numbers.current, .archive .container .navigation .nav-links .page-numbers.current {
  color: #131515;
  font-weight: 600;
}
.blog .container .navigation .nav-links .page-numbers.next, .blog .container .navigation .nav-links .page-numbers.prev, .archive .container .navigation .nav-links .page-numbers.next, .archive .container .navigation .nav-links .page-numbers.prev {
  background: #131515 url(../img/arrow-black.svg) no-repeat center/13px;
  width: 33px;
  height: 33px;
  display: inline-block;
  text-indent: -9999px;
  border-radius: 100%;
}
.blog .container .navigation .nav-links .page-numbers.next, .archive .container .navigation .nav-links .page-numbers.next {
  margin-left: calc(16px * 3);
}
.blog .container .navigation .nav-links .page-numbers.prev, .archive .container .navigation .nav-links .page-numbers.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: calc(16px * 3);
}
.blog .container .navigation .nav-links .page-numbers.inactive, .archive .container .navigation .nav-links .page-numbers.inactive {
  background: #FFFFFF url(../img/arrow-black.svg) no-repeat center/13px;
}
.blog .container .posts, .archive .container .posts {
  margin-bottom: calc(calc(16px * 3) * 2);
}
.blog .container .posts .post, .archive .container .posts .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  text-decoration: none;
  color: #000000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(16px * 1.5);
}
.blog .container .posts .post:not(:last-child), .archive .container .posts .post:not(:last-child) {
  margin-bottom: calc(16px * 4);
}
.blog .container .posts .post .thumbnail, .archive .container .posts .post .thumbnail {
  min-width: 240px;
  width: 240px;
  height: 240px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: calc(16px * 4);
}
.blog .container .posts .post .thumbnail img, .archive .container .posts .post .thumbnail img {
  max-height: 100%;
  height: 100%;
  width: auto;
  display: block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog .container .posts .post .content, .archive .container .posts .post .content {
  width: 100%;
}
.blog .container .posts .post .content h3, .archive .container .posts .post .content h3 {
  margin: 0 0 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.blog .container .posts .post .content p, .archive .container .posts .post .content p {
  margin: 0 0 calc(16px * 2);
}
.blog .container .posts .post .content .readMore, .archive .container .posts .post .content .readMore {
  color: #000000;
  letter-spacing: 1.12px;
  font-weight: 500;
}
.blog .container .posts .post .content .readMore::after, .archive .container .posts .post .content .readMore::after {
  content: "";
  display: inline-block;
  background: url(../img/long-arrow.svg) no-repeat right/cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.blog .container .posts .post:not(.hasthumb) p, .archive .container .posts .post:not(.hasthumb) p {
  letter-spacing: 0.4px;
}
.blog .container .posts .post:hover .thumbnail img, .archive .container .posts .post:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog .container .posts .post:hover h3, .archive .container .posts .post:hover h3 {
  color: #131515;
}
.blog .container .posts .post:hover .readMore::after, .archive .container .posts .post:hover .readMore::after {
  width: 24px;
}

/* =======================================
    GLOBAL STYLES
    ======================================= */
html {
  font-size: 62.5%;
}

body {
  font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  margin: 0;
  background: #ffffff;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #212529;
  /* --------- GLOBAL TEXT STYLES --------- */
  /* --------- LINKS --------- */
  /* --------- GLOBAL SECTION STYLES --------- */
  /* --------- LIST STYLES --------- */
  /* --------- BREADCRUMBS --------- */
}
body.active {
  overflow-y: hidden;
}
body h1 {
  font-size: 4.2rem;
  line-height: 4.8rem;
  font-weight: 700;
  margin-bottom: 17px;
}
body h2 {
  font-size: 3.2rem;
  line-height: 3.8rem;
  margin-bottom: 20px;
}
body h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
body h4 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
body a {
  color: #131515;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
body .btn {
  display: inline-block;
  padding: calc(16px / 2) calc(16px * 2);
  text-decoration: none;
  border: 1px solid;
  padding: 8px 23px 9px 23px;
  border-radius: 30px;
  font-size: 1.6rem;
  border-color: #CD493C;
  background-color: #CD493C;
  color: #fff;
}
body .btn:hover {
  background: #FFFFFF;
  color: #CD493C;
  border-color: #CD493C;
}
body .btn.primary {
  margin-right: 10px;
}
body .btn.secondary {
  background: #FFFFFF;
  color: #A2382F;
  border-color: #A2382F;
}
body .btn.secondary:hover {
  background: #CD493C;
  border-color: #CD493C;
  color: #FFFFFF;
}
body hr.anchor {
  border: none;
  margin: 0;
}
body section {
  padding: 0 16px;
}
body section.gray {
  background: #EDEFF0;
}
body section.notop {
  padding-top: 0;
}
body section.nobottom {
  padding-bottom: 0;
}
body section img {
  display: block;
}
body .checklist {
  padding: 0;
  list-style: none;
}
body .checklist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: calc(16px * 1.5);
  font-weight: 500;
}
body .checklist li::before {
  content: "";
  display: inline-block;
  background: url(../img/check.svg);
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  margin-right: calc(16px / 2);
  margin-top: -2px;
}
body ol, body ul {
  padding-left: 20px;
}
body ol.two, body ul.two {
  -webkit-columns: 2;
      -moz-columns: 2;
          columns: 2;
}
body ol.three, body ul.three {
  -webkit-columns: 3;
      -moz-columns: 3;
          columns: 3;
}
body section.breadcrumbs {
  padding-top: 16px;
  padding-bottom: 30px;
}
body section.breadcrumbs a {
  display: inline-block;
  padding-right: 4px;
}
body section.breadcrumbs .breadcrumb_last {
  padding-left: 4px;
}
body section.breadcrumbs a, body section.breadcrumbs span {
  font-size: 1.4rem;
}
body .breadcrumbWrapper {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}

@media screen and (max-width: 600px) {
  .checklist {
    -webkit-columns: 1 !important;
        -moz-columns: 1 !important;
            columns: 1 !important;
  }
}
.container {
  position: relative;
}

.blue .buttons .btn:last-child {
  margin-bottom: 5px;
}

section.cta {
  padding-top: 20px;
  padding-bottom: 20px;
}

section.cta .container {
  gap: 0;
}

.cta-img {
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 25px;
}

body .checklist {
  margin-bottom: 10px;
}

body .checklist li::before {
  background: url(../img/check-icon.svg) no-repeat 50% 50%;
  height: 21px;
  width: 21px;
  position: absolute;
  top: 5px;
  left: 0;
}

body .checklist li {
  margin-bottom: 14px;
  font-weight: 400;
  display: block;
  position: relative;
  padding-left: 34px;
}

body .checklist li h3 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 8px;
}

body .checklist li p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.cta .gform_title {
  display: none;
}

body .gform_wrapper.gravity-theme .gfield input[type=text],
body .gform_wrapper.gravity-theme .gfield input[type=email],
body .gform_wrapper.gravity-theme .gfield input[type=tel],
body .gform_wrapper.gravity-theme .gfield input[type=password],
body .gform_wrapper.gravity-theme .gfield select,
body .gform_wrapper.gravity-theme .gfield textarea {
  background: #F4F5F8;
  border-width: 0;
  border-radius: 8px;
  padding: 10px 15px;
}

body .gform_wrapper.gravity-theme #gform_4 .gform_footer button {
  background: #CD493C url(../img/arrow-white-sm.svg) no-repeat 50% 50%;
  height: 32px;
  width: 32px;
  text-indent: -99999px;
  padding: 0;
}

body .gform_wrapper.gravity-theme #gform_4 input#input_4_1 {
  padding-right: 43px;
}

body .gform_wrapper.gravity-theme #gform_4 .gform_footer button:hover {
  opacity: 0.6;
}

body .gform_wrapper.gravity-theme #gform_4 {
  position: relative;
}

body .gform_wrapper.gravity-theme #gform_4 .gform_footer {
  position: absolute;
  top: 3px;
  right: 12px;
  padding: 0;
}

.posts {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.posts .container {
  max-width: 1105px;
}

.posts .post:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 30, 30, 0)), to(#1E1E1E));
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 12px;
}

.posts .post {
  position: relative;
  background-color: #0B2A4A;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 400px;
  width: 100%;
  max-width: 355px;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: left;
  text-decoration: none;
}

.posts .post:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.posts .post .content {
  position: relative;
  z-index: 2;
}

.card-type-images .card img {
  border-radius: 12px;
}

.cards .container {
  gap: 0;
}

.cards {
  padding-top: 30px;
  padding-bottom: 0;
}

.cards .container .card {
  padding-bottom: 15px;
  font-size: 1.6rem;
  border-bottom: 1px solid #C0C0C0;
  margin-bottom: 30px;
}

.cards .container .card:last-child {
  border-bottom-width: 0;
  margin-bottom: 0;
}

.cards .container .card .content {
  padding: 16px 8px;
  display: block;
}

.cards .container .card .content h3 {
  margin-bottom: 11px;
}

.cards .container .card .content p {
  margin-bottom: 26px;
}

.card-type-icons .card .card-icon {
  max-width: 80px;
  height: auto;
}

.text-link:hover {
  color: #000;
}

.general {
  padding: 30px 0;
}

.add-border {
  padding-left: 16px;
  padding-right: 16px;
}

.add-border .container {
  border: 1px solid #C0C0C0;
  border-radius: 16px;
  padding: 30px 27px;
}

.add-border p {
  margin-bottom: 27px;
}

.add-border h4 {
  font-size: 2rem;
  font-weight: 400;
}

.add-border h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.add-border h2 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.add-border .column:first-child {
  border-bottom: 1px solid #C0C0C0;
}

.add-border .checklist {
  margin-bottom: 25px;
}

.comparison .container .comparisonTable .tableItem:first-of-type .heading,
.comparison .container .comparisonTable .tableItem .heading {
  background-color: transparent;
  border-bottom: 1px solid #C0C0C0;
  padding-top: 30px;
  padding-bottom: 40px;
  min-height: auto;
}

.comparison .container .comparisonTable .tableItem {
  background-color: transparent;
  border: 1px solid #C0C0C0;
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 20px;
}

.comparison .container .comparisonTable .tableItem .heading,
.comparison .container .comparisonTable .tableItem .content .tableItems,
.comparison .container .comparisonTable .tableItem .content .cta {
  padding-left: 0;
  padding-right: 0;
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item.small {
  color: #212529;
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item.small h3 {
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 8px;
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item.small span {
  font-size: 1.6rem;
  color: #6E6E6E;
}

.comparison .container .comparisonTable .tableItem .content .tableItems .item {
  padding-bottom: 10px;
}

.comparison .container .comparisonTable .tableItem .content .cta {
  padding-top: 0;
  padding-bottom: 30px;
}

.transaction {
  text-align: center;
  border: 1px solid #C0C0C0;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 25px 16px;
  color: #212529;
}

.transaction .transaction-line {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}

.transaction .transaction-heading {
  margin-top: 25px;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #212529;
}

.transaction .transaction-category-tag {
  color: #212529;
}

.transaction p {
  color: #6E6E6E;
  font-size: 1.6rem;
}

.transactions-modulenone {
  padding-bottom: 30px;
}

section.checklist {
  padding-bottom: 30px;
}

section.checklist h2 {
  text-align: center;
  margin-bottom: 25px;
}

section.checklist .container {
  padding-left: 16px;
  padding-right: 16px;
}

section.checklist .checklist-cta {
  padding-top: 10px;
}

section.checklist .checklist-cta .left {
  padding-bottom: 0;
}

section.checklist .checklist-cta .right {
  margin-bottom: 25px;
}

section.checklist .checklist-cta .right > img {
  border-radius: 20px;
}

section.checklist .checklist-cta .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

section.checklist .checklist-cta p {
  margin-bottom: 30px;
}

.testimonial {
  padding: 0 16px 30px;
}

.testimonial .container {
  padding: 30px 20px 80px;
  background: #0B2A4A url(../img/testimonial-swoosh.svg) no-repeat 100% calc(100% - 105px);
  border-radius: 16px;
  color: #fff;
  max-width: 1298px;
}

.testimonial .image {
  margin-bottom: 25px;
}

.testimonial .image > img {
  width: 188px;
  border-radius: 50%;
}

.testimonial .slick-arrow,
.testimonial .slick-arrow button {
  height: 40px;
  width: 40px;
  text-indent: -99999px;
  position: absolute;
  bottom: -55px;
  right: 0;
  z-index: 1;
}

.testimonial .slick-prev {
  background: url(../img/slider-next.svg) no-repeat 50% 50%/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  right: 30px;
}

.testimonial .slick-next {
  background: url(../img/slider-next.svg) no-repeat 50% 50%/cover;
}

.testimonial .slick-arrow:hover {
  opacity: 0.5;
}

.testimonial .slick-list {
  padding-bottom: 40px;
}

.testimonial blockquote {
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial .testimonial-author {
  font-size: 1.9rem;
  font-weight: 700;
}

.testimonial .testimonial-title {
  font-size: 1.6rem;
}

.testimonial .video-thumb {
  position: relative;
  height: 250px;
  width: 250px;
}

.testimonial .video-thumb:before {
  content: " ";
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -27px;
  background: url(../img/play-icon.svg) no-repeat 50% 50%/cover;
}

.testimonial .video-thumb:hover:before {
  opacity: 0.7;
  z-index: 1;
}

.testimonial .video-thumb:hover:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.testimonial .video-thumb:hover {
  cursor: pointer;
  overflow: hidden;
}

.testimonial .video-thumb > img {
  border-radius: 12px;
  height: auto;
  width: 100%;
}

.testimonial .wistia {
  display: none;
}

.wistia_responsive_padding {
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

body .accordion .intro {
  text-align: center;
}

body .accordion h2 {
  margin-bottom: 20px;
}

.pre-footer p {
  margin-bottom: 30px;
}

.pre-footer h2 {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-bottom: 0;
}

.pre-footer h3 {
  margin-bottom: 10px;
}

.pre-footer-img > img {
  border-radius: 12px;
}

.gform_required_legend {
  display: none;
}

body .gform_wrapper.gravity-theme .gfield_label {
  color: #212529;
  font-weight: 600;
  margin-bottom: 4px;
}

body .gform_wrapper.gravity-theme .gfield input[type=text],
body .gform_wrapper.gravity-theme .gfield input[type=email],
body .gform_wrapper.gravity-theme .gfield input[type=tel],
body .gform_wrapper.gravity-theme .gfield input[type=password],
body .gform_wrapper.gravity-theme .gfield select,
body .gform_wrapper.gravity-theme .gfield textarea {
  background-color: #fff;
  border: 1px solid #C0C0C0;
  border-radius: 8px;
  padding-top: 9px;
  padding-bottom: 9px;
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 25px;
}

body .gform_wrapper.gravity-theme .gfield select {
  height: 50px;
}

body .gform_wrapper.gravity-theme .field_description_above .gfield_description {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  top: -5px;
}

body .gform_wrapper.gravity-theme .gfield textarea.large {
  height: 146px;
}

body .gform_footer .btn {
  background: #FFFFFF;
  color: #212529;
  border-color: #A2382F;
}
body .gform_footer .btn:hover {
  background: #CD493C;
  border-color: #CD493C;
  color: #FFFFFF;
  cursor: pointer;
}

.general.pre-footer .container .column .module:not(:last-of-type) {
  margin-bottom: 8px;
}

.gfield_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body .gform_wrapper.gravity-theme .gfield_radio .gchoice{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
body .gform_wrapper.gravity-theme .gfield_radio .gchoice .gfield-choice-input{
  position: relative;
  top: 8px;
}
body .gform_wrapper.gravity-theme .gfield_radio .gchoice .gfield-choice-input+label{
  line-height: 1;
}
body .gform_wrapper.gravity-theme .gfield--type-radio  legend{
  padding-top: 20px;
  padding-bottom: 10px;
}

.pre-footer.centered {
  text-align: center;
}

.pre-footer {
  background-color: #F4F5F8;
}

.pre-footer.advisor .btn{
  margin-bottom: 30px;
}
.pre-footer.advisor.navy-bg a{
  color: #fff;
}
.pre-footer.advisor.navy-bg svg path{
  fill:#fff;
}
.pre-footer.advisor.navy-bg{
  background-color: #0B2A4A;
  color:#fff;
}
.pre-footer.advisor.white-bg{
  background-color: #fff;
}
.pre-footer.advisor.gray-bg{
  background-color: #F4F5F8;
}
.pre-footer.advisor .container > .column{
  display: block;
}
.pre-footer.advisor.center-text .container .advisor-group{
  justify-content:center;
}
.pre-footer.advisor.center-text .container > .column .module > h2,
.pre-footer.advisor.center-text .container > .column {
  text-align: center;
}
.pre-footer.advisor .container {
  gap: 20px;
}
.pre-footer.advisor .open-text h2{
  margin-bottom: 0;
}
.pre-footer.advisor h2 {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.pre-footer.advisor.center-text .btn{
  margin-bottom: 50px;
}
.pre-footer.advisor.navy-bg .btn:hover{
  color: #CD493C;
}

.pre-footer.advisor p {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.pre-footer.advisor h3 {
  font-size: 1.9rem;
  margin-bottom: 0;
  line-height: 1;
}
.pre-footer.advisor .flex-advisor-field,
.pre-footer.advisor .advisor-title {
  line-height: 1;
  margin: 8px 0 5px;
}

.pre-footer.advisor .column > img {
  width: 110px;
  height: auto;
  border-radius: 50%;
}

.pre-footer.advisor .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0;
}
.pre-footer.advisor .advisor-group .column{
  padding-bottom: 30px;
  align-items:flex-start;
}
.linkedin-link a span{
  display: inline-block;
  text-decoration: underline;
}
.linkedin-link a svg{
  display: inline-block;
  position: relative;
  top: 5px;
  margin-left: 4px;
}

.advisor-container {
  padding-left: 20px;
}

.icons .intro {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  text-align: center;
  margin-bottom: 20px;
}

body section.notop.icons .container {
  padding-top: 0;
}

a.icon-card h3:after {
  content: " ";
  height: 12px;
  width: 12px;
  margin-left: 5px;
  display: inline-block;
  background: url(../img/small-arrow.webp) no-repeat 50% 50%;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a.icon-card:hover h3:after {
  -webkit-transform: translate(5px, 0);
          transform: translate(5px, 0);
}

.posts .columns {
  text-align: center;
}

.posts .columns a {
  margin-left: auto;
  margin-right: auto;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

.posts .columns a:hover {
  -webkit-transform: scale(1.03) translateZ(0);
          transform: scale(1.03) translateZ(0);
}

.comparison .container .comparisonTable .tableItem {
  max-width: 430px;
}

.comparison-text {
  padding-top: 15px;
  padding-bottom: 15px;
}

.comparison-text h3 {
  margin-bottom: 10px;
}

.comparison-text p {
  margin-bottom: 15px;
}

.comparison-text ul,
.comparison-text ol {
  margin-bottom: 15px;
}

.transaction {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

body .tablepress > :where(thead, tfoot) > * > th {
  background-color: #0B2A4A;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 15px 13px 30px;
}

.tablepress .sorting:last-child:after {
  right: 15px;
}

body .tablepress th:first-child,
body .tablepress > :where(tbody) td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

body .tablepress th:last-child,
body .tablepress > :where(tbody) td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-right: 30px;
}

body .tablepress > :where(tbody) td {
  padding: 12px 15px 13px 30px;
  border-width: 0;
}

body .tablepress > :where(tbody) > .odd > * {
  background-color: #F4F5F8;
}

body .dataTables_wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

section {
  overflow: hidden;
}

.oversize-table {
  position: relative;
}

.oversize-table:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: rgb(2, 2, 2);
  background: -webkit-gradient(linear, left top, right top, from(rgba(2, 2, 2, 0)), to(rgba(0, 0, 0, 0.25)));
  background: linear-gradient(90deg, rgba(2, 2, 2, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020202",endColorstr="#000000",GradientType=1);
  visibility: visible;
}

.default:not(.add-border) .module *,
.small:not(.add-border) .module * {
  max-width: 878px;
  margin-left: auto;
  margin-right: auto;
}

.small:not(.add-border) .module * {
  max-width: 600px;
}

.default:not(.add-border) p,
.small:not(.add-border) p {
  margin-bottom: 25px;
}

.default:not(.add-border) h3,
.small:not(.add-border) h3 {
  font-size: 3.2rem;
  margin-bottom: 17px;
}

.default:not(.add-border) h2,
.small:not(.add-border) h2 {
  font-size: 4.2rem;
}

.hero.blue-bg {
  text-align: center;
}

.hero-container.blue {
  padding-top: 30px;
  padding-bottom: 30px;
}

.container {
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
}

.cta .gform_wrapper {
  max-width: 440px;
}

.cta .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 2px;
}

body .cta .gform_wrapper.gravity-theme .gfield input[type=email] {
  border-width: 0;
  background-color: #F4F5F8;
}

.comparison .container .comparisonTable .tableItem .heading h3 {
  margin-bottom: 13px;
}

section.checklist {
  background: #F4F5F8;
  padding-top: 60px;
}

section.checklist h2 {
  margin-bottom: 30px;
}

section.checklist .checklist-container {
  max-width: 940px;
  margin: auto;
}

.testimonial-type-none blockquote {
  text-align: center;
  width: 100%;
}

.testimonial .slide.testimonial-type-none .slide-container {
  display: block !important;
}

.testimonial .slide.testimonial-type-none .slide-container .content {
  max-width: 650px;
  padding: 0;
  margin: auto;
}

.testimonial .testimonial-type-none .testimonial-author,
.testimonial .testimonial-type-none .testimonial-title {
  text-align: center;
}

.accordionItems {
  max-width: 877px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}

footer#footer .container .top p.footer-phone {
  margin-bottom: 12px;
}

footer#footer .container .top p.routing {
  line-height: 1.2;
}

.ref {
  padding-left: 30px;
  position: relative;
}

.ref .ref-num {
  position: absolute;
  top: 0;
  left: 0;
}

.cards.add-card-border .container {
  margin-bottom: 60px;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.cards.add-card-border .container.card-intro.no-text{
  margin-bottom: 0;
}

.page-template-template-meet-alerus-landing-page .general.notop{
  padding-top: 0;
}
.page-template-template-meet-alerus-landing-page .general.nobottom{
  padding-bottom: 0;
}

.cards.add-card-border .container .card:last-child,
.cards.add-card-border .container .card {
  border: 1px solid #C0C0C0;
  border-radius: 12px;
}

.cards.add-card-border .card .btn {
  left: 18px;
}

.cards.add-card-border .container .card .content {
  padding-left: 18px;
  padding-right: 18px;
}

.card-type-icons.add-card-border .card .card-icon {
  margin-top: 10px;
  margin-left: 13px;
}

.card-type-images.add-card-border .card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.general.one-column.add-border .container .column:last-of-type,
.general.one-column.add-border .container .column:last-of-type {
  border-right-width: 0;
  padding-right: 0;
}

.mortgage-lp header#header {
  padding-top: 0;
  height: 55px;
}

.mortgage-lp header#header #mobile-toggle {
  position: absolute;
  margin-right: 0;
  top: 0;
}

.mortgage-lp header#header #mobile-toggle > div {
  position: relative;
  top: -11px;
}

body.mortgage-lp,
.single-financial_advice {
  background-color: #f4f7f6;
}

body.mortgage-lp .btn {
  border-radius: 0;
}

.mortgage-lp #apply-btn {
  font-size: 1.6rem;
}

.mortgage-lp .slick-dots button {
  border-width: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  padding: 0;
  background-color: #757575;
  color: #fff;
}

.mortgage-lp .slick-active button,
.mortgage-lp .slick-dots button:hover,
.mortgage-lp .slick-dots li.slick-active button {
  background-color: #2a7d98;
}

.mortgage-lp .copy-disclaimer *,
.mortgage-lp .copy-disclaimer {
  font-size: 1.3rem;
  text-align: left;
}

.mortgage-lp #footer a {
  color: #297994;
}

.mortgage-lp .large-cta-callout a {
  color: #297994;
}

.mortgage-lp #footer .copyright {
  display: block;
}

.page-template-template-personal-finances #breadcrumbs a,
.single-locations #breadcrumbs a,
.single-newsroom #breadcrumbs a,
.single-newsroom #breadcrumbs a:after,
.single-financial_advice #breadcrumbs a,
.single-financial_advice #breadcrumbs a:after,
.tax-financial_advice_taxonomy #breadcrumbs a,
.tax-financial_advice_taxonomy #breadcrumbs a:after,
.post-type-archive-financial_advice #breadcrumbs a,
.post-type-archive-financial_advice #breadcrumbs a:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-template-personal-finances #breadcrumbs a:after,
.single-locations #breadcrumbs a:after,
.single-newsroom #breadcrumbs a:after,
.tax-newsroom_taxonomy #breadcrumbs a:after,
.post-type-archive-newsroom #breadcrumbs a:after,
.single-team #breadcrumbs a:after,
.page-template-template-team #breadcrumbs a:after,
.single-financial_advice #breadcrumbs a:after,
.tax-financial_advice_taxonomy #breadcrumbs a:after,
.post-type-archive-financial_advice #breadcrumbs a:after {
  content: " ";
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: 5px -108px;
  height: 25px;
  width: 25px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  display: none;
}

.page-template-template-personal-finances #breadcrumbs a,
.single-locations #breadcrumbs a,
.single-newsroom #breadcrumbs a,
.tax-newsroom_taxonomy #breadcrumbs a,
.post-type-archive-newsroom #breadcrumbs a,
.single-team #breadcrumbs a,
.page-template-template-team #breadcrumbs a,
.single-financial_advice #breadcrumbs a,
.tax-financial_advice_taxonomy #breadcrumbs a,
.post-type-archive-financial_advice #breadcrumbs a {
  font-size: 1.4rem;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-template-template-personal-finances #breadcrumbs,
.single-locations #breadcrumbs,
.single-newsroom #breadcrumbs,
.tax-newsroom_taxonomy #breadcrumbs,
.post-type-archive-newsroom #breadcrumbs,
.single-team #breadcrumbs,
.page-template-template-team #breadcrumbs,
.single-financial_advice #breadcrumbs,
.tax-financial_advice_taxonomy #breadcrumbs,
.post-type-archive-financial_advice #breadcrumbs {
  display: none;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  text-transform: capitalize;
  background-color: #fff;
  font-size: 1.4rem;
  color: #666;
  padding: 8px 0 9px;
}

.single-locations #breadcrumbs,
.single-newsroom #breadcrumbs,
.page-template-template-team #breadcrumbs {
  padding-left: 20px;
}

.page-template-template-personal-finances > .container > span > span,
.single-newsroom #breadcrumbs > .container > span > span,
.tax-newsroom_taxonomy #breadcrumbs > .container > span > span,
.post-type-archive-newsroom #breadcrumbs > .container > span > span,
.single-team #breadcrumbs > .container > span > span,
.page-template-template-team #breadcrumbs > .container > span > span,
.single-financial_advice #breadcrumbs > .container > span > span,
.tax-financial_advice_taxonomy #breadcrumbs > .container > span > span,
.post-type-archive-financial_advice #breadcrumbs > .container > span > span {
  padding-right: 7px;
  padding-left: 5px;
}

.page-template-template-personal-finances #breadcrumbs > .container > span > span:first-child,
.single-locations #breadcrumbs > .container > span > span:first-child,
.single-newsroom #breadcrumbs > .container > span > span:first-child,
.tax-newsroom_taxonomy #breadcrumbs > .container > span > span:first-child,
.post-type-archive-newsroom #breadcrumbs > .container > span > span:first-child,
.single-team #breadcrumbs > .container > span > span:first-child,
.page-template-template-team #breadcrumbs > .container > span > span:first-child,
.single-financial_advice #breadcrumbs > .container > span > span:first-child,
.tax-financial_advice_taxonomy #breadcrumbs > .container > span > span:first-child,
.post-type-archive-financial_advice #breadcrumbs > .container > span > span:first-child {
  padding-left: 0;
}

.page-template-template-personal-finances #inside-hero h1,
.single-locations #inside-hero h1,
.single-newsroom #inside-hero h1,
.tax-newsroom_taxonomy #inside-hero h1,
.post-type-archive-newsroom #inside-hero h1,
.single-team #inside-hero h1,
.page-template-template-team #inside-hero h1,
.single-financial_advice #inside-hero h1,
.tax-financial_advice_taxonomy #inside-hero h1,
.post-type-archive-financial_advice #inside-hero h1 {
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-top: 5px;
}

.page-template-template-personal-finances #inside-hero,
.single-locations #inside-hero,
.single-newsroom #inside-hero,
.tax-newsroom_taxonomy #inside-hero,
.post-type-archive-newsroom #inside-hero,
.single-team #inside-hero,
.page-template-template-team #inside-hero,
.single-financial_advice #inside-hero,
.tax-financial_advice_taxonomy #inside-hero,
.post-type-archive-financial_advice #inside-hero {
  background: #0c2b4a url(../img/fa_hero_bg.png) repeat 0 0/auto;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  height: 200px;
  text-align: center;
}

.page-template-template-personal-finances #inside-hero-text,
.single-locations #inside-hero-text,
.single-newsroom #inside-hero-text,
.tax-newsroom_taxonomy #inside-hero-text,
.post-type-archive-newsroom #inside-hero-text,
.single-team #inside-hero-text,
.page-template-template-team #inside-hero-text,
.single-financial_advice #inside-hero-text,
.tax-financial_advice_taxonomy #inside-hero-text,
.post-type-archive-financial_advice #inside-hero-text {
  padding: 20px 0 30px;
}

.page-template-template-personal-finances #inside-hero-text div,
.single-locations #inside-hero-text div,
.single-newsroom #inside-hero-text div,
.tax-newsroom_taxonomy #inside-hero-text div,
.post-type-archive-newsroom #inside-hero-text div,
.single-team #inside-hero-text div,
.page-template-template-team #inside-hero-text div,
.single-financial_advice #inside-hero-text div,
.tax-financial_advice_taxonomy #inside-hero-text div,
.post-type-archive-financial_advice #inside-hero-text div {
  position: relative;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single-newsroom .sr-only,
.tax-newsroom_taxonomy .sr-only,
.post-type-archive-newsroom .sr-only,
.single-team .sr-only,
.page-template-template-team .sr-only,
.single-financial_advice .sr-only,
.tax-financial_advice_taxonomy .sr-only,
.post-type-archive-financial_advice .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  display: inline-block;
}

.single-newsroom select.select-css,
.tax-newsroom_taxonomy select.select-css,
.post-type-archive-newsroom select.select-css,
.single-team select.select-css,
.page-template-template-team select.select-css,
.single-financial_advice select.select-css,
.tax-financial_advice_taxonomy select.select-css,
.post-type-archive-financial_advice select.select-css {
  word-wrap: normal;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version='1.1'%20id='Capa_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20185.344%20185.344'%20style='enable-background:new%200%200%20185.344%20185.344;'%20xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath%20style='fill:%23666666;'%20d='M92.672,144.373c-2.752,0-5.493-1.044-7.593-3.138L3.145,59.301c-4.194-4.199-4.194-10.992,0-15.18%20c4.194-4.199,10.987-4.199,15.18,0l74.347,74.341l74.347-74.341c4.194-4.199,10.987-4.199,15.18,0%20c4.194,4.194,4.194,10.981,0,15.18l-81.939,81.934C98.166,143.329,95.419,144.373,92.672,144.373z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#fff));
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version='1.1'%20id='Capa_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20185.344%20185.344'%20style='enable-background:new%200%200%20185.344%20185.344;'%20xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath%20style='fill:%23666666;'%20d='M92.672,144.373c-2.752,0-5.493-1.044-7.593-3.138L3.145,59.301c-4.194-4.199-4.194-10.992,0-15.18%20c4.194-4.199,10.987-4.199,15.18,0l74.347,74.341l74.347-74.341c4.194-4.199,10.987-4.199,15.18,0%20c4.194,4.194,4.194,10.981,0,15.18l-81.939,81.934C98.166,143.329,95.419,144.373,92.672,144.373z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(180deg, #fff 0, #fff);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.05em auto, 100%;
  border-width: 0;
  padding: 9px 20px;
  text-align: left;
  text-indent: 1px;
  position: relative;
  font-weight: 400;
}

.single-locations #main-content,
.single-newsroom #main-content,
.tax-newsroom_taxonomy #main-content,
.post-type-archive-newsroom #main-content,
.single-team #main-content,
.page-template-template-team #main-content,
.single-financial_advice #main-content,
.tax-financial_advice_taxonomy #main-content,
.post-type-archive-financial_advice #main-content {
  margin-bottom: 70px;
  font-size: 1.8rem;
  padding: 0 20px;
  margin-top: -30px;
  margin-bottom: -31px;
}

.single-locations #main-content:not(.with-hero-bg),
.single-newsroom #main-content:not(.with-hero-bg),
.tax-newsroom_taxonomy #main-content:not(.with-hero-bg),
.post-type-archive-newsroom #main-content:not(.with-hero-bg),
.single-team #main-content:not(.with-hero-bg),
.page-template-template-team #main-content:not(.with-hero-bg),
.single-financial_advice #main-content:not(.with-hero-bg),
.tax-financial_advice_taxonomy #main-content:not(.with-hero-bg),
.post-type-archive-financial_advice #main-content:not(.with-hero-bg) {
  margin-top: -80px;
}

.page-template-template-personal-finances #main-content > .container,
.single-locations #main-content > .container,
.single-newsroom #main-content > .container,
.tax-newsroom_taxonomy #main-content > .container,
.post-type-archive-newsroom #main-content > .container,
.single-team #main-content > .container,
.page-template-template-team #main-content > .container,
.single-financial_advice #main-content > .container,
.tax-financial_advice_taxonomy #main-content > .container,
.post-type-archive-financial_advice #main-content > .container {
  border-top: 10px solid #ebebeb;
  background-color: #fff;
  padding: 20px 0 0;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 30px;
}

.post-type-archive-newsroom #main-content > .container {
  padding: 0;
}

.single-financial_advice .advice-post,
.tax-financial_advice_taxonomy .advice-post,
.post-type-archive-financial_advice .advice-post {
  padding: 40px 20px;
}

.single-financial_advice .advice-post .thumb,
.tax-financial_advice_taxonomy .advice-post .thumb,
.post-type-archive-financial_advice .advice-post .thumb {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  max-width: 391px;
}

.single-financial_advice .advice-post .thumb img,
.tax-financial_advice_taxonomy .advice-post .thumb img,
.post-type-archive-financial_advice .advice-post .thumb img {
  width: 100%;
  height: auto;
}

.single-financial_advice .article-content,
.tax-financial_advice_taxonomy .article-content,
.post-type-archive-financial_advice .article-content {
  font-size: 1.8rem;
  margin-left: auto;
  margin-right: auto;
}

.single-financial_advice #main-content article,
.tax-financial_advice_taxonomy #main-content article,
.post-type-archive-financial_advice #main-content article {
  border-bottom: 1px solid #d7d7d7;
}

.single-financial_advice #main-content h2,
.tax-financial_advice_taxonomy #main-content h2,
.post-type-archive-financial_advice #main-content h2 {
  font-size: 1.5rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}

.single-financial_advice .article-content a,
.tax-financial_advice_taxonomy .article-content a,
.post-type-archive-financial_advice .article-content a {
  color: #297994;
  text-decoration: none;
  font-size: 2rem;
}

.single-financial_advice .article-content p,
.tax-financial_advice_taxonomy .article-content p {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: lighter;
  color: #212529;
}

.single-financial_advice.article-content h2 a,
.tax-financial_advice_taxonomy .article-content h2 a,
.post-type-archive-financial_advice .article-content h2 a {
  font-size: 2.3rem;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
  color: #297994;
}

.single-financial_advice .article-content a:hover,
.single-financial_advice .article-content h2 a:hover,
.tax-financial_advice_taxonomy .article-content a:hover,
.tax-financial_advice_taxonomy .article-content h2 a:hover,
.post-type-archive-financial_advice .article-content a:hover,
.post-type-archive-financial_advice .article-content h2 a:hover {
  text-decoration: underline;
}

.pagination {
  text-align: center;
  padding: 50px 0;
}

.pagination ul {
  margin: 0 auto 9px;
  padding: 0;
  text-align: center;
}

.pagination li {
  display: inline-block;
  margin: 0 8px;
}

.pagination li a, .pagination li a:focus {
  display: inline-block;
  text-decoration: none;
  padding: 5px 0;
  min-width: 28px;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.5rem;
  border: 1px solid #fff;
}

.pagination li a.active, .pagination li a:focus, .pagination li a:hover {
  background-color: #297d97;
  color: #fff;
  border: 1px solid #297d97;
}

.pagination .next, .pagination .prev {
  text-indent: -9999px;
  border: 1px solid #cd493c;
  position: relative;
}

.pagination .prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination .next:after, .pagination .prev:after {
  content: " ";
  display: inline-block;
  height: 12px;
  width: 8px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -402px -111px;
  position: absolute;
  top: 7px;
  left: 11px;
}

.pagination li a.next:hover, .pagination li a.prev:hover {
  background-color: #cd493c;
  border: 1px solid #cd493c;
}

.pagination li a.next:hover:after, .pagination li a.prev:hover:after,
.pagination li a:focus:after {
  background-position: -427px -111px;
}

.page-details {
  font-size: 1.5rem;
  color: #333;
}

body.single-financial_advice #main-content {
  margin-bottom: 30px;
}

body.single-financial_advice #main-content.financial-single h1 {
  text-transform: unset;
  font-weight: lighter;
  letter-spacing: unset;
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

body.single-financial_advice #main-content.financial-single h1 + h2 {
  font-family: Source Sans Pro, sans-serif;
  font-weight: lighter;
  letter-spacing: unset;
}

body.single-financial_advice #main-content.financial-single h1 + h2 ~ p {
  font-size: 2rem;
}

body.single-financial_advice #main-content.financial-single .container {
  padding-top: 70px;
}

body.single-financial_advice #main-content.financial-single .container .category {
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #72757e;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.page-template-template-personal-finances #main-content h2 {
  text-align: center;
}

.page-template-template-personal-finances #main-content h1,
.single-financial_advice #main-content h1 {
  line-height: 1.2;
  text-align: center;
  color: #0c2b4a;
  text-transform: unset;
  font-weight: lighter;
  letter-spacing: unset;
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.single-locations .back a:hover,
.single-newsroom .back a:hover,
.single-financial_advice .back a:hover {
  text-decoration: underline;
}

.single-locations .back a,
.single-newsroom .back a,
.single-team .back a,
.single-financial_advice .back a {
  color: #297994;
  text-decoration: none;
  font-weight: 400;
}

.single-locations .back:before,
.single-newsroom .back:before,
.single-team .back:before,
.single-financial_advice .back:before {
  content: " ";
  display: inline-block;
  height: 9px;
  width: 11px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -291px -113px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.single-locations .back,
.single-newsroom .back,
.single-team .back,
.single-financial_advice .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-weight: 700;
}

.single-locations .back {
  text-align: center;
}

.single-financial_advice .print-page {
  position: absolute;
  top: 13px;
  right: 20px;
}

.single-financial_advice #main-content h2 {
  font-size: 2.3rem;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: none;
  font-weight: lighter;
  color: #404745;
  text-align: center;
  margin-bottom: 24px;
}

.single-financial_advice #main-content h2:after {
  content: " ";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #f4333b;
  margin: 24px auto auto;
}

.single-financial_advice #main-content h1 ~ p {
  margin-bottom: 24px;
}

.single-financial_advice #main-content p {
  line-height: 1.5;
}

.single-financial_advice hr {
  display: block;
  border: 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  margin: 40px 0 50px;
  padding: 0;
  height: 8px;
}

.single-financial_advice .format-content ul {
  padding-left: 60px;
}

.single-financial_advice #main-content .container > ul > li {
  margin-bottom: 15px;
  list-style-type: none;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}

.single-financial_advice .format-content ul li:before {
  content: " ";
  display: inline-block;
  height: 6px;
  width: 6px;
  background-color: #0c2b4a;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: -20px;
}

.single-financial_advice .format-content ul li h3 {
  font-size: 1.8rem;
  color: #0c2b4a;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.single-financial_advice .content-cta .container {
  padding: 50px 20px 70px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.single-financial_advice .content-cta .link {
  font-size: 2.3rem;
  text-align: center;
}

.single-financial_advice .content-cta a:hover {
  text-decoration: underline;
}

.single-financial_advice .content-cta a {
  color: #297994;
  font-weight: 400;
  text-decoration: none;
}

.single-financial_advice .content-cta h2 {
  font-size: 3rem;
  font-weight: 300;
  text-transform: unset;
  color: #0c2b4a;
  text-align: center;
  margin-bottom: 10px;
}

.single-newsroom .full-callout h2,
.single-financial_advice .full-callout h2 {
  font-size: 2.8rem;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  text-align: center;
  color: #fff;
}

.single-newsroom .full-callout p,
.single-financial_advice .full-callout p {
  font-size: 1.5rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  text-align: center;
}

.single-newsroom .full-callout,
.single-financial_advice .full-callout {
  padding: 100px 30px;
  background-position: 100% 100%;
  background-size: cover;
  position: relative;
  background-color: #0c2b4a;
  margin-bottom: 0;
}

.single-financial_advice .disclaimer-text {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}

.single-newsroom .signup .gform_wrapper .top_label .gfield_label,
.single-financial_advice .signup .gform_wrapper .top_label .gfield_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.single-newsroom .signup .gform_wrapper ul.gform_fields li.gfield,
.single-financial_advice .signup .gform_wrapper ul.gform_fields li.gfield {
  margin: 0;
  padding-right: 0;
}

.single-newsroom .signup .gform_wrapper,
.single-financial_advice .signup .gform_wrapper {
  margin: 0;
}

.single-newsroom .signup ::-webkit-input-placeholder,
.single-financial_advice .signup ::-webkit-input-placeholder {
  color: #999;
  font-size: 1.5rem;
}

.single-newsroom .signup .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half),
.single-financial_advice .signup .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

.single-newsroom .signup ::-moz-placeholder,
.single-financial_advice .signup ::-moz-placeholder {
  color: #999;
  font-size: 1.5rem;
}

.single-newsroom .signup :-ms-input-placeholder,
.single-financial_advice .signup :-ms-input-placeholder {
  color: #999;
  font-size: 1.5rem;
}

.single-newsroom .signup :-moz-placeholder,
.single-financial_advice .signup :-moz-placeholder {
  color: #999;
  font-size: 1.5rem;
}

.single-newsroom .signup input.btn,
.single-financial_advice .signup input.btn {
  font-size: 1.5rem;
  padding: 8px 30px;
  margin-bottom: 25px;
  vertical-align: top;
}

.single-newsroom .signup .gform_wrapper .gform_body,
.single-financial_advice .signup .gform_wrapper .gform_body {
  width: 100%;
  max-width: 350px;
  padding-right: 0;
}

.single-newsroom .signup .gform_wrapper .top_label input.medium,
.single-financial_advice .signup .gform_wrapper .top_label input.medium {
  width: calc(100% - 8px);
}

.single-newsroom .signup .gform_wrapper div.validation_error,
.single-financial_advice .signup .gform_wrapper div.validation_error {
  color: #fff;
  border-width: 0;
  width: 100%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-bottom: 10px;
}

.single-newsroom .signup .gform_wrapper li.gfield.gfield_error,
.single-financial_advice .signup .gform_wrapper li.gfield.gfield_error {
  background-color: transparent;
  padding: 0;
  border-width: 0;
}

.single-newsroom .signup .gform_wrapper li.gfield.gfield_error input[type=text],
.single-financial_advice .signup .gform_wrapper li.gfield.gfield_error input[type=text] {
  border-color: red;
}

.single-newsroom .signup .gform_wrapper.gform_validation_error .top_label input.medium,
.single-financial_advice .signup .gform_wrapper.gform_validation_error .top_label input.medium {
  width: 100%;
}

.single-newsroom .signup .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
.single-financial_advice .signup .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  display: none;
}

.single-newsroom .signup .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.single-financial_advice .signup .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin: 0;
}

.single-newsroom .signup .gform_wrapper form .gform_body,
.single-financial_advice .signup .gform_wrapper form .gform_body {
  display: inline-block;
  width: 100%;
  max-width: 332px;
}

.single-newsroom .signup .gform_wrapper form .gform_footer,
.single-financial_advice .signup .gform_wrapper form .gform_footer {
  margin: 0;
  padding: 0;
  text-align: left;
  display: inline-block;
  width: auto;
}

.single-newsroom .signup .gform_wrapper .top_label div.ginput_container,
.single-financial_advice .signup .gform_wrapper .top_label div.ginput_container {
  margin-top: 0;
}

.single-newsroom .gform_wrapper .gform_footer .btn,
.single-financial_advice .gform_wrapper .gform_footer .btn {
  background-color: #cd493c;
  color: #fff;
  display: inline-block;
  border: 1px solid #cd493c;
  border-radius: 1px;
  font-size: 1.5rem;
  padding: 8px 30px;
  font-weight: 400;
  margin-bottom: 40px;
}

.single-newsroom .signup input[type=email],
.single-newsroom .signup input[type=text],
.single-financial_advice .signup input[type=email],
.single-financial_advice .signup input[type=text] {
  padding: 8px 15px !important;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  font-size: 1.5rem !important;
  margin-right: 7px;
  margin-bottom: 25px;
  vertical-align: top;
  width: 100%;
  max-width: 325px;
  color: #333;
}

.sharethis {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sharethis a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85px;
  padding: 6px 0;
  margin-right: 5px;
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
  font-size: 1.4rem;
}

.sharethis a:last-of-type {
  margin-right: 0;
}

.sharethis a:hover {
  opacity: 0.85;
}

.sharethis a span:not(.ico) {
  padding-left: 7px;
}

.sharethis a.email {
  background-color: #757575;
}

.sharethis a.facebook {
  background-color: #4267b2;
}

.sharethis a.linkedin {
  background-color: #2867b2;
}

.sharethis a.twitter {
  background-color: #2a7d98;
}

.sharethis a.copy {
  background-color: #000;
}

.sharethis .copy-msg {
  margin-left: 15px;
  color: #2a7d98;
}

.icon-envelope:before {
  content: "\e902";
}

.icon-link:before {
  content: "\e907";
}

.icon-linkedin:before {
  content: "\e905";
}

.icon-facebook:before {
  content: "\e906";
}

.icon-equal-housing:before {
  content: "\e908";
}

.single-team #inside-hero-text {
  height: 105px;
}

.single-team #inside-hero-text h1 {
  padding-top: 5px;
}

.single-team .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-weight: 700;
}

.single-team #main-content.leadership-detail .container {
  padding-top: 85px;
}

@font-face {
  font-family: icomoon;
  src: url(../template-parts/legacy/fonts/icomoon.eot?ggcqr9);
  src: url(../template-parts/legacy/fonts/icomoon.eot?ggcqr9#iefix) format("embedded-opentype"), url(../template-parts/legacy/fonts/icomoon.ttf?ggcqr9) format("truetype"), url(../template-parts/legacy/fonts/icomoon.woff?ggcqr9) format("woff"), url(../template-parts/legacy/fonts/icomoon.svg?ggcqr9#icomoon) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
.ico {
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.three-step {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 40px 0;
}

.three-step h2 {
  color: #0c2b4a;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.three-step .steps .view-all-container {
  text-align: left;
  width: 100%;
  padding: 10px 20px 0;
  font-weight: 700;
  font-size: 1.8rem;
}

.three-step .steps .view-all-container a:after {
  content: " ";
  display: inline-block;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: 0 -113px;
  height: 18px;
  width: 16px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  position: relative;
  bottom: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  margin-left: 6px;
}

.three-step .step {
  text-align: left;
  display: block;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px 15px 20px 55px;
  line-height: 1.2;
  position: relative;
  text-decoration: none;
}

.three-step .step:hover {
  background-color: #f4f7f6;
  text-decoration: none;
}

.three-step .step:hover:before {
  background-position: -202px -108px;
}

.three-step .step:focus {
  background-color: #f4f7f6;
  text-decoration: none;
}

.three-step .step:focus:before {
  background-position: -202px -108px;
}

.three-step .step:before {
  content: " ";
  display: block;
  height: 30px;
  width: 30px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -128px -108px;
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -15px;
}

.three-step .step span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: block;
}

.h5 {
  font-size: 2.8rem;
  font-weight: lighter;
  color: #297d97;
}

.view-all-container a {
  font-size: 1.8rem;
  color: #297994;
  text-decoration: none;
  font-weight: 400;
}

.view-all-container a:hover {
  text-decoration: underline;
}

.page-template-template-personal-finances #inside-hero h1,
.single-newsroom #inside-hero h1,
.ptax-newsroom_taxonomy #inside-hero h1,
.post-type-archive-newsroom #inside-hero h1,
.single-team #inside-hero h1,
.page-template-template-team #inside-hero h1 {
  line-height: 1.2;
}

.page-template-template-personal-finances #inside-hero,
.single-newsroom #inside-hero,
.tax-newsroom_taxonomy #inside-hero,
.post-type-archive-newsroom #inside-hero,
.single-team #inside-hero,
.page-template-template-team #inside-hero {
  height: 200px;
}

body.single-team #main-content.leadership .team-quarters h2,
body.page-template-template-team #main-content.leadership .team-quarters h2 {
  font-weight: 400;
  font-size: 2.6rem;
  text-transform: none;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 5px;
  color: #0c2b4a;
  margin-bottom: 25px;
  margin-top: 30px;
  line-height: 1.5;
  text-align: center;
}

body.single-team #main-content .container,
body.page-template-template-team #main-content .container {
  padding-left: 20px;
  padding-right: 20px;
}

.leader-thumb {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 18px;
}

.single-team .back {
  text-align: center;
}

.single-team .back a:hover {
  text-decoration: underline;
}

.single-team #main-content > .container {
  margin-bottom: 30px;
}

.single-team article {
  text-align: center;
}

.single-team #main-content.leadership-detail article {
  margin-bottom: 60px;
  padding-bottom: 10px;
}

.single-team #main-content.leadership-detail article h2 {
  text-align: center;
  max-width: 100%;
  border-width: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  padding: 0;
  font-weight: 400;
  font-size: 2.6rem;
  text-transform: none;
  color: #0c2b4a;
  line-height: 1.5;
}

body.single-team #main-content > .container article p {
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  max-width: 100%;
  margin-bottom: 17px;
  font-size: 2rem;
}

body.single-team #main-content > .container article p.title {
  font-size: 2.3rem;
  margin-bottom: 10px;
  text-align: center;
}

.single-team #main-content.leadership-detail article .email-contact a:hover {
  text-decoration: underline;
}

.single-team #main-content.leadership-detail article .email-contact a {
  color: #297994;
  text-decoration: none;
}

.single-team #main-content.leadership-detail article .email-contact {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 5px;
}

.single-team .red-sep {
  width: 45px;
  background-color: #000;
  height: 0;
  border-top: 1px solid #f4333b;
  margin-top: 25px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.single-team #share-btns.linkedin-icon {
  text-align: left;
  display: block;
  padding: 0;
  position: relative;
  margin-top: 30px;
}

.single-team #share-btns.linkedin-icon a {
  display: inline-block;
  background: transparent url(../template-parts/legacy/img/sprite.png) no-repeat -439px -355px;
  height: 40px;
  width: 40px;
  text-indent: -9999px;
  text-align: left;
  padding: 0;
}

.single-newsroom,
.tax-newsroom_taxonomy,
.post-type-archive-newsroom,
.page-template-template-team {
  background-color: #f4f7f6;
}

.page-template-template-team #main-content .container {
  padding-bottom: 30px;
}

.page-template-template-team #main-content {
  margin-bottom: 70px;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article h3 a:hover {
  text-decoration: underline;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article h3 a {
  color: #297994;
  font-size: 2rem;
  text-decoration: none;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article h3 {
  font-size: 1.75rem;
  text-align: center;
  padding-top: 10px;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article .title {
  margin-top: 10px;
  padding: 0 10px;
  text-align: center;
  font-size: 2rem;
}

.page-template-template-team .team-quarters .quarters article {
  padding-bottom: 10px;
}

.page-template-template-team .team-quarters .quarters article .city-loc {
  line-height: 1.1;
  margin-top: 15px;
  padding: 0 10px;
  text-align: center;
  font-size: 1.8rem;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article .email a:hover {
  text-decoration: underline;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article .email a {
  text-decoration: none;
  color: #297994;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article .email {
  text-align: center;
  margin-top: 2px;
  margin-bottom: 5px;
  padding: 0 10px;
  font-size: 2rem;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 30px;
}

.page-template-template-team .leader-thumb {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 18px;
}

.page-template-template-team .leader-thumb:after {
  content: " ";
  display: inline-block;
  height: 28px;
  width: 28px;
  z-index: 10;
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -14px;
  background-position: -128px -108px;
}

.page-template-template-team .leader-thumb:after,
.page-template-template-team .leader-thumb:hover:after {
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
}

.page-template-template-team .leader-thumb:hover:after {
  background-position: -202px -108px;
}

body #main-content .newsroom-group article {
  border-bottom-width: 0;
}

#main-content .newsroom-group article {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-bottom-width: 0;
}

#main-content .newsroom-group {
  padding: 70px 0 60px;
}

#main-content .newsroom-group > h2:after {
  content: " ";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #f4333b;
  margin: 24px auto auto;
}

#main-content .newsroom-group > h2 {
  color: #0c2b4a;
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}

#main-content.financial-content .newsroom-group {
  border-top: 1px solid #d7d7d7;
}

.tax-newsroom_taxonomy #main-content.financial-content .newsroom-group .advice-post.post-num-1 {
  border-top: 1px solid #d7d7d7;
}

.tax-newsroom_taxonomy #main-content.financial-content .newsroom-group .advice-post {
  border-bottom: 1px solid #d7d7d7;
  padding-top: 30px;
  padding-bottom: 30px;
}

#main-content.financial-content .newsroom-group h3 a:hover {
  text-decoration: underline;
}

#main-content.financial-content .newsroom-group h3 a {
  color: #297994;
  text-decoration: none;
  font-weight: 400;
}

#main-content.financial-content .newsroom-group .advice-post h3 {
  font-size: 2.1rem;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 10px;
}

.post-type-archive-newsroom #main-content.financial-content .newsroom-group .advice-post h3 {
  border-width: 0;
}

#main-content.financial-content .newsroom-group .advice-post {
  padding-top: 10px;
  padding-bottom: 5px;
  text-align: left;
}

.newsroom-all-link a:hover {
  text-decoration: underline;
}

.newsroom-all-link a {
  font-size: 2.8rem;
  font-weight: lighter;
  display: inline-block;
  color: #297994;
  text-decoration: none;
}

.newsroom-all-link a:hover {
  color: #184858;
}

.newsroom-all-link {
  padding-top: 30px;
  text-align: center;
  display: inline-block;
}

.newsroom-all-link:hover:before {
  background-position: -202px -108px;
}

.newsroom-all-link:before {
  content: " ";
  display: inline-block;
  height: 30px;
  width: 30px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -128px -108px;
  margin-right: 15px;
  position: relative;
  top: 8px;
}

.newsroom-template-default #main-content .flex .content-right {
  padding: 0;
}

.newsroom-template-default #main-content .flex .img-left img {
  width: 100%;
  height: auto;
}

.newsroom-template-default #main-content .flex .img-left {
  width: 196px;
  margin: 20px 30px 20px 0;
}

.newsroom-template-default #main-content .flex {
  display: block;
}

.post-type-archive-newsroom #main-content > .container p {
  line-height: 1.5;
  font-size: 2rem;
}

.post-type-archive-newsroom #main-content .read-more:hover {
  text-decoration: underline;
}

.post-type-archive-newsroom #main-content .read-more {
  font-size: 1.8rem;
  text-decoration: none;
  color: #297994;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

#main-content .media-contact {
  padding-top: 0;
  padding-bottom: 40px;
  text-align: center;
}

#main-content .media-contact p.title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: lighter;
}

#main-content .media-contact h2:after {
  display: none;
}

#main-content .media-contact .email a {
  font-size: 2rem;
  font-weight: 400;
  display: inline-block;
}

#main-content .media-contact p strong {
  font-weight: 600;
}

#main-content .media-contact a:hover {
  text-decoration: underline;
}

#main-content .media-contact a {
  text-decoration: none;
  color: #297994;
}

#main-content .media-contact p {
  margin-bottom: 0;
  font-weight: lighter;
}

#main-content .media-contact a.tel {
  color: #666;
  display: inline-block;
  margin-top: 5px;
  font-size: 2rem;
  font-weight: lighter;
}

#main-content .media-contact h3 {
  font-size: 2.7rem;
  font-weight: lighter;
  margin-bottom: 0;
}

#main-content .media-contact h2 {
  color: #297994;
  margin-bottom: 7px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

#main-content .media-contact > div {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: left;
  padding: 40px 50px;
}

body .gform_legacy_markup_wrapper .gfield_required {
  font-size: 1.4rem;
  font-style: italic;
}

#main-content .newsroom-group article {
  text-align: left;
}

.post-type-archive-newsroom #main-content .container {
  margin-bottom: 0;
}

.post-type-archive-newsroom .advice-post {
  padding: 40px 20px;
}

.post-type-archive-newsroom .newsroom-all-link a {
  margin-left: auto;
  margin-right: auto;
}

.post-type-archive-newsroom .newsroom-all-link {
  text-align: center;
  width: 100%;
}

.single-newsroom #main-content > .container,
.tax-newsroom_taxonomy #main-content > .container {
  padding-top: 0;
}

.single-newsroom #main-content a.read-more:hover,
.tax-newsroom_taxonomy #main-content a.read-more:hover {
  text-decoration: underline;
}

.single-newsroom #main-content a.read-more,
.tax-newsroom_taxonomy #main-content a.read-more {
  color: #297994;
  text-decoration: none;
}

.tax-newsroom_taxonomy #main-content p,
.single-newsroom #main-content p {
  margin-bottom: 12px;
  font-size: 2rem;
}

.single-newsroom #inside-hero-text,
.tax-newsroom_taxonomy #inside-hero-text {
  padding-top: 0;
}

#inside-hero-text form select {
  border-width: 0;
  padding: 9px 20px;
  text-align: left;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  position: relative;
  font-weight: 400;
}

#inside-hero-text form select.down-arrow {
  background: #fff url(../template-parts/legacy/img/arrow_down.png) no-repeat calc(100% - 10px);
}

.single-newsroom #main-content > .container {
  border-top: 10px solid #ebebeb;
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

body.single-newsroom #main-content {
  margin-bottom: 20px;
}

.single-newsroom #main-content h1 {
  color: #0c2b4a;
  text-align: center;
  font-size: 3rem;
  font-weight: lighter;
  margin-bottom: 45px;
}

body.single-newsroom .signup input.btn {
  border-radius: 1px;
}

.single-newsroom .disclaimer-text {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}

.post-type-archive-locations #inside-hero {
  background: #0c2b4a url(../template-parts/legacy/img/fa_hero_bg.png) repeat 0 0/auto;
  height: 200px;
}

.post-type-archive-locations #inside-hero-text {
  padding: 0;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-type-archive-locations #inside-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.post-type-archive-locations .blue-texture-text input[type=text] {
  margin-right: 3px;
  border-radius: 4px;
  border-width: 0;
  padding: 7px 10px;
  width: 230px;
}

.post-type-archive-locations .blue-texture-text .btn {
  background-color: #cd493c;
  color: #fff;
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid #cd493c;
  border-radius: 1px;
}

.post-type-archive-locations .ico {
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.post-type-archive-locations .icon-search:before {
  content: "\e90b";
}

.post-type-archive-locations #main-content {
  font-size: 1.8rem;
  padding: 0 20px;
  margin-top: -80px;
  margin-bottom: 70px;
}

.post-type-archive-locations #main-content > .container {
  border-top: 10px solid #ebebeb;
  background-color: #fff;
  padding-bottom: 30px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
}

body.post-type-archive-locations .moneypass-mobile a:hover {
  text-decoration: underline;
}

body.post-type-archive-locations .moneypass-mobile a {
  color: #297994;
  text-decoration: none;
  display: inline-block;
}

body.post-type-archive-locations .moneypass-mobile {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

body.post-type-archive-locations .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.post-type-archive-locations .results-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #555;
}

body.post-type-archive-locations .results-view > span {
  padding: 5px 10px;
  border: 1px solid #555;
  border-right-width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  color: #555;
  text-align: left;
}

body.post-type-archive-locations .results-view > span span:first-of-type {
  margin-right: 5px;
}

body.post-type-archive-locations .icon-list-ul:before {
  content: "\e90a";
}

body.post-type-archive-locations .results-view > span {
  padding: 5px 10px;
  border: 1px solid #555;
  border-right-width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-right-width: 1px;
}

body.post-type-archive-locations .results-view > span.list {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
}

body.post-type-archive-locations .results-view > span.map {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

body.post-type-archive-locations .icon-location:before {
  content: "\e909";
}

body.post-type-archive-locations .results-view > span:hover,
body.post-type-archive-locations .results-view > span.active {
  color: #297994;
  background-color: #e1e2e6;
}

body.post-type-archive-locations .options .filters,
body.post-type-archive-locations .options .filters:focus {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #0c2b4a;
  font-weight: 700;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

body.post-type-archive-locations .options .filters span {
  margin-left: 5px;
  font-size: 2.5rem;
  font-weight: 400;
  position: relative;
}

body.post-type-archive-locations .options .filters:focus.active .opened,
body.post-type-archive-locations .options .filters:not(.active) .closed {
  display: none;
}

body.post-type-archive-locations .filter-box {
  margin-top: 15px;
  padding-top: 35px;
  padding-bottom: 35px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

body.post-type-archive-locations .filter-box .flex-container {
  margin-bottom: 15px;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 6px;
}

body.post-type-archive-locations .flex-container > div.service {
  width: 235px;
  margin-right: 15px;
  margin-top: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.post-type-archive-locations .filter-box input[type=checkbox] {
  margin-right: 10px;
  position: relative;
  padding: 0;
}

body.post-type-archive-locations .filter-box .actions {
  display: -webkit-box;
  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;
  margin-top: 30px;
}

body.post-type-archive-locations .filter-box .btn {
  background-color: #cd493c;
  color: #fff;
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid #cd493c;
  border-radius: 1px;
  margin: 0 10px;
}

body.post-type-archive-locations .filter-box .btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #cd493c;
}

body.post-type-archive-locations .flex-map {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}

body.post-type-archive-locations aside.locations {
  font-weight: lighter;
  display: block;
}

body.post-type-archive-locations .moneypass-desktop {
  display: none;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

body.post-type-archive-locations #locations {
  max-height: 414px;
  overflow-y: auto;
  margin-bottom: 30px;
}

body.post-type-archive-locations .locations article {
  position: relative;
  padding-left: 43px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

body.post-type-archive-locations .locations address {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.loc-tag {
  display: inline-block;
  font-size: 2.1rem;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -3px -445px;
  text-align: center;
  height: 41px;
  width: 28px;
  color: transparent;
  position: absolute;
  top: 7px;
  left: 0;
}

.post-type-archive-locations .locations article > p {
  margin-bottom: 12px;
}

.post-type-archive-locations .locations address {
  font-style: normal;
  line-height: 1.5;
}

.post-type-archive-locations .locations address a {
  color: #297994;
  text-decoration: none;
  font-style: normal;
}

.post-type-archive-locations .locations address h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #297994;
  text-decoration: none;
}

.post-type-archive-locations .locations .tel {
  font-size: 2.3rem;
  font-weight: lighter;
  color: #666;
  text-decoration: none;
}

.post-type-archive-locations #map {
  width: 100%;
  height: 500px;
}

body.post-type-archive-locations {
  background-color: #f4f7f6;
}

.post-type-archive-locations .d-none {
  display: none !important;
}

body.post-type-archive-locations .options .filters.active .opened {
  display: none;
}

.single-locations #inside-hero-text {
  padding: 0;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-locations #inside-hero.financial-hero h1 {
  margin-bottom: 5px;
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-top: 5px;
  line-height: 1.2;
}

.single-locations .blue-texture-text .tel:hover {
  text-decoration: underline;
}

.single-locations .blue-texture-text .tel {
  font-size: 2.6rem;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}

.single-locations .blue-texture-text .tel:before {
  content: " ";
  height: 20px;
  width: 22px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -43px -457px;
  margin-right: 10px;
  position: relative;
  top: 2px;
  font-size: 2.6rem;
  color: #fff;
  display: inline-block;
}

.single-locations #main-content.location .info {
  margin-top: 30px;
}

.single-locations #main-content.location .container,
.single-locations .slider {
  position: relative;
  margin-bottom: 66px;
}

.single-locations #inside-hero.financial-hero h1 {
  margin-bottom: 5px;
}

.single-locations #main-content.location .info {
  margin-top: 30px;
}

.single-locations .slider {
  padding: 0;
}

.single-locations .slider .slide {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 300px;
}

.single-locations .slick-next,
.single-locations .slick-prev {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 100;
  margin-top: -25px;
  background-color: #ebebeb;
  border-radius: 50%;
  border-width: 0;
  height: 50px;
  width: 50px;
  text-indent: -9999px;
}

.single-locations .slick-next {
  left: auto;
  right: 15px;
}

.single-locations .slick-next:before,
.single-locations .slick-prev:before {
  content: " ";
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: 0 -112px;
  position: absolute;
  top: 16px;
  left: 18px;
}

.single-locations .slick-prev:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 12px;
}

.single-locations .details.box {
  font-weight: lighter;
}

.single-locations .details.box h3 {
  font-size: 1.9rem;
}

.single-locations .details.box .tel {
  font-size: 2.2rem;
  font-weight: lighter;
  color: #666;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.single-locations .details.box .tel:before {
  content: " ";
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url(../template-parts/legacy/img/sprite.png);
  background-repeat: no-repeat;
  background-position: -331px -109px;
  position: relative;
  top: 6px;
  left: 0;
}

.single-locations .team-quarters h2 {
  margin-bottom: 40px;
}

.single-locations .team-quarters h2:after {
  content: " ";
  display: block;
  width: 45px;
  margin: 25px auto 0;
  background-color: #f4333b;
  height: 1px;
}

.single-locations .team-quarters .quarters article {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 1.9rem;
  color: #666;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 35px;
}

.single-locations .team-quarters .quarters article .city-loc {
  line-height: 1.1;
  margin-top: 15px;
}

.single-locations .team-quarters .quarters article .tel {
  color: #666;
  display: block;
  margin-top: 5px;
  font-size: 2.2rem;
  font-weight: lighter;
}

.single-locations .team-quarters .quarters article h3 {
  margin-bottom: 0;
}

.single-locations .team-quarters .quarters article h3 a {
  font-size: 1.9rem;
  font-weight: 700;
}

.single-locations .slick-arrow {
  background: #ebebeb;
}

.single-locations .slick-prev {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  left: 15px;
}

.single-locations .slick-slide {
  text-align: left;
  padding: 25px 40px 10px;
}

.single-locations #main-content > .container {
  padding: 90px 15px 30px;
}

.single-locations .box {
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background-color: #fafafa;
  margin-bottom: 40px;
  padding: 30px;
  font-size: 1.8rem;
  color: #666;
  line-height: 1.5;
  text-align: center;
}

.single-locations {
  background-color: #f4f7f6;
}

.single-locations #main-content .location.services-list h2.h3,
.single-locations #main-content .location.details h2.h3 {
  color: #0b2a4a;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: none;
  margin-bottom: 8px;
  line-height: 1.5;
}

.single-locations .box a:hover {
  text-decoration: underline;
}

.single-locations .box p {
  margin-bottom: 18px;
}

.single-locations .box a {
  color: #297994;
  text-decoration: none;
}

.single-locations .box address {
  font-style: normal;
  margin-bottom: 16px;
}

.single-locations .services-list ul {
  padding-left: 0;
  font-weight: lighter;
}

.single-locations #main-content .services-list ul li {
  list-style-type: none;
}

.single-locations #main-content .box.services-list h2:after {
  content: " ";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #f4333b;
  margin: 24px auto auto;
}

.single-locations .h3 {
  font-size: 3rem;
  font-weight: 300;
  text-transform: unset;
  color: #0c2b4a;
  margin-bottom: 40px;
  text-align: center;
}

.single-locations .team-quarters h3 a:hover {
  text-decoration: underline;
}

.single-locations .team-quarters h3 a {
  color: #297994;
  text-decoration: none;
  font-size: 1.9rem;
}

.single-locations .team-quarters .quarters article .tel:hover {
  text-decoration: underline;
}

.single-locations .team-quarters .quarters article .tel {
  text-decoration: none;
  color: #666;
  display: block;
  margin-top: 5px;
  font-size: 2.2rem;
  font-weight: lighter;
}

body.single-locations .full-callout {
  font-size: 1.9rem;
  font-weight: lighter;
  background-size: cover;
  position: relative;
}

body.single-locations .full-callout h2:after {
  content: " ";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #f4333b;
  margin-top: 24px;
  margin-left: unset;
  margin-right: unset;
}

body.single-locations#inside-page .full-callout {
  font-size: 1.9rem;
  font-weight: lighter;
}

body.single-locations#inside-page .full-callout h2:after {
  content: " ";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #f4333b;
  margin-top: 24px;
  margin-left: unset;
  margin-right: unset;
}

.single-locations .full-callout .cta-mobile-bg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  z-index: 0;
}

.single-locations .full-callout {
  padding: 140px 30px !important;
  background-position: 50% !important;
}

.single-locations #inside-page .full-callout .container {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-locations .large-cta-callout .callout-text {
  background-color: rgba(7, 29, 52, 0.9);
  text-align: left;
  padding: 40px;
  max-width: 540px;
  margin: 0px;
}

.single-locations .full-callout h2 {
  font-size: 2.8rem;
  font-weight: lighter;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 700px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1.5;
  position: relative;
}

.single-locations .large-cta-callout .callout-text h2:before {
  content: " ";
  display: block;
  height: 40px;
  width: 9px;
  background-color: #15b2d2;
  position: absolute;
  top: 5px;
  left: -40px;
}

.single-locations .locations-cta-callout .callout-text p {
  font-size: 2rem;
  line-height: 1.5;
  text-transform: none;
  max-width: 100%;
  color: #ccc;
  margin: 0 0 10px;
}

.single-locations .tel:hover {
  text-decoration: underline;
}

.single-locations .tel {
  color: #15b2d2;
  text-transform: uppercase;
  margin-top: 15px;
  display: inline-block;
  font-size: 2.2rem;
  text-decoration: none;
}

.single-locations .icon-phone:before {
  content: "\e900";
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.single-locations .locations-cta-callout .callout-text p strong {
  font-weight: 700;
}

.page-template-template-team #inside-hero {
  height: 330px;
}

#team_filter {
  padding-left: 20px;
  padding-right: 20px;
}

#team_filter input[type=text] {
  width: calc(100% - 29px);
  padding: 7px 10px;
  font-weight: 400;
}

#team_filter span {
  display: inline-block;
  margin: 0 10px 3px;
  color: #fff;
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 700;
}

#team_filter select {
  width: 100%;
  margin-bottom: 5px;
}

#team_filter .btn {
  position: relative;
  padding: 6px 13px 6px 13px;
  border-radius: 1px;
  font-weight: 700;
}

#team_filter input[type=text] {
  border-radius: 4px;
  border-width: 0;
}

.page-template-template-team #main-content > .container {
  padding-top: 90px;
  padding-bottom: 30px;
}

.page-template-template-team .team-quarters .quarters {
  text-align: center;
}

body.page-template-template-team #main-content.leadership .team-quarters h2 {
  font-size: 2rem;
  font-weight: 700;
  border-width: 0;
  margin-bottom: 5px;
}

.page-template-template-team .team-quarters .quarters a:hover {
  text-decoration: underline;
}

.page-template-template-team .team-quarters .quarters a {
  text-decoration: none;
  color: #297994;
}

.page-template-template-team #main-content.leadership .team-quarters {
  color: #666;
}

.page-template-template-team #main-content.leadership .team-quarters .quarters > article .title {
  margin-top: 0;
  color: #666;
}

.page-template-template-team .team-quarters .quarters article .city-loc {
  font-weight: 700;
}

.page-template-template-team .team-quarters .quarters article .city-loc a.tel {
  display: inline-block;
  margin-top: 4px;
  color: #666;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 400;
}

.transcript-container.flex-transcript a.transcript {
  color: #000;
}

.transcript-container.active .transcript-copy {
  position: static;
  background-color: rgba(255, 255, 255, 0.8);
}

section:not(.testimonial) .transcript-copy {
  height: 300px;
}

.tableItem form[name=inline_location] {
  margin-bottom: 20px;
}

.tableItem form[name=inline_location] label {
  display: none;
}

.tableItem form[name=inline_location] select {
  display: block;
  max-width: 200px;
  margin-bottom: 7px;
  background-color: #fff;
  border: 1px solid #C0C0C0;
  border-radius: 8px;
  padding: 9px 15px;
}

footer#footer .bottom .container .copy-disclaimer ul,
footer#footer .bottom .container .copy-disclaimer ol,
footer#footer .bottom .container .copy-disclaimer blockquote,
footer#footer .bottom .container .copy-disclaimer p {
  margin-bottom: 15px;
}

footer#footer .bottom .container .copy-disclaimer,
footer#footer .bottom .container .copy-disclaimer a {
  font-size: 1.3rem;
}

footer#footer .bottom .copyright {
  margin-bottom: 20px;
  width: 100%;
}

.single-newsroom #inside-hero-text .heading {
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.single-newsroom #inside-hero-text {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 105px;
}

.single-newsroom #main-content:not(.with-hero-bg) {
  margin-top: -80px;
}

.footer-fdic > img {
  display: inline-block;
  width: 19px;
  height: 14px;
  margin-left: 15px;
  position: relative;
  top: 1px;
}

.desktop-inline-search.search.active {
  display: none;
}

section.form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.nav-active {
  padding-top: 60px;
}

.nav-active #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

body .tablepress td {
  font-size: 1.6rem;
}

body .module .tablepress.small-table-text th * {
  margin-bottom: 0;
}

body .module .tablepress.small-table-text th *,
body .module .tablepress.small-table-text td *,
body .module .tablepress.small-table-text th,
body .module .tablepress.small-table-text td {
  font-size: 1.4rem;
}

body .module .tablepress.large-table-text th *,
body .module .tablepress.large-table-text td *,
body .module .tablepress.large-table-text th,
body .module .tablepress.large-table-text td {
  font-size: 2rem;
}

.footer-link-priv,
.footer-link-access {
  display: inline-block;
  margin-left: 7px;
}

footer#footer .bottom .copyright a.footer-link-priv:hover,
footer#footer .bottom .copyright a.footer-link-access:hover {
  color: #000;
}

body.page-template-template-team #inside-hero .filters {
  max-width: 185px;
  margin: 0 auto;
}

.accordionItem .accordionCopy > ul,
.accordionItem .accordionCopy > ol,
.accordionItem .accordionCopy > p {
  margin-bottom: 15px;
}

.accordionItem .accordionCopy > ul:last-child,
.accordionItem .accordionCopy > ol:last-child,
.accordionItem .accordionCopy > p:last-child {
  margin-bottom: 0;
}

.icons .icon-card .content {
  padding-top: 8px;
}

.icons .icon-card .content h3 {
  line-height: 2.2rem;
}

body.search {
  display: block !important;
}

body.search > .wrapper > .container {
  padding: 60px 20px;
  text-align: left;
  max-width: 992px;
}

.search-post {
  margin-bottom: 40px;
}

body.search .posts {
  text-align: left;
}

#main-content .inline-team-image {
  max-width: 196px;
  width: 100%;
  margin: 20px 30px 20px auto;
  float: left;
}

.page-template-template-personal-finances .calculator {
  text-align: left;
}

.page-template-template-personal-finances .calculator legend {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-template-template-personal-finances .calculator form {
  font-size: 18px;
}

.page-template-template-personal-finances .calculator fieldset {
  border-width: 0;
  margin: 0 0 20px;
  max-width: 781px;
  padding: 0;
  padding-right: 0;
}

.page-template-template-personal-finances .calculator fieldset label {
  margin-bottom: 10px;
  display: inline-block;
}

.page-template-template-personal-finances .calculator input[type=radio] {
  margin-right: 15px;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  border: 1px solid #969696;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
  position: relative;
  top: 5px;
  background-color: #fff;
}

.page-template-template-personal-finances .calculator input[type=radio]:checked {
  outline: unset !important;
}

.page-template-template-personal-finances .calculator input[type=radio]:checked:before {
  background-color: #969696;
  content: " ";
  display: inline-block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page-template-template-personal-finances .fieldset-row:nth-child(even) {
  background-color: #F4F5F8;
}

.page-template-template-personal-finances .calculator .fieldset-heading {
  background-color: #D3EDF7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #000;
  font-weight: 600;
  margin-top: 12px;
}

.page-template-template-personal-finances .calculator fieldset .fieldset-row label {
  margin-bottom: 0;
}

.page-template-template-personal-finances .calculator fieldset .fieldset-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D8D9DB;
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-template-template-personal-finances .fieldset-heading-stack span,
.page-template-template-personal-finances .fieldset-row label span {
  display: block;
}

.page-template-template-personal-finances .fieldset-row > span:first-child {
  width: 80px;
  text-align: center;
}

.page-template-template-personal-finances .fieldset-row > span {
  display: inline-block;
}

.page-template-template-personal-finances .calculator .fieldset-row input[type=radio] {
  margin-right: 0;
}

.page-template-template-personal-finances .calculator label[for=submit] {
  text-indent: -99999px;
  border-top: 1px solid #D8D9DB;
  display: block;
  margin: 50px 0 36px;
  height: 0;
  font-size: 0;
}

.page-template-template-personal-finances .calculator input[name=submit] {
  margin-bottom: 35px;
}

.page-template-template-personal-finances .form-footer {
  font-size: 14px;
  margin-top: 20px;
}

.page-template-template-personal-finances .result {
  background-color: #F4F5F8;
  border: 1px solid #EBEBEB;
  margin-bottom: 50px;
  margin-top: 20px;
  padding: 40px;
  display: none;
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

.page-template-template-personal-finances .result-img img {
  width: 100%;
  height: auto;
}

.page-template-template-personal-finances .result-img {
  width: 311px;
  margin-bottom: 20px;
}

.page-template-template-personal-finances .result h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.page-template-template-personal-finances .result p {
  font-size: 18px;
}

.page-template-template-personal-finances .reset-quiz {
  font-weight: 600;
}

.page-template-template-personal-finances .highlight-result.result {
  border-color: #297994;
}

.page-template-template-personal-finances .result.show-result {
  display: block;
  opacity: 1;
}

.page-template-template-personal-finances .result.active {
  display: block;
  opacity: 1;
}

.page-template-template-personal-finances .result-guide {
  margin-bottom: 30px;
  color: #0C2B4A;
}

.page-template-template-personal-finances .result-guide > p {
  margin-bottom: 0;
  padding: 5px 10px;
  border: 1px solid #EBEBEB;
}

.page-template-template-personal-finances .result-guide p.active .score-type {
  border-right: 1px solid #666;
}

.page-template-template-personal-finances .result-guide p.active {
  background-color: #EBEBEB;
  border-color: #297994;
}

.page-template-template-personal-finances .score-type {
  display: inline-block;
  width: 85px;
  font-weight: 700;
  border-right: 2px solid #EBEBEB;
  margin-right: 7px;
  text-align: right;
  padding-right: 13px;
}

.page-template-template-personal-finances #main-content > .container .lets-talk-personal-finance p {
  line-height: 1;
}

.page-template-template-personal-finances .lets-talk-personal-finance {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #EBEBEB;
}

.page-template-template-personal-finances .lets-talk-bottom {
  text-align: center;
  margin-top: 30px;
}

.page-template-template-personal-finances .lets-talk-bottom .phone-icon:after {
  top: 6px;
}

.page-template-template-personal-finances .sep {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
  width: 1px;
  color: #212529;
}

.page-template-template-personal-finances .result h3 {
  font-size: 3rem;
}

.page-template-template-personal-finances #main-content .lets-talk-personal-finance h2:after {
  display: none;
}

.page-template-template-personal-finances #main-content .lets-talk-personal-finance h2 {
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-size: 2.2rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #0c2b4a;
}

body.page-template-template-personal-finances hr {
  margin-top: 16px;
  margin-bottom: 16px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.page-template-template-personal-finances #main-content h1 {
  text-transform: uppercase;
  margin: 0 auto 15px;
}

body.page-template-template-personal-finances #main-content .container .container {
  padding: 0;
}

body.page-template-template-personal-finances #main-content {
  padding-left: 20px;
  padding-right: 20px;
}

body.page-template-template-personal-finances .general.one-column {
  padding: 0;
}

.page-template-template-personal-finances #breadcrumbs .container {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
body footer#footer .container .top .column.first-nav-col a{
  text-transform: uppercase;
}
.hero:not(.hero-position-1) .hero-container .full-hero-container .content{
  background-color:transparent; 
}
.cards.background-color-navy,
.general.background-color-navy,
.hero-container .full-hero-container .content.navy-bg{
  background-color: #0B2A4A;
  color:#fff;
}
.general.background-color-navy a{
  color: #fff;
}
.cards.background-color-navy .container .card h3,
.cards.background-color-navy .container .card{
  color:#fff;
}
.cards.background-color-light-blue,
.general.background-color-light-blue,
.hero-container .full-hero-container .content.light-blue-bg{
  background-color: #DAF8F8;
}
.cards.background-color-grey,
.general.background-color-grey,
.hero-container .full-hero-container .content.grey-bg{
  background-color: #efefef;
}
.cards.background-color-navy .container .card,
.cards.background-color-light-blue .container .card,
.cards.background-color-grey .container .card{
  background-color: transparent;
}
.cards .container.card-intro{
  text-align: center;
  padding-bottom: 60px;
  padding-top: 40px;
}
.page-template-template-meet-alerus-landing-page .cards.background-color-navy .container .card{
  color:#fff;
}
.page-template-template-meet-alerus-landing-page .cards .container .card{
  color: #0B2A4A;
}
.page-template-template-meet-alerus-landing-page .general{
  padding-top: 70px;
  padding-bottom: 70px;
}
.page-template-template-meet-alerus-landing-page .card-type-images.cards .card:last-child,
.page-template-template-meet-alerus-landing-page .card-type-images.cards .card{
  margin-bottom: 0;
  padding-bottom: 20px;
} 
.page-template-template-meet-alerus-landing-page .card-type-images{ 
  padding-top: 60px;
  padding-bottom: 10px;
}

#meet-alerus-header-footer footer#footer .bottom .column.logo{
  padding-right: 15px;
  margin-bottom: 0;
  position: relative;
  top: 3px;
}
#meet-alerus-header-footer .footer-logo{
  margin-bottom: 0;
}
#meet-alerus-header-footer footer{
  padding-top: 40px;
  padding-bottom: 20px;
}
#meet-alerus-header-footer footer#footer .bottom .copyright{
  border-width: 0;
  margin-bottom: 0;
}
.page-template-template-meet-alerus-landing-page .logo-reversed{
  width: 126px;
  height: 24px;
  position: absolute;
  top: 24px;
  left: 60px;
  z-index:1000;
}
.page-template-template-meet-alerus-landing-page .logo-reversed a{
  display: block;
}
.page-template-template-meet-alerus-landing-page .logo-reversed img{
  width: 100%;
  height: auto;
}
#meet-alerus-header-footer .hero-position-1 .hero-container .full-hero-container .content{
  background-color: transparent;
}
.page-template-template-meet-alerus-landing-page .cards .container{
  padding-left: 4px;
  padding-right: 4px;
}
.page-template-template-meet-alerus-landing-page .cards .container,
.page-template-template-meet-alerus-landing-page .general .container{
  max-width: 1100px;
}
body h2.card-heading{
  font-size: 3.6rem;
}
.cards .container .card .content.align-left-overlay h3{
  color: #fff;
  margin-bottom: 0;
}
.cards .container .card .content.align-left-overlay{
  position: relative;
  top:-68px;
  color:#fff;
  text-align-last: left;
  padding-left: 20px;
}
a.card:hover{
  -webkit-transform: scale(1.03) translateZ(0);
  transform: scale(1.03) translateZ(0);
}
@media screen and (max-width:767px){
  .page-template-template-meet-alerus-landing-page#meet-alerus-header-footer .hero-position-1 .hero-container .full-hero-container .content .hero-swoosh{
    display: none;
  }
  .page-template-template-meet-alerus-landing-page#meet-alerus-header-footer .hero-position-1 .hero-container .full-hero-container .content{
    padding-top: 74px;
  }
  .page-template-template-meet-alerus-landing-page#meet-alerus-header-footer .hero-position-1 .hero-container .full-hero-container .content *:not(.btn){
    color: #212529;
  }
}

@media screen and (min-width: 500px) {
  body.page-template-template-team #inside-hero .filters {
    max-width: 350px;
  }
  .newsroom-template-default #main-content .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .newsroom-template-default #main-content .flex .content-right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 196px);
            flex: 1 1 calc(100% - 196px);
  }
}
@media screen and (min-width: 600px) {
  .single-financial_advice .gform_wrapper .gform_footer .btn {
    position: relative;
    top: 7px;
    padding: 8px 30px;
  }
}
@media screen and (min-width: 768px) {
  .page-template-template-meet-alerus-landing-page .copyright .copy-col{
    flex-grow:1;
  }
  .hero .container .right {
    max-width: 542px;
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
  .hero .container .left {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
  .hero-container.image-right,
  .hero-container.image-left {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .hero-container.image-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .hero-container.image-right .right {
    padding-left: 30px;
  }
  .hero-container.image-left .right {
    padding-right: 30px;
  }
  .hero-container.blue .content {
    max-width: 878px;
    margin-left: auto;
    margin-right: auto;
  }
  .full-right .full-hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .hero-container.image {
    height: 350px;
  }
  .hero-container .hero-background-image {
    padding-top: 350px;
  }
  .icon-card {
    max-width: 230px;
  }
  section.cta.image-orientation-left .container,
  div.checklist-cta.image-orientation-left .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  div.checklist-cta.image-orientation-left .container {
    max-width: 1100px;
    padding-top: 20px;
  }
  section.cta.image-orientation-left .right,
  div.checklist-cta.image-orientation-left .right {
    padding-right: 40px;
  }
  section.cta.image-orientation-right .container,
  div.checklist-cta.image-orientation-right .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.cta.image-orientation-right .right,
  div.checklist-cta.image-orientation-right .right {
    padding-left: 40px;
  }
  section.cta .left,
  section.cta .right,
  div.checklist-cta .left,
  div.checklist-cta .right {
    width: 50%;
  }
  .cards .container {
    gap: 20px;
  }
  .add-border .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .add-border .column:first-child {
    border-bottom-width: 0;
    border-right: 1px solid #C0C0C0;
    padding-right: 20px;
  }
  .comparison .container .comparisonTable {
    gap: 20px;
  }
  .comparison .container .comparisonTable .tableItem {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  section.checklist ul.checklist {
    -webkit-columns: 3;
        -moz-columns: 3;
            columns: 3;
    margin-bottom: 30px;
  }
  .pre-footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 882px;
  }
  .pre-footer .container .column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 16px);
            flex: 1 1 calc(50% - 16px);
  }
  .pre-footer-img {
    max-width: 339px;
    height: auto;
  }
  .pre-footer.image-content .container .column:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 300px;
            flex: 1 1 300px;
  }
  .pre-footer.advisor .advisor-group .column{
    width: auto;
    max-width: 370px;
  }
  .pre-footer.advisor .advisor-group{
    display: flex;
    justify-content: flex-start;
    flex-wrap:wrap;
  }
  .pre-footer.advisor {
    padding-bottom: 40px;
  }
  .pre-footer .container{
    display: block;
  }
  .testimonial .slide {
    text-align: center;
  }
  .testimonial .slide .slide-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 820px;
    margin: auto;
    text-align: left;
  }
  .testimonial .slide .slide-container .image {
    width: 250px;
  }
  .testimonial .slide .slide-container .content {
    width: 50%;
    max-width: 50%;
    padding-left: 60px;
  }
  .testimonial .image > img {
    width: 100%;
    height: auto;
  }
  .testimonial .wistia {
    width: 50%;
    max-width: 50%;
  }
  .posts .columns,
  .cards .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .posts .columns > div,
  .posts .columns > a,
  .cards .container .card {
    width: auto;
    max-width: 33%;
    min-width: 100px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.33333% - 15px);
            flex: 1 1 calc(33.33333% - 15px);
  }
  .cards .container {
    max-width: 1330px;
  }
  .cards .container .card {
    border-bottom-width: 0;
    padding-bottom: 45px;
  }
  .cards .card .btn,
  .cards .card .text-link {
    position: absolute;
    bottom: 16px;
    left: 8px;
  }
  .cards .card .text-link {
    bottom: 24px;
  }
  .transactions-modulenone .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .transactions-modulenone .transaction {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .transactions-modulenone {
    padding-top: 20px;
    padding-bottom: 50px;
  }
  section.checklist {
    padding-bottom: 50px;
    margin-bottom: 0;
  }
  section.checklist .checklist-cta .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 10px;
  }
  section.checklist .checklist-cta {
    padding-top: 20px;
  }
  section.checklist .checklist-cta .left > * {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 520px;
  }
  div.checklist-cta.image-orientation-right .right {
    text-align: right;
  }
  div.checklist-cta.image-orientation-right .right img {
    margin-left: auto;
    margin-right: 0;
  }
  section.checklist .checklist-cta .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .copy-col {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .social-col {
    margin-left: 40px;
    position: relative;
    top: -4px;
  }
  body footer#footer > .container,
  body footer#footer .bottom > .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  footer#footer .container .bottom,
  footer#footer .container .top,
  footer#footer .bottom .copyright,
  footer#footer .bottom .container .copy-disclaimer {
    padding-left: 0;
    padding-right: 0;
  }
  footer#footer .social a:last-child {
    margin-right: 6px;
  }
  footer#footer .first-col {
    margin-right: 10%;
  }
  .posts {
    padding-bottom: 60px;
  }
  .posts .container > h2 {
    margin-bottom: 30px;
  }
  .icons {
    padding-top: 30px;
  }
  .testimonial {
    padding-bottom: 80px;
  }
  .general.pre-footer.content-form .container .column .module:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .page-template-template-personal-finances #breadcrumbs,
  .single-locations #breadcrumbs,
  .single-newsroom #breadcrumbs,
  .tax-newsroom_taxonomy #breadcrumbs,
  .post-type-archive-newsroom #breadcrumbs,
  .single-team #breadcrumbs,
  .page-template-template-team #breadcrumbs,
  .single-financial_advice #breadcrumbs,
  .tax-financial_advice_taxonomy #breadcrumbs,
  .post-type-archive-financial_advice #breadcrumbs {
    display: block;
  }
  .single-financial_advice #main-content,
  .tax-financial_advice_taxonomy #main-content,
  .post-type-archive-financial_advice #main-content {
    margin-top: -120px;
  }
  .single-financial_advice .advice-post,
  .tax-financial_advice_taxonomy .advice-post,
  .post-type-archive-financial_advice .advice-post {
    text-align: left;
    padding-left: 100px;
    padding-right: 100px;
  }
  .single-financial_advice .advice-post.has-thumb,
  .tax-financial_advice_taxonomy .advice-post.has-thumb,
  .post-type-archive-financial_advice .advice-post.has-thumb {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 55px 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single-financial_advice .advice-post .thumb,
  .tax-financial_advice_taxonomy .advice-post .thumb,
  .post-type-archive-financial_advice .advice-post .thumb {
    width: 40%;
    max-width: 391px;
  }
  .single-financial_advice .article-content,
  .tax-financial_advice_taxonomy .article-content,
  .post-type-archive-financial_advice .article-content {
    padding-left: 55px;
    width: 60%;
  }
  .sharethis a {
    font-size: 1.5rem;
  }
  .three-step {
    padding: 40px;
  }
  .three-step h2 {
    text-align: left;
    font-size: 2rem;
  }
  .three-step .steps {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-left: -18px;
    width: calc(100% + 33px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .three-step .step {
    padding: 30px 25px 30px 85px;
    width: 33.3333%;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 1px solid #d7d7d7;
    border-top-width: 0;
    border-bottom-width: 0;
  }
  .three-step .step:before {
    left: 35px;
  }
  .three-step .step:first-child {
    border-left-width: 0;
    padding-left: 65px;
  }
  .three-step .step:first-child:before {
    left: 15px;
  }
  .three-step .step:nth-child(3n+1) {
    border-left-width: 0;
    padding-left: 65px;
  }
  .three-step .step:nth-child(3n+1):before {
    left: 15px;
  }
  .page-template-template-team #main-content.leadership .team-quarters .quarters {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-template-template-team #main-content.leadership article {
    width: auto;
    max-width: none;
    overflow: hidden;
    margin: 0;
    border-bottom: none;
    position: relative;
    text-align: left;
  }
  body.page-template-template-team #main-content {
    margin-bottom: 70px;
  }
  body.page-template-template-team #main-content.leadership .team-quarters h2 {
    text-align: left;
  }
  .page-template-template-team #main-content.leadership .team-quarters .quarters > article h3,
  .page-template-template-team #main-content.leadership .team-quarters .quarters > article .title,
  .page-template-template-team .team-quarters .quarters article .city-loc,
  .page-template-template-team #main-content.leadership .team-quarters .quarters > article .email {
    text-align: left;
    padding-left: 0;
  }
  .page-template-template-team .leader-thumb {
    margin-left: 0;
  }
  .page-template-template-team .leader-thumb {
    width: 100%;
    height: auto;
    min-height: 280px;
  }
  .post-type-archive-newsroom #main-content .container .newsroom-group:first-child {
    border-right: 1px solid #d7d7d7;
  }
  .post-type-archive-newsroom #main-content .container .newsroom-group {
    width: 50%;
    position: relative;
    padding-bottom: 130px;
  }
  #main-content .newsroom-group article {
    padding-left: 50px;
    padding-right: 50px;
  }
  .post-type-archive-newsroom #main-content .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .newsroom-all-link:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -12px;
  }
  .newsroom-all-link:hover {
    text-decoration: underline;
  }
  .newsroom-all-link {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: calc(100% - 100px);
    text-align: left;
    padding-left: 50px;
    padding-top: 0;
    line-height: 1.2;
  }
  .post-type-archive-newsroom .newsroom-all-link {
    width: auto;
    text-align: left;
  }
  .single-locations .back,
  .single-locations .back-link {
    text-align: left;
  }
  .single-locations .slider {
    margin-bottom: 36px;
  }
  .single-locations .half-flex {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .single-locations .location.half {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .single-locations .location.half:nth-child(2n) {
    margin-right: 0;
  }
  .single-locations .team-quarters .quarters {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .single-locations .team-quarters .quarters article {
    width: 250px;
    margin-right: 30px;
    margin-left: 0;
  }
  .cards .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cards .container .card:last-child {
    margin-bottom: 30px;
  }
  .post-type-archive-locations .blue-texture-text input[type=text] {
    width: 280px;
  }
}
@media screen and (min-width: 930px) {
  section:not(.testimonial) .wistia_responsive_padding {
    padding-top: 0 !important;
    height: 495px !important;
  }
}
@media screen and (min-width: 992px) {
  #meet-alerus-header-footer .hero:not(.hero-position-1) .hero-container.full-left .full-hero-container, 
  #meet-alerus-header-footer .hero:not(.hero-position-1) .hero-container.full-right .full-hero-container{
    padding-bottom: 200px;
    padding-top: 200px;
  }
  #meet-alerus-header-footer .hero.hero-position-1 .hero-container.full-left .full-hero-container, 
  #meet-alerus-header-footer .hero.hero-position-1 .hero-container.full-right .full-hero-container{
    padding-bottom: 160px;
    padding-top: 130px;
  }
  .page-template-template-meet-alerus-landing-page .hero.hero-position-1 .hero-container.full-left .full-hero-container, 
  .page-template-template-meet-alerus-landing-page .hero.hero-position-1 .hero-container.full-right .full-hero-container{
      max-width: 1290px; 
  }
  .hero:not(.hero-position-1) .hero-container.full-left .full-hero-container .content, 
  .hero:not(.hero-position-1) .hero-container.full-right .full-hero-container .content {
    padding-top: 0;
  }
  .hero:not(.hero-position-1) .hero-container.full-left .full-hero-container, 
  .hero:not(.hero-position-1) .hero-container.full-right .full-hero-container{
    align-items: center;
  }
  .hero-container.image {
    height: 350px;
  }
  .hero-container .hero-background-image {
    padding-top: 450px;
  }
  .hero-container.full-left .full-hero-container,
  .hero-container.full-right .full-hero-container {
    padding-bottom: 30px;
    padding-top: 30px;
    min-height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-container.full-left .full-hero-container .content,
  .hero-container.full-right .full-hero-container .content {
    max-width: 550px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 45px;
  }
  .hero-container.full-left .hero-background-image,
  .hero-container.full-right .hero-background-image {
    padding: 0;
    height: 100%;
  }
  .hero-container .full-hero-container {
    margin: 0;
  }
  .hero-container.full-left .btn,
  .hero-container.full-right .hero-text-link {
    margin-bottom: 40px;
  }
  .hero.blue-bg {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .hero-container.blue {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .home .hero.blue-bg,
  .home .hero.blue-bg .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .home .hero.blue-bg .hero-container {
    padding-top: 45px;
  }
  .home .hero.blue-bg .hero-background-image,
  .home .hero.blue-bg .hero-background-image {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .general .container.smallright .column:first-of-type {
    padding-right: 100px;
    padding-left: 15px;
  }
  .general .container.smallright .column:last-of-type {
    padding-left: 20px;
    padding-right: 20px;
  }
  .comparison .container .comparisonTable .tableItem .content .cta {
    margin-top: 0;
  }
  .pre-footer .column.first-prefooter-column .module {
    width: 339px;
  }
  .pre-footer .container {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .pre-footer.image-content .container .column:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 339px;
            flex: 1 1 339px;
  }
  .pre-footer.image-content .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pre-footer.centered .container {
    max-width: 695px;
  }
  .pre-footer.advisor .container {
    max-width: 992px;
  }
  .pre-footer.advisor .column {
    padding-right: 30px;
  }
  .pre-footer.advisor .column:last-child {
    padding-right: 0;
  }
  .pre-footer.advisor .advisor-group.num-advisors-3 .column{
    flex:1 1 33.333333%;
  }
  .pre-footer.advisor .advisor-group.num-advisors-4 .column{
    flex: 1 1 calc(25% - 9px);
    display: block;
  }
  .pre-footer.advisor .advisor-group.num-advisors-4 .advisor-container{
    padding-top: 20px;
    padding-left: 10px;
  }
  footer#footer .container .top {
    padding-bottom: 70px;
    padding-top: 40px;
  }
  body footer#footer .container .top .column.first-nav-col,
  body footer#footer .container .top .column.mobile-half-column {
    width: 200px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
  body footer#footer .container .top .column.second-nav-col {
    width: 170px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
  }
  .single-financial_advice #inside-hero,
  .tax-financial_advice_taxonomy #inside-hero,
  .post-type-archive-financial_advice #inside-hero {
    height: 220px;
  }
  .single-financial_advice #inside-hero h1,
  .tax-financial_advice_taxonomy #inside-hero h1,
  .post-type-archive-financial_advice #inside-hero h1 {
    padding-top: 0;
  }
  .page-template-template-personal-finances #inside-hero-text,
  .post-type-archive-newsroom #inside-hero-text,
  .single-team #inside-hero-text,
  .page-template-template-team #inside-hero-text,
  .single-financial_advice #inside-hero-text,
  .tax-financial_advice_taxonomy #inside-hero-text,
  .post-type-archive-financial_advice #inside-hero-text {
    padding: 30px 0 60px;
  }
  .page-template-template-personal-finances #inside-hero-text div,
  .post-type-archive-newsroom #inside-hero-text div,
  .single-team #inside-hero-text div,
  .page-template-template-team #inside-hero-text div,
  .single-financial_advice #inside-hero-text div,
  .tax-financial_advice_taxonomy #inside-hero-text div,
  .post-type-archive-financial_advice #inside-hero-text div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-template-template-personal-finances #main-content,
  .post-type-archive-newsroom #main-content,
  .single-team #main-content,
  .page-template-template-team #main-content,
  .single-financial_advice #main-content,
  .tax-financial_advice_taxonomy #main-content,
  .post-type-archive-financial_advice #main-content {
    margin-top: -90px;
  }
  .page-template-template-personal-finances #main-content:not(.with-hero-bg),
  .post-type-archive-newsroom #main-content:not(.with-hero-bg),
  .single-team #main-content:not(.with-hero-bg),
  .page-template-template-team #main-content:not(.with-hero-bg),
  .single-financial_advice #main-content:not(.with-hero-bg),
  .tax-financial_advice_taxonomy #main-content:not(.with-hero-bg),
  .post-type-archive-financial_advice #main-content:not(.with-hero-bg) {
    margin-top: -110px;
  }
  body.single-financial_advice #main-content.financial-single {
    margin-bottom: 30px;
  }
  body.page-template-template-personal-finances #main-content .container,
  body.single-financial_advice #main-content .container {
    padding: 70px 160px;
  }
  .single-newsletter #inside-page .full-callout,
  .single-financial_advice #inside-page .full-callout {
    padding: 190px 30px 164px;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
  .single-newsroom .full-callout p,
  .single-newsroom .full-callout h2,
  .single-financial_advice .full-callout p,
  .single-financial_advice .full-callout h2,
  .single-newsroom .disclaimer-text,
  .single-financial_advice .disclaimer-text {
    text-align: left;
  }
  .single-newsroom .full-callout h2 {
    margin-left: 0;
  }
  .three-step {
    padding: 80px 40px;
  }
  .three-step .container {
    padding: 0 35px;
  }
  body.single-team #main-content .container {
    padding: 70px 160px;
  }
  .page-template-template-personal-finances #inside-hero,
  .post-type-archive-newsroom #inside-hero,
  .single-team #inside-hero {
    height: 250px;
  }
  body.post-type-archive-locations .options {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  body.post-type-archive-locations .moneypass-desktop a img {
    vertical-align: middle;
    display: inline-block;
  }
  body.post-type-archive-locations .moneypass-desktop a {
    text-decoration: none;
    color: #297994;
  }
  body.post-type-archive-locations .moneypass-desktop {
    display: block;
    display: inline-block;
  }
  body.post-type-archive-locations .flex-map {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  body.post-type-archive-locations .flex-map aside {
    width: 45%;
    padding-right: 30px;
  }
  #location-map {
    width: 55%;
  }
  body.post-type-archive-locations .moneypass-mobile {
    display: none;
  }
  body.post-type-archive-locations #main-content .container {
    padding: 10px 80px 70px 80px;
  }
  body.single-financial_advice #main-content.financial-single {
    margin-bottom: 30px;
  }
  .single-locations #main-content .container {
    padding: 70px 160px;
  }
  .single-locations .slider .slide {
    height: 440px;
  }
  .single-locations .slick-next {
    right: -80px;
  }
  .single-locations .slick-prev {
    left: -80px;
  }
  .single-locations .full-callout .cta-mobile-bg {
    display: none;
  }
  #team_filter input[name=team_name] {
    min-width: 120px;
  }
  #team_filter input[type=text] {
    margin-bottom: 0;
  }
  #team_filter span {
    margin: 0 10px;
  }
  #team_filter select {
    margin-bottom: 0;
  }
  #team_filter button {
    margin-left: 5px;
  }
  body.page-template-template-team #main-content .container {
    padding-left: 100px;
    padding-right: 100px;
  }
  #team_filter input[type=text] {
    width: calc(100% - 29px);
    padding: 7px 10px;
  }
  .page-template-template-team #inside-hero-text div {
    position: relative;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page-template-template-team #inside-hero-text #team_filter .btn {
    padding: 6px 10px 6px 10px;
  }
  .page-template-template-team #inside-hero-text #team_filter select {
    margin-left: 10px;
  }
  .page-template-template-team .or-span {
    position: relative;
    left: 10px;
  }
  .page-template-template-team #inside-hero h1 {
    margin-bottom: 18px;
  }
  header#header .main .container .utility-nav li a {
    font-size: 1.4rem;
    width: 100%;
    display: block;
    line-height: 1.2;
  }
  header#header .main .container .utility-nav li.menu-item-has-children:hover .sub-menu li {
    display: block;
  }
  header#header .main .container .utility-nav li.menu-item-has-children:hover .sub-menu {
    left: -40px;
    top: 37px;
    min-width: 215px;
    max-width: 215px;
  }
  header#header .main.menu-bg .container {
    padding-left: 0;
    min-height: 44px;
  }
  .single-newsroom #inside-hero-text {
    padding-top: 120px;
    padding-bottom: 162px;
  }
  .single-newsroom #main-content:not(.with-hero-bg) {
    margin-top: -110px;
  }
  .single-newsroom #main-content .container {
    padding: 70px 160px;
  }
  .desktop-inline-search {
    right: 110px;
  }
  .desktop-inline-search.search.active {
    display: block;
  }
  .desktop-inline-search form,
  .desktop-inline-search input[type=search] {
    width: 100%;
  }
  body .container > #searchButton,
  body.search .container > #searchButton {
    display: none;
  }
  .post-type-archive-financial_advice #breadcrumgs {
    margin-top: 19px;
  }
  .post-type-archive-financial_advice #main-content:not(.with-hero-bg) {
    margin-top: -60px;
  }
}
@media screen and (min-width: 1100px) {
  .hero-container.image-left .left {
    padding-left: 60px;
  }
  .hero-container.image-right .left {
    padding-right: 60px;
  }
  .testimonial .container {
    background-image: none;
    padding: 60px 20px;
  }
  .testimonial .slide .slide-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .testimonial .image {
    margin: 0;
  }
  .testimonial .container:before,
  .testimonial .container:after {
    content: " ";
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    background: url(../img/testimonial-swoosh-l.svg) no-repeat 0 0;
    width: 197px;
    height: 48px;
    z-index: 1;
  }
  .testimonial .container:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 100px;
    width: 205px;
    height: 64px;
    background-image: url(../img/testimonial-swoosh-r.svg);
    opacity: 0.1;
  }
  .testimonial .slick-slider {
    position: relative;
    z-index: 2;
  }
  .testimonial .slick-arrow,
  .testimonial .slick-arrow button {
    bottom: -30px;
    right: 15px;
  }
  .testimonial .slick-prev {
    right: 45px;
  }
  .post-type-archive-newsroom #inside-hero,
  .single-team #inside-hero,
  .page-template-template-team #inside-hero,
  .single-financial_advice #inside-hero,
  .tax-financial_advice_taxonomy #inside-hero,
  .post-type-archive-financial_advice #inside-hero {
    height: 450px;
  }
  .post-type-archive-newsroom #inside-hero-text,
  .single-team #inside-hero-text,
  .page-template-template-team #inside-hero-text,
  .single-financial_advice #inside-hero-text,
  .tax-financial_advice_taxonomy #inside-hero-text,
  .post-type-archive-financial_advice #inside-hero-text {
    padding-top: 80px;
  }
  .single-newsroom #main-content.financial-content,
  .tax-newsroom_taxonomy #main-content.financial-content,
  .single-financial_advice #main-content.financial-content,
  .tax-financial_advice_taxonomy #main-content.financial-content,
  .post-type-archive-financial_advice #main-content.financial-content {
    margin-top: -230px;
    margin-bottom: -31px;
  }
  .single-financial_advice .full-callout {
    padding: 120px 30px;
  }
  body.single-team #main-content .container {
    padding: 70px 100px;
  }
  body.post-type-archive-newsroom #main-content:not(.with-hero-bg),
  body.single-team #main-content:not(.with-hero-bg),
  body.page-template-template-team #main-content:not(.with-hero-bg) {
    margin-top: -230px;
  }
  .page-template-template-personal-finances #inside-hero-text,
  .post-type-archive-newsroom #inside-hero-text {
    padding-top: 80px;
  }
  .single-newsroom #inside-hero-text,
  .tax-newsroom_taxonomy #inside-hero-text {
    padding: 60px 0 60px;
  }
  .single-newsroom #inside-hero,
  .tax-newsroom_taxonomy #inside-hero {
    height: 450px;
  }
  body.single-locations#inside-page .full-callout,
  body.single-locations .full-callout {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .single-newsroom #inside-hero-text {
    padding-bottom: 362px;
    padding-top: 100px;
  }
  .single-newsroom #inside-hero-text .heading {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1250px) {
  .mortgage-lp header#header {
    height: 62px;
  }
  .copyright {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }
  .copy-col {
    width: 700px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 700px;
            flex: 0 0 700px;
  }
  .menu-col {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .social-col {
    width: 183px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 183px;
            flex: 0 0 183px;
    text-align: right;
  }
  footer#footer .bottom .container .menu-policy-menu-container .menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer#footer .bottom .copyright {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .disclaimer-flex {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .single-financial_advice #inside-page .full-callout {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .three-step .step {
    padding: 50px 25px 50px 85px;
  }
  body.single-team #main-content .container {
    padding: 70px 190px;
  }
  .page-template-template-personal-finances #inside-hero,
  .post-type-archive-newsroom #inside-hero,
  .single-team #inside-hero {
    height: 450px;
  }
  body.single-newsroom .full-callout {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .single-newsroom #main-content:not(.with-hero-bg) {
    margin-top: -230px;
  }
}
@media screen and (min-width: 1400px) {
  .hero-slider-dots {
    position: absolute;
    bottom: 0;
  }
  section.cta.image-orientation-left .right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 700px;
            flex: 0 0 700px;
    padding: 0;
  }
  div.checklist-cta.image-orientation-left .right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 600px;
            flex: 0 0 600px;
    padding: 0;
  }
  section.cta.image-orientation-right .right,
  div.checklist-cta.image-orientation-right .right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 700px;
            flex: 0 0 700px;
    padding: 0;
    text-align: right;
  }
  div.checklist-cta.image-orientation-right .right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 600px;
            flex: 0 0 600px;
  }
  section.cta.image-orientation-right .right .cta-img,
  div.checklist-cta.image-orientation-right .right .cta-img {
    margin-right: 0;
    margin-left: auto;
  }
  section.cta .right > img {
    width: 648px;
    height: auto;
  }
  section div.checklist-cta .right > img {
    width: 542px;
    height: auto;
  }
}
@media screen and (min-width: 1500px) {
  .hero-container.image-left,
  .hero-container.image-right,
  .hero-container.blue,
  .hero-container .full-hero-container {
    max-width: 1330px;
  }
  .hero-container.full-left .full-hero-container,
  .hero-container.full-right .full-hero-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  header#header .main .container .utility-nav li.menu-item-has-children:hover .sub-menu {
    max-width: 250px;
    min-width: 250px;
    left: -60px;
  }
}