* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
  line-height: 1.5em;
  color: #595e7d;
  font-size: 12px;
}

h1,
h2,
h4,
h5,
h6 {
  color: #00063c;
  line-height: 1.3em;
}
h1 {
  line-height: 1em;
}

h2 {
  font-size: 160%;
}
h3 {
  color: #00063c;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

@keyframes principal_button_pressed {
  0% {
    transform: translate(0px, 0px);
    box-shadow: -4px 4px;
  }
  100% {
    transform: translate(-2px, 2px);
    box-shadow: -2px 2px;
  }
}

@keyframes principal_button_released {
  0% {
    transform: translate(-2px, 2px);
    box-shadow: -2px 2px;
  }
  100% {
    transform: translate(0px, 0px);
    box-shadow: -4px 4px;
  }
}

.primary_button,
.pure-button {
  display: inline-block;
  background-color: #61ff8c !important;
  color: #00063c !important;
  font-size: 120% !important;
  font-weight: bold !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  border: 2px solid #00063c !important;
  cursor: pointer !important;
  padding: 13px 20px !important;
  box-shadow: -4px 4px #00063c;
  text-transform: none !important;
  animation-name: principal_button_released;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.primary_button.white {
  background-color: white !important;
}

.primary_button.large {
  width: 100%;
}

.primary_button.centered {
  margin: auto;
}

.primary_button.small {
  padding: 4px 16px !important;
}

.primary_button:hover,
.primary_button:focus,
.pure-button:hover,
.pure-button:focus {
  animation-name: principal_button_pressed;
}

.primary_button.secondary {
  background-color: white !important;
  color: #595E7D !important;
  border: unset !important;
  box-shadow: unset !important;
}

#menuReactApp .primary_button {
  margin-top: 1px;
  padding: 3px 10px !important;
  font-size: 14px !important;
}

/* Edge case for React navigation button */
button[class*="MuiButtonBase-root"].primary_button {
  font-size: 0.875rem !important;
}

.bold-circle {
  /* Green #1 */
  height: 2em;
  width: 2em;
  background: #61ff8c !important;
  /* easyvest/darkblue */
  border: 2px solid #080f3d !important;
  box-sizing: border-box !important;
  box-shadow: -1px 1px 0px #080f3d !important;
  border-radius: 50% !important;
  padding: 3px !important;
  text-align: center !important;
}

.bold-circle.white {
  background-color: white !important;
}

.bold-circle.b-blue-3 {
  border-color: #a6adba !important;
  box-shadow: -1px 1px 0px #a6adba !important;
}

.bold-circle.space-right {
  margin-right: 1em;
}

.bold-circle.thick {
  border-width: 4px !important;
  box-shadow: -4px 4px 0px !important;
}

.faq-button {
  border-radius: 0px 4px 4px 0px !important;
  box-shadow: unset;
  animation-name: unset;
  border: unset !important;
  height: 48px;
}

.faq-button:hover,
.faq-button:focus,
.faq-button:active {
  box-shadow: unset;
  animation-name: unset;
}

#faq-article-div li, #faq-article-div p, #faq-article-div div {
  font-size: 16px !important;
  line-height: 24px;
}

#faq-article-div a,
a.blue {
  text-decoration: underline;
  color: inherit;
}

#faq-article-div a:hover,
a.blue:hover,
.ev-link:hover {
  color: #21b381;
}

.ev-link {
  color: #61ff8c;
}
a.light,
a.light:visited,
a.light:hover,
a.light:focus {
  color: #21b381;
}
.pure-img-responsive {
  max-width: 100%;
  height: auto;
}
.pure-table {
  margin: 0em auto;
}
.pure-table thead {
  text-align: center;
}
.ev-note {
  font-size: 90%;
  line-height: 1.5em;
  text-align: left;
}
.ev-white {
  color: #136c64 !important;
}
.justify {
  text-align: justify;
}
.is-left {
  text-align: left;
}
/*Video Wrapper for iframe to make embeded video fluid*/
.pure-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.pure-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img-center {
  margin: 1.5em auto;
}

/*
 * -- LAYOUT STYLES --
 * These are some useful classes which I will need
 */
.l-box {
  padding: 1em;
}

.l-box-lrg {
  padding: 2em;
  /*border-bottom: 1px solid rgba(0,0,0,0.1);*/
}

.is-center {
  text-align: center;
}
.center-container {
  position: relative;
}
.center-container-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*-- EASYVEST HIDE STYLES --*/
/*Display on/off styles*/
.ev-h-md-xl {
  display: block;
  padding-top: 3px;
}
.ev-h-sm-xl {
  display: none;
}
.ev-h-sm-md {
  display: none;
}
.ev-h-xl {
  display: block;
}
.ev-h-sm {
  display: none;
}
.ev-hide-when-medium {
  display: none;
}
.ev-hide-when-large {
  display: block;
}
.ev-hide-when-not-xl {
  display: none !important;
}
.ev-hide-menu-item-when-xl {
  display: block !important;
}
.max-1450 {
  max-width: 1450px;
  margin: auto;
}
.max-1350 {
  max-width: 1350px;
  margin: auto;
}
.max-1250 {
  max-width: 1250px;
  margin: auto;
}
.max-750 {
  max-width: 750px;
  margin: auto;
}
.max-650 {
  max-width: 650px;
  margin: auto;
}
.max-582 {
  max-width: 582px;
  margin: 0 auto;
}
.max-500 {
  max-width: 500px;
  margin: 0 auto;
}
.max-400 {
  max-width: 400px;
  margin: 0 auto;
}
.max-300 {
  max-width: 300px;
  margin: auto;
}
.max-350 {
  max-width: 350px;
  margin: 0 auto;
}
.w-100 {
  width: 100%;
}

/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */
.pure-form label {
  margin: 1em 0 0;
  /*font-weight: bold;*/
  font-size: 100%;
}
.pure-form input:focus:invalid,
.pure-form textarea:focus:invalid,
.pure-form select:focus:invalid {
  border-color: #d61f31 !important;
  color: #d61f31 !important;
}
.pure-form input[type],
.pure-form select,
.pure-form textarea {
  border: 1px solid #ddd !important;
  box-shadow: none;
  font-size: 16px;
  /*width: 100%;*/ /*If causes problem add class=pure-u-1 to element to ake it 100%*/
  margin-bottom: 1em;
}
.pure-form input[type="submit"] {
  border-color: #00db71;
}

.pure-form textarea {
  width: 100% !important;
  min-height: 150px !important;
}
input[type="checkbox"],
input[type="radio"] {
  width: 1em !important;
}
.ev-error {
  color: #d61f31;
  margin-bottom: 1em;
  width: 100%;
}

.quick-simulation span.isError input {
  border-color: #d61f31 !important;
  color: #d61f31 !important;
}

.quick-simulation span.isError select {
  border-color: #d61f31 !important;
  color: #d61f31 !important;
}

.pure-form ::placeholder {
  color: #9e9e9e;
}
.pure-form select option:disabled {
  color: #9e9e9e;
}
.pure-form select option {
  color: #666666;
}
/*
 * -- PURE BUTTON STYLES --
 * I want my pure-button elements to look a little different
 */
/* .pure-button {
  background-color: #61ff8c;
  color: #00063c;
  padding: 0.5em 2em;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  border: 2px solid #00063c;
} */
.ev-button-primary {
  width: 100%;
  background-color: white;
  border: 2px solid #00063c;
  color: #00063c !important;
  font-size: 120%;
  border-radius: 5px;
  padding: 13px 20px;
  box-shadow: -4px 4px #00063c;
  font-weight: bold;
}
a.ev-button-primary {
  background: #61ff8c;
  color: #00063c;
  border-radius: 5px;
  font-size: 120%;
  width: 100%;
  padding: 0.5em 2em;
  border: 2px solid #00063c;
  box-shadow: -4px 4px #00063c;
}
a.ev-button-primary-small {
  background: #61ff8c;
  color: #00063c;
  border-radius: 5px;
  font-size: 120%;
  padding: 1em 2em;
  border: 2px solid #00063c;
  box-shadow: -4px 4px #00063c;
}

.page-anchor-48 {
  position: relative;
  bottom: 46px;
}

label a {
  text-decoration: underline;
  color: #666666;
}
.sub-label {
  margin-top: -1.3em;
  font-size: 75%;
  color: #a9a9a9;
}
/*Format the navigation menu buttons*/
.ev-signup-button {
  padding: 0.8em 0.5em;
  margin-right: 1em;
}
.ev-login-button {
  padding: 0.5em 0.5em;
}
.ev-faq-search-button {
  width: 100%;
  height: 3.4em;
  padding: 1em 0em 1em 0em;
  font-size: 14px;
  border-radius: 0px 5px 5px 0px;
}
[id$="create-account-signup-button"].inactive {
  background: #ccc;
  cursor: default;
}
/*
 * -- MENU STYLES --
 * I want to customomize my navigation menu on top of the page
 */
.custom-wrapper {
  text-transform: uppercase;
  font-size: 70%;
  font-weight: bold;
  background-color: #176aa0;
  margin-bottom: 1em;
  -webkit-font-smoothing: antialiased;
  /*height: 2.9em;*/
  overflow: visible;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  transition: height 0.5s;
  /*so the menu is kept at the top of the screen always*/
  position: fixed;
  width: 100%;
  z-index: 5;
  /*make the wrapper a bit thicker*/
  padding-top: 1em;
  padding-bottom: 1em;
  box-shadow: 0 3px 17px 0 rgba(0, 0, 0, 0.1), 0 0px 0px 0 rgba(0, 0, 0, 0.1);
}

.custom-wrapper.open {
  /*height of the box when the menu is vertically open on small screen*/
  height: 25em;
  /*In case vertical-menu needs to be scrolled vertically*/
  overflow-y: scroll;
}
/*Constrain logo size for smaller screen like iPhone4*/
.ev-logo {
  width: 180px;
}
.custom-menu-3 {
  text-align: right;
}

.ev-nav-phone {
  color: white;
  position: absolute;
  top: 0;
  margin-top: 1.3em;
  right: 4em;
  display: none;
}

.custom-toggle {
  width: 34px;
  height: 34px;
  display: block;
  position: absolute;
  margin-top: 1em;
  top: 0;
  right: 0;
  display: none;
}

.custom-toggle .bar {
  background-color: white;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  top: 18px;
  right: 7px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.custom-toggle .bar:first-child {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.custom-toggle.x .bar {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom-toggle.x .bar:first-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-new-highlight {
  padding: 0em 0.5em;
  background: #00db71;
  border-radius: 3px;
  font-size: 71%;
  margin-left: 0.5em;
  color: #478dd6;
  vertical-align: top;
}
.pure-menu-link:hover .menu-new-highlight,
.menu-new-highlight:hover {
  color: white;
}
/*Recolor the default pure menu styles*/
.pure-menu-link {
  color: white;
}

/*Color the link items of the menu when hover and focus*/
.pure-menu-active > .pure-menu-link,
.pure-menu-link:hover,
.pure-menu-link:focus {
  background: none;
  border: none;
  color: #aecfe5;
}
/*Add a small space between icon and text*/
.pure-menu-link i {
  margin-right: 7px;
}
.fa-i-right {
  margin-right: 7px;
}
.fa-sub {
  padding: 0.25em 1em 2em 13px;
  margin: 0 0 0 7px;
  border-left: 1px solid #dbdbdb;
}
.fa-sub:last-child {
  padding-bottom: 0em; /*border goes no further than text bottom on last step*/
}
.fa-sub p {
  margin: 0;
}
.fa-index {
  transform: translate(1px, -1px);
  background-color: #ccc;
  display: inline-block;
  width: 14px;
  height: 14px;
  color: white;
  font-size: 80%;
  line-height: 14px;
  border-radius: 100%;
  text-align: center;
  margin-right: 7px;
}
.fa-index.ev-h {
  display: none !important; /*don't simply hide with ev-h due to css order*/
}
.fa-index.bkg-blue {
  background-color: #1f8dd6;
}
.custom-wrapper li a:hover,
.custom-wrapper li a:focus {
  /*background: none;*/
  border: none;
  /*color:#aecfe5;*/
}
.pure-menu-children {
  background: #176aa0;
}
.pure-menu-children li a {
  border-left: 2px solid #176aa0;
}
.pure-menu-children li a:hover,
.pure-menu-children li a:focus {
  border-left: 2px solid #aecfe5;
}
/* We hide the menu headers from the menu when it is large screen */
.pure-menu-horizontal .pure-menu-heading {
  display: none;
}
.pure-menu-heading {
  color: #aecfe5;
}
/*Customize the language menu item in the vertical menu*/
.ev-language-heading {
  width: 100%;
  border-top: 1px solid #aecfe5;
}
.ev-language-heading i {
  margin-right: 7px;
}
.ev-language-item {
  display: inline-block;
}
.ev-sub-menu {
  margin-left: 2.5em;
  font-size: 80%;
}
/* HOME SECTIONS*/
#smart,
#performance,
#free-service,
#pricing,
#security,
#publication,
#pension-publication,
#how-it-works,
#clients,
#pension-clients,
#why,
#pension-products,
#mission,
#product-definition,
#pension-how {
  padding: 5em 1em;
}

#performance-content {
  display: flex;
  flex-direction: column;
}

#mission {
  background-color: #f6fafc;
}
#free-service i {
  color: #00063c;
  margin-bottom: 0.4em;
}
#ev-performance-app {
  margin-top: 5em;
}
.how-step-number {
  font-size: 400%;
  margin: 0;
  font-weight: bolder;
}
/*
 * -- SPLASH STYLES --
 * This is the blue top section that appears on the page.
 */
.new-splash-container {
  /*background: linear-gradient(rgba(31,141,214,0.8),rgba(31,141,214,0.8)), url(../img/easyvest-workstation-1.jpg), #1f8dd6;*/
  background-size: cover !important;
  background-position: center top !important;
  width: 100%;
  position: relative;
  height: 100vh;
  top: 0em; /*Just below the nav menu*/
}
.new-splash-content {
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
}
.new-splash-content h1 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  font-size: 150%;
  /*text-align:center;*/
  color: white;
  margin: 0 auto;
}
.splash-panel-1 {
  text-align: center;
  margin-bottom: 5em;
}
.modal-video-container {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.7);
  transition: padding 1s;
}
.modal-video-content {
  position: relative;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
}
#easyvest-video-close:hover {
  color: #00db71 !important;
}
.easyvest-video-iframe-div {
  width: 100%;
  max-width: 640px;
  height: 360px;
}
.easyvest-video-scaling {
  transform: scale(0.748);
  -moz-transform: scale(0.748);
  -webkit-transform: scale(0.748);
  -ms-transform: scale(0.748);
  -o-transform: scale(0.748);
}
.ev-splash-button {
  width: 100%;
  max-width: 450px;
  text-transform: uppercase;
  margin: 1em auto 0em auto !important;
  padding: 1em 0;
}
.ev-splash-button a {
  text-decoration: none;
  color: white;
}
.ev-video-button {
  font-size: 100% !important;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0);
  color: white;
  margin: 0 auto !important;
  cursor: pointer;
}
.ev-video-button:hover,
.ev-video-button:active,
.ev-video-button:focus {
  color: #00db71;
}

@keyframes blinkingtypewrite {
  50% {
    border-right: 0.08em solid rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes blinkingtypewrite {
  50% {
    border-right: 0.08em solid rgba(255, 255, 255, 0);
  }
}
.splash-container {
  background: linear-gradient(rgba(31, 141, 214, 0.8), rgba(31, 141, 214, 0.8)),
    url(../img/easyvest-workstation-1.jpg) #1f8dd6;
  /*background-color: #1f8dd6;*/
  z-index: 1;
  overflow: hidden;
  /* The following styles are required for the "scroll-over" effect */
  width: 100%;
  height: 100vh !important; /*Put it to 100% of screen*/
  min-height: 500px;
  /*top: 3.7em; */ /*Come after menu*/
  /*left: 0;*/
  /* position: absolute;*/ /* if we want a pass-over effect: fixed !important;*/
  /*Resize nicely the background picture with the screen size*/
  background-size: cover;
  background-position: center top;
}
.new-splash-container {
  /*background: linear-gradient(rgba(31,141,214,0.5),rgba(31,141,214,1)), url(../img/easyvest-workstation-color.jpg) #1f8dd6;*/
  background: #1f8dd6;
}
.splash {
  /* absolute center .splash within .splash-container */
  width: 80%;
  /*height: 50%;*/
  margin: 11em auto;
  /* position: absolute;
    top: 0; left: 0; bottom: 0; right: 0; */
  text-align: center;
  text-transform: uppercase;
}

/* This is the main heading that appears on the blue section */
.splash-head {
  font-size: 200%;
  font-weight: bold;
  color: white;
  line-height: 1em;
}

/* This is the subheading that appears on the blue section */
.splash-subhead {
  color: white;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.ev-splash-wrapper {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 2em;
  font-family: easyvest;
}
.ev-splash-content {
  position: inherit;
  top: 20%;
  left: 0;
  right: 0;
}
.ev-splash-content h1 {
  color: #00063c;
}
.ev-splash-content h2,
.ev-splash-content p,
.ev-splash-content a {
  color: #00063c;
}
/*
 * -- SPLASH Trigger --
 * This is arrow inviting user to scroll down.
 */
a.trigger {
  position: absolute;
  bottom: 1em;
  left: 50%;
  z-index: 2;
  display: block;
  margin-left: -0.5em;
  padding: 0;
  width: 1em;
  height: 1em;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 2em;
  cursor: pointer;
  animation-name: swing;
  -webkit-animation-name: swing;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
a.trigger span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  content: "\f078";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "FontAwesome";
  line-height: 1;
  speak: none;
  font-size: 2.25rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#beliefs-easyvest:target {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
@keyframes swing {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0%);
  }
}
/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */
.content-wrapper {
  /* These styles are required for the "scroll-over" effect */
  /* position: absolute;
    top: 85%; */
  width: 100%;
  min-height: 12%;
  z-index: 1; /*2 if we want a pass-over effect with the splash*/
  background: white;
}

/* This is the class used for the main content headers (<h2>) */
.content-head {
  margin: 2em auto 1.5em;
  max-width: 680px;
}

#why .content-head {
  margin: 0 auto 1.5em;
}

/* This is a modifier class used when the content-head is inside a ribbon */
.content-head-ribbon {
  color: #00063c;
  margin: 1em auto 1em auto;
}

@media (max-width: 64em) {
  .content-head,
  .content-head-ribbon {
    text-align: center;
  }
}

.content-subhead-ribbon {
  color: #00063c !important;
  margin: 0.5em auto 3em auto;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
  color: #1f8dd6;
}
.content-subhead i {
  margin-right: 7px;
}
h4.content-subhead {
  font-weight: normal;
  color: #34495e;
}

h4.content-subsubhead {
  margin-top: 3em;
  font-weight: normal;
  color: #1f8dd6;
}
/*
 * -- BELIEFS STYLES --
 * This is the blue top section that appears on the page.
 */
.ev-beliefs i {
  display: block;
}

.ev-beliefs .l-box {
  padding: 1em;
}

.ev-beliefs .title {
  font-size: 20px;
  color: #00063c;
  font-weight: bold;
  margin: 1em 0;
  align-self: self-start;
  padding: 0 1em;
}

.ev-beliefs .pure-img {
  border-radius: 15px 15px 0px 0px;
}
/*
 *--
 * This is the class for the TEAM RIBBON
 * --
 */
.ev-press {
  background: #61ff8c;
}
.ev-press p {
  color: #21b381;
  font-style: italic;
  font-size: 120%;
  font-weight: 400;
}
.ev-press a,
.ev-press a:hover,
.ev-press a:focus,
.ev-press a:visited {
  text-decoration: none;
}
.ev-open-quote {
  font-size: 300%;
  display: block;
  color: #00063c;
}
/*
 *--
 * This is the class for the PRICING/Fees/Plans section
 * --
 */

/*Format input field*/
#ev-amount-to-invest {
  text-align: center;
  margin-bottom: 0;
  border: none;
  background: none;
  border-bottom: 2px solid #1f8dd6;
  border-radius: 0;
  color: #1f8dd6;
  font-size: 100%;
  width: 6em;
}
input#ev-amount-to-invest:focus {
  outline: none;
}
.ev-fee-calculator {
  margin: 3em auto;
}
.ev-fee-calculator p {
  font-size: 150%;
  color: #34495e;
  line-height: 1.7em;
}
.ev-fee-calculator a {
  font-size: 70%;
}
#ev-fee {
  color: #1f8dd6;
}
.ev-fee-table-div {
  margin-bottom: 2em;
}
.ev-fee-calculator .content-subhead {
  margin-bottom: 0;
  margin-top: 0;
}
.ev-plans {
  padding: 1em;
}
.ev-plans h3 {
  text-transform: uppercase;
  margin-bottom: 0em;
  font-weight: bold !important;
}
.ev-plans .ev-acount-example {
  margin-top: 0em;
}
.ev-plans .ev-price {
  text-transform: uppercase;
  margin-bottom: 0em;
}
.ev-pricing-bubble {
  background: #fff;
  margin: auto;
  border-radius: 50%;
  height: 12em;
  width: 12em;
  color: #00063c;
}
.ev-pricing-bubble p {
  color: #00063c;
}
.ev-pricing-bubble .product {
  font-weight: bold;
  color: #00063c;
  font-size: 11px;
}
.ev-pricing-bubble .small {
  font-size: 9px;
  color: #00063c;
}
.ev-pricing-bubble .price {
  font-size: 28px;
  font-weight: 900;
  margin: 0.2em 0;
  color: #00063c;
}
.ev-pricing-bubble.translate-left {
  transform: translate(-10px);
}
.ev-pricing-bubble.translate-right {
  transform: translate(10px);
}
.ev-price-number {
  font-size: 250%;
  margin: 0em;
}
.ev-plan-description {
  background: #e0e0e0;
  text-transform: uppercase;
  font-size: 100%;
  border-radius: 5px 5px 0 0;
  color: #34495e;
}
.ev-plan-description span {
  display: block;
}
.ev-plan-cost {
  margin: 0.2em auto;
  background-color: white;
  border-radius: 50%;
  height: 5.5em;
  width: 5.5em;
  line-height: 5.5em;
  text-transform: uppercase;
  font-size: 160%;
  font-weight: normal;
}
/* BLOG RIBBON*/
#publication, #pension-publication {
  background: #f6fbfe;
}
.ev-4-items i {
  display: block;
}
/*
 *--
 * This is the class for the TEAM RIBBON
 * --
 */
.ev-team,
.ev-blue-ribbon {
  background: #61ff8c;
}
.ev-team h3,
.ev-blue-ribbon h3 {
  font-weight: inherit;
  color: #00063c;
}
.ev-team p,
.ev-blue-ribbon p {
  color: #136c64;
}
.ev-profile-pic-lrg {
  width: 125px;
  height: 125px;
  border-radius: 50%;
}
#clients .ev-profile-pic-lrg {
  width: 100%;
  height: 15em;
}
#pension-clients .ev-profile-pic-lrg {
  width: 15em;
  height: 15em;
}
img.fa-macaron {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*
 *--
 * This is the class for the CLIENT Section
 * --
 */
.ev-profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.ev-center-pic {
  margin: 0 auto !important;
}

#allocation-donut-output {
  text-align: center;
}
/* This is the class used for the dark-background areas. */
/*
 *--
 * This is the class for the HOW TO RIBBON
 * --
 */
/* This is the class used for the dark-background areas. */
.ribbon {
  background: #1f8dd6;
  color: #fff;
  /*margin: -2em 0em 1em;*/
}
.ribbon ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
}
.ribbon ul li h3 {
  color: white;
}
.ribbon p {
  color: #aecfe5;
}
.ribbon i {
  padding-right: 7px;
}
#ev-how-to-ribbon-image {
  max-height: 30em;
}
.ev-ribbon-img {
  padding-top: 0;
}
.pure-img-responsive.animated {
  /*Home page mobile phone image sliding*/
  -webkit-transform: translate(-500%, 0%);
  -moz-transform: translate(-500%, 0%);
  -ms-transform: translate(-500%, 0%);
  -o-transform: translate(-500%, 0%);
  transform: translate(-500%, 0); /*put out of screen*/
  -webkit-transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
}
.pure-img-responsive.animated.start {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); /*put back on screen*/
}
.performance-app-controls {
  display: none;
}
/*
 * SECURITY LAYER ANIMATION
 */
#security {
  background: none;
  padding-bottom: 8em;
}

#pricing {
  padding: 4em 0em;
}
@media (max-width: 64em) {
  #pricing {
    padding: 10%;
    text-align: center;
  }
}

#how-it-works ul,
#why ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
}
#how-it-works i,
#why i {
  width: 1.5em;
  color: #00063c;
}

/*
* -- EASTVEST CONTENT STYLES --
* This is the default Easyvest main content section styles
*/
.ev-content-wrapper {
  /*come below the navigation menu*/
  padding-top: 80px;
}
/*
* -- EASYVEST FAQ --
* This is the style for the Easyvest faq
*/
.ev-faq-search-wrapper {
  background: #f6fafc;
  margin-top: -2em;
  padding: 5em 0em;
}
.ev-search-results p a {
  text-decoration: none;
  color: #595e7d;
}
/*Only display 3 first line of detailed description*/
.ev-search-results p {
  max-height: 5em;
  overflow: hidden;
  display: block; /*fallback for non webkit*/
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}
.ev-search-results h3 {
  margin-bottom: 0;
}
/* --- START - FAQ for landing Pages (e.g. CIPA) ---*/
.faq-list-container {
  border-top: 1px solid #00063c;
  border-bottom: 1px solid #00063c;
  position: relative;
  background: #f6fafc;
}
.faq-list-container.x {
  border-top-width: 2px;
  border-bottom-width: 2px;
}
.faq-list-top-controller,
.faq-list-bottom-controller {
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border: 2px solid #00063c;
  background-color: #61ff8c;
  border-radius: 18px;
  top: -18px;
  box-shadow: -2px 2px #00063c;
}
.faq-list-label {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -2em);
  color: #00063c;
  font-size: 1.5em;
}
.faq-list-bottom-controller.x {
  top: unset;
  bottom: -18px;
}
.faq-list-toggle {
  position: absolute;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-list-toggle .bar {
  width: 14px;
  height: 4px;
  background-color: #00063c;
  display: block;
  position: absolute;
  top: -2px;
  left: -7px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.faq-list-toggle .bar:first-child {
  transform: rotate(90deg);
}
.faq-list-top-controller.x .faq-list-toggle .bar:first-child,
.faq-list-bottom-controller.x .faq-list-toggle .bar:first-child {
  transform: rotate(-45deg);
}
.faq-list-top-controller.x .faq-list-toggle .bar:last-child,
.faq-list-bottom-controller.x .faq-list-toggle .bar:last-child {
  transform: rotate(45deg);
}
.faq-list {
  display: none; /*default*/
  padding: 3em 1em;
}
.faq-title {
  cursor: pointer;
  font-weight: bold;
  color: #00063c;
  margin-bottom: 2em;
}
.faq-title:hover,
.faq-title.x {
  text-decoration: underline;
}
.faq-detail {
  display: none; /*default: jQuery triggers the details display*/
  padding-bottom: 5em;
}
.ev-search-results h2 {
  font-size: 160%;
}

.jump-anchor {
  display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}
/* --- END - FAQ for landing Pages (e.g. CIPA) ---*/
/*
* -- EASYVEST BLOG --
* This is the style for the Easyvest blog home page
*/
.simple-webpage {
  padding: 5em 1em;
}
.input-file {
  outline: none !important;
}
.ev-post-tile-text-div {
  padding: 21.5%;
  box-sizing: border-box;
  position: relative;
}
.ev-post-tile-text {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 21px;
  color: #00063c;
  font-weight: bold;
  width: 100%;
  line-height: 1.2em;
  padding: 0 1em;
}

.blogtile {
  border: 2px solid #00063c;
  box-shadow: -4px 4px #00063c;
  padding: 0;
  margin: 16px 12px;
  border-radius: 15px;
}

.blogtile img {
  border-radius: 14px 14px 0 0;
}
.ev-post-tile-blue {
  background: #fff;
  border-radius: 0 0 15px 15px;
}
.ev-post-tile-green {
  background: #fff;
  border-radius: 0 0 15px 15px;
}
.ev-post-tile-navy {
  background: #ced8e3;
  border-radius: 0 0 15px 15px;
}
.ev-post-tile-yellow {
  background: #f8f4d1;
  border-radius: 0 0 15px 15px;
}
.ev-post-tile-orange {
  background: #f8e0d1;
  border-radius: 0 0 15px 15px;
}
.ev-post-tile-red {
  background: #f8d1d5;
  border-radius: 0 0 15px 15px;
}
.ev-blog-post p, .ev-blog-post li {
  font-size: 16px !important;
  line-height: 24px;
}
.ev-post-details {
  margin-top: -2em;
  margin-left: 0.5em;
}
.ev-post-credentials {
  display: inline-block;
  position: relative;
  bottom: 0.8em;
  margin-left: 10px;
}
.ev-blog-author-pic {
  height: 90px !important;
  width: 90px !important;
}
.ev-blog-post {
  margin: 0 0.5em;
}

.ev-blog-post h2 {
  font-size: 160%;
}

.blogpost_wrapper {
  border-radius: 10px;
}
.ev-social-button,
.ev-social-button:hover,
.ev-social-button:visited {
  text-decoration: none !important;
}
/*EASYVALET*/
#easyvalet-div {
  color: #a6adba;
  border-top: 1px solid #dbdbdb;
  padding-top: 1em;
}
#easyvalet-div p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#easyvalet-div p a {
  text-decoration: none;
  color: #595d72;
}
/* This is the class used for the footer */
.footer {
  background: #00063c;
  color: white;
  font-size: 75%;
  line-height: 1.7em;
}
.footer h4 {
  color: #f6fafc;
}
.footer ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  line-height: 2em;
}
.footer .ev-lowercase {
  text-transform: lowercase;
}
.footer a {
  text-decoration: none;
  color: white;
}
.footer a:hover,
.footer a:focus {
  text-decoration: underline;
}
.footer i {
  margin-right: 7px;
}
.ev-disclaimer {
  text-transform: none;
  font-size: 11px;
  line-height: 1.5;
  color: #f6fafc;
  padding-top: 1em;
  border-top: 1px solid #a6adba;
  margin-bottom: 3em;
}
/*Hide those elements when large*/
.ev-hide-menu-item-when-large {
  display: none;
}
li.pure-menu-item.ev-hide-menu-item-when-large {
  display: none;
}

/* --------------------------------------------
* KA CSS
*--------------------------------------------*/
ul.smallLeftPadding {
  padding-inline-start: 1em;
}

/* --------------------------------------------
* OPT OUT PAGE CSS
*--------------------------------------------*/
.optout-section {
  padding: 5em 1em 40vh 1em;
}

/*-----------------------------------------------
 * LIVE AGENT Style
 *-----------------------------------------------
 */
.chat-button {
  position: fixed;
  visibility: hidden;
  height: 0px;
  opacity: 0;
  bottom: 0px;
  right: 15px;
  padding: 0.25em 0.5em 0.25em 0;
  background: #1f8dd6;
  border-radius: 0.25em 0.25em 0 0;
  z-index: 10;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation: chatbounce 1s linear forwards 1;
  -webkit-animation: chatbounce 1s linear forwards 1;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.chat-button-link,
.white-and-bold {
  color: white;
  font-weight: bold;
}
.chat-button-link:hover {
  cursor: pointer;
  color: #aecfe5;
}
@keyframes chatbounce {
  from {
    height: 0px;
    visibility: hidden;
    opacity: 0;
  }
  to {
    height: 30px;
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes chatbounce {
  from {
    height: 0px;
    visibility: hidden;
    opacity: 0;
  }
  to {
    height: 30px;
    visibility: visible;
    opacity: 1;
  }
}

/*
 * -- TABLET (AND DOWN) MEDIA QUERIES --
 * On tablet and smaller devices, we want to keep some things.
 */
@media (max-width: 79.999em) {
  /*Hide element when small screen*/
  .ev-hide-when-small {
    display: none;
  }

  /* We un-hide the vertical menu*/
  .custom-menu-3 {
    text-align: left;
  }

  .custom-toggle {
    display: block;
  }

  /* We un-hide the menu headers */
  .pure-menu-heading {
    display: inline-block;
  }
  .ev-nav-phone {
    display: block;
  }

  /*We collapse the menu*/
  .custom-wrapper {
    font-size: 100%;
    font-weight: normal;
    overflow: hidden;
    height: 4.5em;
  }

  /*Show when small elements that are shown when large*/
  .ev-hide-menu-item-when-large {
    display: block;
  }
  li.pure-menu-item.ev-hide-menu-item-when-large {
    display: block;
  }

  /*Buttons*/
  a.ev-button-primary-small {
    width: 100%;
  }
  /*Press logo*/
  .ev-press img {
    height: 25px;
  }
  /* This is the class used for the footer */
  .footer {
    font-size: 90%;
  }
}

/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 48em) {
  /* We increase the body font size */
  body {
    font-size: 13px;
  }
  /* We want to give the content area some more padding */
  .content {
    padding: 1em 1em 1em 1em;
  }

  /*We increase the height of the splash container as we have more space*/
  .splash-container {
    height: 650px;
  }
  /* We decrease the width of the .splash, since we have more width
    to work with */
  .splash {
    width: 80%;
    height: 50%;
  }
  /*button a bit less large*/
  a.ev-button-primary {
    /*width:80%;*/
  }
  .ev-splash-button {
    width: 70%;
    font-size: 150%;
  }
  .new-splash-content h1 {
    font-size: 250%;
  }
  .splash-items p {
    font-size: 120% !important;
    padding: 0.5em;
  }
  #ev-how-to-ribbon-image {
    margin-top: 3em;
  }

  /* We remove the border-separator assigned to .l-box-lrg */
  .l-box-lrg {
    border: none;
  }
  /*-- EASYVEST HIDE STYLES --*/
  /*Display on/off styles*/
  .ev-h-md-xl {
    display: none;
  }
  .ev-h-sm-xl {
    display: block;
  }
  .ev-h-sm-md {
    display: none;
  }
  .ev-h-xl {
    display: block;
  }
  .ev-h-sm {
    display: block;
  }
  /*EASYVALET*/
  #easyvalet-div {
    border-top: none;
    height: 100%;
  }

  #why-two-percent {
    padding: 0 5em;
  }
  #why-content {
    margin: 0 auto;
  }
}

/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large devices, we want to over-ride some
 * of the mobile and tablet styles.
 * OLD: 78em
 */
@media (min-width: 64em) {
  /* We increase the body font size */
  body {
    font-size: 13px;
  }
  /*-- EASYVEST HIDE STYLES --*/
  /*Display on/off styles*/
  .ev-h-md-xl {
    display: none;
  }
  .ev-h-sm-xl {
    display: none;
  }
  .ev-h-sm-md {
    display: block;
  }
  .ev-h-xl {
    display: none;
  }
  .ev-h-sm {
    display: block;
  }
  .ev-hide-when-medium {
    display: block;
  }
  .ev-hide-when-large {
    display: none;
  }
  .ev-hide-when-not-xl {
    display: block !important;
  }
  .ev-hide-menu-item-when-xl {
    display: none !important;
  }
  /*We increase the height of the splash container as we have more space*/
  .splash-container {
    height: 800px;
  }
  .splash {
    margin: 17em auto;
  }
  /* We increase the header font size even more */
  .new-splash-content {
    text-align: left;
  }
  .new-splash-content h1 {
    font-size: 250%;
  }
  .new-splash-container {
    height: 70vh;
  }
  .splash-items p {
    font-size: 200% !important;
    padding: 0.75em;
  }
  .splash-panel-1 {
    text-align: left;
    margin-bottom: 0em;
  }
  .ev-splash-button {
    font-size: 150%;
  }
  .ev-4-items {
    width: 100%;
    margin: auto;
  }

  /*button a bit less large*/
  a.ev-button-primary {
    /*width:60%;*/
  }
  .custom-wrapper {
    font-size: 100%;
    font-weight: normal;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  /*We reduce the believes size*/
  .ev-beliefs,
  .ev-how,
  .ev-clients {
    /*width:80%;*/
    margin: auto;
    max-width: 1600px;
  }

  /*Constrain the how-to ribbon*/
  .ribbon .content {
    max-width: 80%;
    margin: auto;
  }
  /*Blog*/
  .simple-webpage {
    max-width: 50vw;
    margin: 0 auto;
  }
  #pension-publication {
    padding-bottom: 150px;
  }
}
/*Large desktop
* OLD: 90em
*/
@media (min-width: 80em) {
  body {
    font-size: 14px;
  }
}
/*horizontal phone*/
@media (max-height: 35.5em) and (orientation: landscape) {
  .new-splash-container {
    height: 190vh; /*increase container heights so it fits the screen*/
  }
  .new-splash-content h1 {
    font-size: 350%;
    margin: 0 auto;
  }
}
/*
 * -- PRINTING style --
 * When user print a web page
 */
@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}

@media (max-width: 64em) {
  #why,
  #security,
  #pension-products,
  #publication,
  #pension-publication,
  #pension-how {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 5em;
  }
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.ev-grey {
  color: #dbe3e5 !important;
}
.ev-grey-2 {
  color: #e5ebed;
}
.ev-grey-3 {
  color: #edf2f5;
}
.ev-grey-4 {
  color: #f6fafc;
}
.ev-green {
  color: #61ff8c !important;
  font-size: 20px;
}
.ev-green-2 {
  color: #21b381;
}
.ev-green-3 {
  color: #136c64;
}
.ev-lightgreen {
  color: #c4fcd6;
}
.ev-lightgreen-2 {
  color: #d6fce3;
}
.ev-lightgreen-3 {
  color: #e5fcf0;
}
.ev-lightgreen-4 {
  color: #f7fcfa;
}
.ev-red {
  color: #ff0062 !important;
}
.ev-lightgrey {
  color: #a6adba !important;
}
.ev-blue {
  /* color: #1f8dd6 !important; */
  color: #00063c !important;
}
.ev-blue-2 {
  color: #595e7d !important;
}
.ev-blue-3 {
  color: #a6adba !important;
}
.ev-lightblue {
  color: #00063c !important;
}
.ev-verylightblue {
  color: #00063c !important;
}
.ev-error {
  color: #ff0062;
  margin-bottom: 1em;
  width: 100%;
}

.margin-auto-h {
  margin-left: auto;
  margin-right: auto;
}

.text-deco-none {
  text-decoration: none;
}

.sidebarHeader h2,
.headerAnnouncement h2 {
  color: inherit;
}

.easyvalet-team {
  object-fit: contain;
  width: 14rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}