@charset "UTF-8";

/* Transitions and Animations
----------------------------------------------------------------------------------------------------*/
@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

[v-cloak] {
  display: none;
}

/* Vue JS */
.fade-enter-active {
  transition: opacity .3s;
}

.fade-leave-active {
  transition: opacity .2s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

/*-----------------SAFARI & CHROME RESET-----------------*/
body {
  font-family: 'Montserrat', 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', 宋体, SimSun, STXihei, '华文细黑', Helvetica, Roboto, Arial, sans-serif;
}

body>.inner {
  display: none;
}

body.pg-loaded>.inner {
  display: block;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Montserrat', 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', 宋体, SimSun, STXihei, '华文细黑', Helvetica, Roboto, Arial, sans-serif;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0.0)
  }

  50% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }

  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-scrollbar {
  display: none;
}

a:active,
a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}

.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

/*--------------------FONT RESET--------------------*/
.reversed-white {
  color: #F4F4F4;
}

.bold {
  font-weight: 700;
}

p {
  letter-spacing: 0.03em;
  font-weight: unset;
}

bold {
  font-weight: 700;
}

/*--------------------HORIZONTAL LINE--------------------*/
.horizontal-line {
  width: 100%;
  height: 1px;
  background: #8B634B;
  margin: 0 auto;
}

.horizontal-line.short {
  width: 2rem;
}

.separator {
  width: 2rem;
  height: 1px;
  background: #8B634B;
  margin: 0 auto;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.landing-separator {
  width: 2rem;
  height: 1px;
  background: #8B634B;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

@media screen and (min-width: 40em) {
  .landing-separator {
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}

/*--------------------PADDING--------------------*/
.buffing {
  padding: 2.5rem;
}

@media screen and (min-width: 64em) {
  .buffing {
    padding: 5rem;
  }
}

.buffing.small {
  padding: 1rem;
}

@media screen and (min-width: 64em) {
  .buffing.small {
    padding: 2rem;
  }
}

.buffing.tiny {
  padding: 0.5rem;
}

@media screen and (min-width: 64em) {
  .buffing.tiny {
    padding: 1rem;
  }
}

/*--------------------LINKS--------------------*/
a {
  color: #8B634B;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
  color: #8B634B;
}

.more::after {
  font-family: 'icomoon' !important;
  font-size: .7em;
  content: "\e93c";
  padding-left: 0.8em;
  position: relative;
  bottom: .05rem;
  display: inline-block;
  -webkit-text-stroke: 0.3px;
}

.more {
  font-size: 1.2em;
  font-weight: 400;
  color: #8B634B;
  text-decoration: none;
  border-bottom: 0px;
}

.more:hover {
  text-decoration: underline;
}

.more.dark {
  color: #1F2A44;
}

.more.light {
  color: #DCD0C0;
}

/*--------------------BUTTON--------------------*/
.button {
  font-weight: 500;
  background: none;
  color: #8B634B;
  border: 1px solid #8B634B;
  text-transform: unset;
  font-size: 15px;
  padding: 1rem 3.5rem;
}

.button:hover,
.button:focus {
  background-color: #8B634B !important;
  color: #202B43;
}

.button:active {
  color: #100C08;
}

.button i {
  font-size: 85%;
}

.button.primary {
  background: none;
  border: 1px solid #8B634B;
  color: #8B634B;
}

.button.primary:hover,
.button.primary:focus {
  background: #8B634B;
  border: 1px solid #8B634B;
  color: #F4F4F4;
}

.button.primary:active {
  background-color: rgba(139, 99, 75, 0.8);
  color: #F4F4F4;
}

.button.secondary {
  border: 1px solid #1F2A44;
  background: none;
  color: #1F2A44;
}

.button.secondary:hover,
.button.secondary:focus {
  border: 1px solid #1F2A44;
  background: #1F2A44;
  color: #F4F4F4;
}

.button.secondary:active {
  background-color: rgba(31, 42, 68, 0.8);
  color: #F4F4F4;
}

.button.dark {
  border: 1px solid #F4F4F4;
  background-color: none;
  color: #F4F4F4;
}

.button.dark:hover {
  border: 1px solid #F4F4F4;
  background-color: #F4F4F4;
  color: #100C08;
}

.button.dark:active {
  background-color: rgba(255, 255, 255, 0.8);
  color: #100C08;
}

.button.icon {
  background: none;
  color: #8B634B;
  -webkit-text-stroke: 0.3px;
  padding: 0.5rem;
  font-size: 0.8em;
  position: relative;
}

.button.icon:hover {
  background: none;
  color: rgba(139, 99, 75, 0.4);
}

.button.icon:active {
  color: #8B634B;
}

/*--------------------CUSTOM CHECKBOX & RADIO BUTTON--------------------*/
[type='checkbox']+label,
[type='radio']+label {
  margin-left: 0rem;
}

input[type=radio] {
  display: none;
}

input[type=radio]+label:before {
  font-family: 'icomoon' !important;
  font-size: 1.4em;
  display: inline-block;
  position: relative;
  bottom: -0.15rem;
}

input[type=radio]+label:before,
input[type=radio]:checked+label:before {
  letter-spacing: 0.5em;
}

input[type=radio]+label:before {
  content: "\e99d";
  color: #A3A3A3;
}

input[type=radio]:checked+label:before {
  content: "\e904";
  color: #8B634B;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]+label:before {
  font-family: 'icomoon' !important;
  font-size: 1.4em;
  display: inline-block;
  position: relative;
  bottom: -0.15rem;
}

input[type=checkbox]+label:before,
input[type=checkbox]:checked+label:before {
  letter-spacing: 0.5em;
}

input[type=checkbox]+label:before {
  content: "\e98d";
  color: #A3A3A3;
}

input[type=checkbox]:checked+label:before {
  content: "\e903";
  color: #8B634B;
}

label {
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

/*--------------------LABELS--------------------*/
.label {
  text-transform: capitalize;
  letter-spacing: -0.005em;
}

.label.news {
  border: 1px solid #94618E;
  background: none;
  color: #94618E;
}

.label.announcement {
  border: 1px solid #E37222;
  background: none;
  color: #E37222;
}

/*--------------------ICONS--------------------*/
[class^="icon-"] {
  -webkit-text-stroke: 0.3px;
}

/*--------------------BREADCRUMBS--------------------*/
.breadcrumbs li {
  z-index: 10;
  font-size: 0.8em;
  letter-spacing: 0.02em;
}

.breadcrumbs li a:hover {
  text-decoration: none;
  border-bottom: 1px solid;
}

.breadcrumbs li:not(:last-child)::after {
  font-family: 'icomoon' !important;
  content: "\e93c";
  color: #7C7C7B;
  font-size: 0.7em;
}

/*--------------------NAVIGATION--------------------*/
header {
  z-index: 5;
  border-bottom: 1px solid #8B634B;
}

.sticky-shrinknav-menu {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  height: 4.2rem;
  width: 100%;
  background-color: rgba(31, 42, 68, 0);
}

.sticky-shrinknav-menu a {
  color: unset;
  text-decoration: none;
}

.sticky-shrinknav-header {
  width: 100%;
  height: 4rem;
  background-color: rgba(31, 42, 68, 0);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 1100;
}

.sticky-shrinknav-header.landing-page-only {
  z-index: 1;
}

body.sticky-shrinknav-wrapper .sticky-shrinknav-header {
  height: 4rem;
  background-color: rgba(31, 42, 68, 0.9);
}

body.sticky-shrinknav-wrapper .sticky-shrinknav-header .sticky-shrinknav-header-title {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease;
}

.top-bar-sc {
  width: 100%;
  background-color: rgba(31, 42, 68, 0);
}

.top-bar-sc-title {
  right: 0;
  top: 0.3rem;
  position: absolute;
  z-index: 1;
}

.top-bar-sc ul {
  background-color: rgba(31, 42, 68, 0);
}

.nav.menu li button,
.nav.menu li button:hover {
  padding-top: 1rem;
  border: none;
}

.logo {
  padding: 0.6rem 0.7rem;
}

@media screen and (min-width: 40em) {
  .logo {
    padding: 1rem;
  }
}

/*
.logo a {
    width: 90%;
    padding-top: 1rem;
}

@media screen and (min-width: 40em) {
    .logo a {
        width: 100%;
        padding-top: 0.8rem;
    }
}*/
.hamburger {
  padding: 1rem;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 1.7rem;
  height: 1rem;
  display: inline-block;
  position: relative;
}

.top-bar-sc-title .hamburger-box {
  width: 0.6rem;
  height: 1.2rem;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 0.2rem;
}

.top-bar-sc-title .hamburger-inner {
  margin-top: -0.2rem;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #F4F4F4;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.top-bar-sc-title .hamburger-inner,
.top-bar-sc-title .hamburger-inner::before,
.top-bar-sc-title .hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #F4F4F4;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.menu-bg {
  position: relative;
  min-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/bg/kb-web-img-menu.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.full.reveal.menu-bg {
  padding: 0;
}

#pop_menu {
  top: 0;
  bottom: 0;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  margin-top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  width: 100vw;
  max-width: none;
  margin-left: 0;
  padding: 0;
  border: none;
  z-index: 99;
}

.menu-container {
  /*padding-top: 1rem;*/
  color: #F4F4F4;
  height: 90%;
}

.menu-box {
  height: 85%;
}

@media screen and (min-width: 40em) {
  .menu-box {
    height: 88%;
  }
}

@media screen and (max-width: 40em) {
  .menu-box {
    height: 70%;
  }

  .menu-container {
    color: #F4F4F4;
    height: 90%;
  }

  .revealogo {
    padding-top: 1.3rem;
    padding-left: 0.7rem !important;
  }
}

.menu-footer {
  height: 15%;
}

@media screen and (min-width: 40em) {
  .menu-footer {
    height: 10%;
  }
}

.menu-container li {
  border: 1px solid #8B634B;
  width: 50%;
  overflow: hidden;
}

@media screen and (min-width: 40em) {
  .menu-container li {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .menu-container li {
    width: 50%;
  }
}

.menu-container .menu-box span {
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5em;
  display: block;
  position: absolute !important;
  top: 50%;
  width: 100%;
  margin: -0.7rem;
}

@media screen and (min-width: 64em) {
  .menu-container .menu-box span {
    font-size: 2em;
    font-weight: 300;
    margin: -1rem;
  }
}

.menu-container a,
.menu-container a:hover {
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -ms-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  cursor: pointer;
}

.menu-container a:hover {
  color: #F4F4F4;
}

.menu-img-container {
  overflow: hidden;
  position: relative;
}

.menu-img:hover:before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 1;
}

.menu-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  min-height: 100%;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -ms-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.menu-img.firm:before {
  background: url(../img/bg/kb-web-img-firm-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.history:before {
  background: url(../img/bg/kb-web-img-history-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.strategy:before {
  background: url(../img/bg/kb-web-img-strategy-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.funds:before {
  background: url(../img/bg/kb-web-img-funds-sc-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.team:before {
  background: url(../img/bg/kb-web-img-team-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.reports:before {
  background: url(../img/bg/kb-web-img-reports-sc-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.updates:before {
  background: url(../img/bg/kb-web-img-updates-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-img.contact:before {
  background: url(../img/bg/kb-web-img-contact-sc-s.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.menu-container .menu-footer {
  padding: 0;
}

@media screen and (min-width: 40em) {
  .menu-container .menu-footer {
    padding: 1rem;
  }
}

.menu-container .menu-footer span {
  font-size: 0.7em;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  margin-top: 0.7rem;
}

@media screen and (min-width: 40em) {
  .menu-container .menu-footer span {
    font-size: 0.8em;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

.menu-container .menu-footer span a:hover {
  text-decoration: none;
  color: #8B634B;
}

/*--------------------BACKGROUND COLORS--------------------*/
.bg-blue {
  background-color: #1F2A44;
}

.bg-gold {
  background-color: #8B634B;
}

.bg-white {
  background-color: #F4F4F4;
}

.bg-beige {
  background-color: #F2EEE9;
}

/*--------------------LANDING BACKGROUND--------------------*/
.landing-bg {
  height: 35rem;
  position: relative;
  min-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 30em) {
  .landing-bg {
    height: 30rem;
  }
}

@media screen and (min-width: 40em) {
  .landing-bg {
    height: 35rem;
  }
}

@media screen and (min-width: 64em) {
  .landing-bg {
    height: 40rem;
  }
}

@media screen and (min-width: 90em) {
  .landing-bg {
    height: 45rem;
  }
}

.landing-copy-wrapper {
  color: #F4F4F4;
  position: relative;
  top: 9rem;
  padding: 0 0.9rem;
}

@media screen and (min-width:40em) {
  .landing-copy-wrapper {
    top: 11rem;
  }
}

@media screen and (min-width:64em) {
  .landing-copy-wrapper {
    top: 6rem;
  }
}

.landing-copy-wrapper h2 {
  font-size: 3em;
  font-weight: 200;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-shadow: 1px 1px 10px #1F2A44;
  line-height: 1;
}

@media screen and (min-width:40em) {
  .landing-copy-wrapper h2 {
    font-size: 4.5em;
    text-shadow: 1px 1px 15px #1F2A44;
  }
}

@media screen and (min-width:64em) {
  .landing-copy-wrapper h2 {
    font-size: 6em;
    text-shadow: 1px 1px 20px #1F2A44;
  }
}

.landing-copy-wrapper span {
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.8;
}

@media screen and (min-width:40em) {
  .landing-copy-wrapper span {
    font-size: 1.3em;
  }
}

@media screen and (min-width:64em) {
  .landing-copy-wrapper span {
    font-size: 1.5em;
  }
}

/*--------------------BODY CONTAINER--------------------*/
.body-container {
  padding: 0 1.5rem;
}

.body-container h2 {
  margin-bottom: 1rem;
}

.body-padding {
  padding: 4rem 1.5rem;
}

@media screen and (min-width:40em) {
  .body-padding {
    padding: 6rem 1.5rem;
  }
}

.body-padding.small {
  padding: 3rem 1.5rem;
}

@media screen and (min-width:40em) {
  .body-padding.small {
    padding: 4rem 1.5rem;
  }
}

.desp-container {
  margin-bottom: 2.5rem;
}

@media screen and (min-width:40em) {
  .desp-container {
    margin-bottom: 4rem;
  }
}

.desp-container h3 {
  color: #A3A3A3;
  font-weight: 200;
  font-size: 2.5em;
  margin-bottom: 0.5rem;
}

@media screen and (min-width:40em) {
  .desp-container h3 {
    font-size: 3.2em;
    margin-bottom: 1rem;
  }
}

/*--------------------HOME--------------------*/
.landing-bg.hero-bg {
  height: 48rem;
  position: relative;
  min-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 40em) {
  .landing-bg.hero-bg {
    height: 40rem;
  }
}

@media screen and (min-width: 64em) {
  .landing-bg.hero-bg {
    height: 50rem;
  }
}

@media screen and (min-width: 90em) {
  .landing-bg.hero-bg {
    height: 55rem;
  }
}

.hero-bg.home {
  background: url(../img/bg/kb-web-img-index-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .hero-bg.home {
    background: url(../img/bg/kb-web-img-index-l.jpg) no-repeat cover center scroll;
  }
}

.logo-for-landing-page {
  content: url(../img/logo/kingsblade-logo-index.svg);
  margin: 0 auto;
  width: 70%;
}

@media screen and (min-width: 40em) {
  .logo-for-landing-page {
    width: 50%;
  }
}

@media screen and (min-width: 64em) {
  .logo-for-landing-page {
    width: 40%;
  }
}

.hero-bg.home p {
  font-size: 1em;
}

@media screen and (min-width: 64em) {
  .hero-bg.home p {
    font-size: 1.2em;
  }
}

.log-in-form {
  margin: 2rem;
}

.log-in-form h4 {
  color: #F4F4F4;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.log-in-form p {
  line-height: 1;
  color: #F4F4F4;
}

.log-in-form input {
  margin: 1rem 0;
}

/*--------------------NEXT SECTION--------------------*/
#next-sc {
  border-top: 1px solid #8B634B;
}

.next-sc-text {
  color: #F4F4F4;
}

.next-eyebrow {
  font-size: 1em;
  line-height: 1;
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 1rem;
  display: block;
}

@media screen and (min-width:40em) {
  .next-eyebrow {
    font-size: 1.2em;
  }
}

.next-sc-text p {
  font-size: 1.5em;
  line-height: 1;
}

@media screen and (min-width:40em) {
  .next-sc-text p {
    font-size: 2em;
  }
}

.next-sc-text a {
  font-size: 1.3em;
  letter-spacing: 0.05em;
}

/*--------------------FOOTER--------------------*/
footer {
  padding-top: 3rem;
  border-top: 1px solid #8B634B;
  background-color: #1F2A44;
}

.brand-mark {
  content: url(../img/logo/kingsblade-mark-01.svg);
  margin-left: 0.4rem;
}

.footer-top {
  margin-bottom: 0rem;
}

@media screen and (min-width:64em) {
  .footer-top {
    margin-bottom: 3rem;
  }
}

.footer-listing label {
  letter-spacing: 0.3em;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #F4F4F4;
}

.footer-listing .margin-top {
  margin-top: 1.2rem;
}

.footer-listing ul li a {
  font-size: 0.9em;
  color: #F4F4F4;
  padding: 0.5rem 0;
  letter-spacing: 0.1em;
}

.footer-listing ul li a:hover {
  color: #8B634B;
  text-decoration: none;
}

.footer-listing address {
  font-size: 0.9em;
  font-weight: 400;
  color: #F4F4F4;
  line-height: 2.1;
  letter-spacing: 0.1em;
  font-style: normal;
  width: 77%;
}

.footer-bottom {
  padding: 1rem 0 3rem 0;
}

@media screen and (min-width:64em) {
  .footer-bottom {
    padding: 1rem 0 2rem 0;
  }
}

.footer-contact span,
.footer-contact span a,
.footer-contact span a:hover {
  font-size: 0.95em;
  letter-spacing: 0.1em;
  padding: 0 1rem 1rem 1rem;
  font-weight: 400;
  color: #F4F4F4;
}

.footer-legal span,
.footer-contact span {
  display: inline-block;
  color: #F4F4F4;
  padding-left: 0.5rem;
}

.footer-legal span {
  font-size: 0.8em;
  letter-spacing: 0.05em;
  padding-left: 0.5rem;
}

.footer-legal span a,
.footer-legal span a:hover {
  color: #F4F4F4;
}

.footer-legal-copy {
  display: inline-block;
  font-weight: 400;
}

.footer-legal-link {
  display: inline-block;
  color: #F4F4F4;
  padding: 0 1rem;
  border-right: 1px solid #F4F4F4;
}

.footer-legal-link:last-child {
  border: none;
}

/*--------------------FIRM--------------------*/
.landing-bg.firm {
  background: url(../img/bg/kb-web-img-firm-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.firm {
    background: url(../img/bg/kb-web-img-firm-l.jpg) no-repeat cover center scroll;
  }
}

.feature-eyebrow {
  font-size: 2em;
  line-height: 1;
  font-weight: 200;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-left: 0.15rem;
  margin-bottom: 1rem;
  display: block;
}

@media screen and (min-width:40em) {
  .feature-eyebrow {
    font-size: 2.5em;
  }
}

.brief-funds-container {
  height: 15rem;
  position: relative;
  min-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 -0.8rem;
}

@media screen and (min-width: 40em) {
  .brief-funds-container {
    height: 20rem;
  }
}

.wrapper-centered {
  position: relative;
  top: 22%;
  margin-left: 1.7rem;
}

@media screen and (min-width: 40em) {
  .wrapper-centered {
    top: 30%;
    margin-left: 0rem;
  }
}

.body-padding.firm-updates-top {
  padding: 4rem 1.5rem 0rem 1.5rem;
}

@media screen and (min-width:40em) {
  .body-padding.firm-updates-top {
    padding: 6rem 1.5rem 0rem 1.5rem;
  }
}

.body-padding.firm-updates {
  padding: 0rem 1.5rem 3rem 1.5rem;
}

@media screen and (min-width:40em) {
  .body-padding.firm-updates {
    padding: 0rem 1.5rem 4rem 1.5rem;
  }
}

.brief-funds-container.funds {
  background: url(../img/bg/kb-web-img-funds-sc-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  border-right: 1px solid #8B634B;
}

.brief-funds-container.team {
  background: url(../img/bg/kb-web-img-team-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.brief-funds-container span {
  color: #F4F4F4;
  font-size: 2em;
}

@media screen and (min-width: 40em) {
  .brief-funds-container span {
    font-size: 2.7em;
  }
}

.brief-funds-container a {
  margin-top: 1rem;
}

.listing-item {
  background-color: #F4F4F4;
  padding: 2rem;
  cursor: pointer;
}

@media screen and (min-width:40em) {
  .listing-item {
    padding: 1.5rem;
  }
}

@media screen and (min-width:64em) {
  .listing-item {
    padding: 2rem;
  }
}

.listing-item:hover {
  -moz-box-shadow: 0px 0px 30px rgba(68, 68, 68, 0.2);
  -webkit-box-shadow: 0px 0px 30px rgba(68, 68, 68, 0.2);
  box-shadow: 0px 0px 30px rgba(68, 68, 68, 0.2);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.listing-item,
.listing-itemr:hover {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.listing-item a:hover {
  text-decoration: none;
}

.updates-container .date {
  font-weight: 700;
}

.updates-container h3 {
  font-size: 1.2em;
  color: #1F2A44;
  margin: 1rem 0;
}

@media screen and (min-width:40em) {
  .updates-container h3 {
    font-size: 1.5em;
  }
}

/*--------------------HISTORY--------------------*/
.body-padding.history {
  padding: 4rem 1.5rem 1rem 1.5rem;
}

@media screen and (min-width:40em) {
  .body-padding.history {
    padding: 6rem 1.5rem 2rem 1.5rem;
  }
}

.landing-bg.history {
  background: url(../img/bg/kb-web-img-history-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.history {
    background: url(../img/bg/kb-web-img-history-l.jpg) no-repeat cover center scroll;
  }
}

.img-history {
  height: 20rem;
  position: relative;
  min-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 40em) {
  .img-history {
    height: 35rem;
  }
}

@media screen and (min-width: 64em) {
  .img-history {
    height: 50rem;
  }
}

.img-history.one {
  background: url(../img/history/kb-web-img-history-1-l.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.img-history.two {
  background: url(../img/history/kb-web-img-history-2-l.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.img-history.three {
  background: url(../img/history/kb-web-img-history-3-l.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

/*--------------------STRATEGY--------------------*/
.landing-bg.strategy {
  background: url(../img/bg/kb-web-img-strategy-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.strategy {
    background: url(../img/bg/kb-web-img-strategy-l.jpg) no-repeat cover center scroll;
  }
}

.strategy.white,
.strategy.white h3 {
  color: #F4F4F4;
}

.strategy h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
}

.strategy .desp-container {
  margin-bottom: 1.5rem;
}

/*--------------------FUNDS--------------------*/
.landing-bg.funds {
  background: url(../img/bg/kb-web-img-funds-sc-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.funds {
    background: url(../img/bg/kb-web-img-funds-sc-l.jpg) no-repeat cover center scroll;
  }
}

.strategy tbody {
  border-left: none;
  border-right: none;
}

.strategy .type {
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B634B;
  padding: 1.5rem 0 0 0;
  line-height: 1;
}

@media screen and (min-width: 40em) {
  .strategy .type {
    padding: 1.5rem 0.8rem 1.5rem 0;
  }
}

.strategy .company {
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1;
  padding: 0.8rem 0 1.5rem 0;
}

@media screen and (min-width: 40em) {
  .strategy .company {
    font-weight: 300;
    font-size: 1.5em;
    padding: 1.5rem;
  }
}

@media screen and (min-width: 64em) {
  .strategy .company {
    font-weight: 200;
    font-size: 2em;
  }
}

/*--------------------TEAM--------------------*/
.landing-bg.team {
  background: url(../img/bg/kb-web-img-team-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.team {
    background: url(../img/bg/kb-web-img-team-l.jpg) no-repeat cover center scroll;
  }
}

.team .job-title {
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8B634B;
  padding-left: 0.1rem;
  line-height: 1;
  display: inline-block;
}

.team h3 {
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1;
  color: #1F2A44;
  padding: 1rem 0 0 0;
  margin-bottom: 0;
}

@media screen and (min-width: 40em) {
  .team h3 {
    font-weight: 300;
    font-size: 1.5em;
  }
}

@media screen and (min-width: 64em) {
  .team h3 {
    font-weight: 200;
    font-size: 2em;
  }
}

/*--------------------UPDATES--------------------*/
.landing-bg.reports {
  background: url(../img/bg/kb-web-img-reports-sc-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.reports {
    background: url(../img/bg/kb-web-img-reports-sc-l.jpg) no-repeat cover center scroll;
  }
}

.reports button {
  margin-top: 3rem;
}

/*--------------------UPDATES--------------------*/
.landing-bg.updates {
  background: url(../img/bg/kb-web-img-updates-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.updates {
    background: url(../img/bg/kb-web-img-updates-l.jpg) no-repeat cover center scroll;
  }
}

.updates button {
  margin-top: 3rem;
}

.updates .inline,
.updates .button-group {
  display: inline-block;
}

.updates .inline {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0.5rem 3rem 0.5rem 0;
}

.updates .button-group .primary {
  font-size: 1em;
  padding: 0.6rem 1rem 0.5rem 1rem;
  margin: 0 0.5rem 0.5rem 0;
}

@media screen and (min-width: 40em) {
  .updates .button-group .primary {
    margin: 0.5rem;
  }
}

.updates .icon {
  font-size: 1.2em;
  padding: 0.5rem;
  margin: 0.6rem 0 0.5rem 0.5rem;
}

.updates-container.row {
  border-bottom: 1px solid #DCD0C0;
}

.updates-container.row .date {
  color: #8B634B;
}

.updates-container.row h3 {
  margin-top: 1rem;
}

@media screen and (min-width: 64em) {
  .updates-container.row h3 {
    margin-top: 0;
  }
}

/*--------------------CONTACT--------------------*/
.landing-bg.contact {
  background: url(../img/bg/kb-web-img-contact-sc-s.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

@media screen and (min-width: 40em) {
  .landing-bg.contact {
    background: url(../img/bg/kb-web-img-contact-sc-l.jpg) no-repeat cover center scroll;
  }
}

.contact .company .name {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.contact address {
  font-size: 1.2em;
  font-style: normal;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  width: 96%;
}

.contact .company a {
  font-size: 1.2em;
  font-weight: 300;
  padding: 0;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #1F2A44;
}

.contact .company a:hover {
  text-decoration: none;
  color: #8B634B;
}

.contact .call-out {
  border: 1px solid #DCD0C0;
  padding: 1rem 1rem 0rem 1rem;
}

@media screen and (min-width: 40em) {
  .contact .call-out {
    padding: 2rem 2rem 1rem 2rem;
  }
}

.investor-relation .title {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.investor-relation li {
  margin-bottom: 1rem;
}

.investor-relation .title,
.investor-relation .name,
.investor-relation a {
  font-size: 1em;
}

@media screen and (min-width: 64em) {

  .investor-relation .title,
  .investor-relation .name,
  .investor-relation a {
    font-size: 1.1em;
  }
}

.investor-relation a {
  font-weight: 300;
  padding: 0;
  letter-spacing: 0.1em;
  color: #1F2A44;
}

.investor-relation a:hover {
  text-decoration: none;
  color: #8B634B;
}

/*--------------------PRIVACY & TERMS--------------------*/
.landing-bg-terms {
  height: 15rem;
}

@media screen and (min-width: 40em) {
  .landing-bg-terms {
    height: 20rem;
  }
}

.landing-copy-wrapper-terms {
  color: #F4F4F4;
  position: relative;
  top: 9rem;
  padding: 0 0.7rem;
}

@media screen and (min-width:40em) {
  .landing-copy-wrapper-terms {
    top: 10.5rem;
    padding: 0 0.4rem;
  }
}

.landing-copy-wrapper-terms h2 {
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
}

.terms h3 {
  margin-bottom: 1rem;
}

/*-------------------------------------------------------DELETE LATER------------------------------------------------------------*/
.filter {
  margin: 1rem 0;
}

.filter-container {
  border-bottom: 1px solid #E3E3E3;
}

.filter-container .filter-title {
  font-weight: 700;
  color: #100C08;
}

.filter-container.margin-top {
  margin-top: 1rem;
}

.filter-container label {
  text-transform: capitalize;
  color: #7C7C7B;
  font-size: 0.9em;
  letter-spacing: -0.02em;
}

.filter-container li:last-child {
  margin-bottom: 1rem;
}

.filter-button {
  margin-top: 1.5rem;
}

.sorting-container li a {
  text-transform: capitalize;
  color: #7C7C7B;
  font-size: 0.9em;
  letter-spacing: -0.02em;
  -webkit-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -ms-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.sorting-container li a:hover {
  text-decoration: none;
  color: #100C08;
}

.sorting-container li a:active {
  color: #BDBCBC;
}

/*--------------------CUSTOM DIRECTIONAL ICON--------------------*/
.dropdown.menu>li.is-dropdown-submenu-parent>a::after {
  font-family: 'icomoon' !important;
  border: inset 0px;
  content: "\e93a";
  right: 1rem;
  margin-top: -0.3rem;
  font-size: .7em;
  -webkit-text-stroke: 0.5px;
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a::after {
  font-family: 'icomoon' !important;
  border: inset 0px;
  content: "\e93a";
  top: 1.1rem;
  right: 2rem;
  transform: rotate(0deg);
  font-size: .7em;
  -webkit-text-stroke: 0.5px;
}

.accordion-menu .is-accordion-submenu-parent[aria-expanded='true']>a::after {
  transform: rotate(180deg);
  top: 1.6rem;
  right: 1.4rem;
}

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a::after,
.accordion-menu .is-accordion-submenu-parent[aria-expanded='true']>a::after {
  -webkit-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -ms-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

select {
  background-image: url("../img/icomoon/SVG/chevron-down.svg");
  background-size: 0.8rem 0.8rem;
  background-color: transparent;
}

/*
input[type="text"], input[type="password"], input[type="email"], input[type="submit"], textarea{
	height: 3.4375rem !important;
	border-radius: 0.2rem !important;
}
*/
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="submit"]:focus, textarea:focus {
  outline: none;
  border: 1px solid #8B634B;
  background-color: #fefefe;
  box-shadow: 0 0 0 #8B634B;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

.alert-box.alert {
  max-width: 33rem;
  margin-bottom: 2rem;
}

.alert-box.success {
  max-width: 33rem;
  margin-bottom: 2rem;
}

.reveal-modal-bg {
  z-index: unset !important;
}

.reveal-modal-bg {
  position: fixed !important;
}

.reveal, .menu-bg {
  position: fixed !important;
}

button:hover, button:focus, .button:hover, .button:focus {
  background-color: unset;
}

#pop_menu {
  top: 0 !important;
  bottom: 0;
  position: fixed !important;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  margin-top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  height: 100vh !important;
  min-height: 100vh;
  width: 100vw !important;
  max-width: none;
  margin-left: 0;
  padding: 0;
  border: none;
  z-index: 99;
}

.reveal {
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.revealogo {
  padding-top: 1.3rem;
}

label {
  cursor: unset;
}

.not-active {
  color: #000000;
}

.footer-listing ul li a.not-active:hover {
  color: unset;
}

.subsc {
  font-size: 1.1rem !important;
}

@media screen and (max-width: 64em) {
  .footer-legal {
    text-align: center;
    padding-top: 0.5rem;
  }

  .footer-padding {
    text-align: center;
    padding-top: 1.5rem;
  }

  .aligncenter {
    text-align: center;
  }

  .footer-listing address {
    width: unset !important;
  }

  .reveal {
    margin-top: 1.4rem !important;
  }
}

.menu-container .menu-box span {
  margin-left: unset !important;
}

.portraitonly {
  display: none;
}

@media screen and (max-width: 767px) and (orientation:portrait) {
  .portraitonly {
    display: none;
  }
}

@media screen and (max-width: 767px) and (orientation:landscape) {
  .orientationonly {
    display: none;
  }

  .portraitonly {
    display: block;
  }
}

/*--------------------FOUNDATION DROPDOWN--------------------*/
.f-dropdown {
  border-radius: 4px !important;
  padding: 0.3rem 0;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  border: none;
  background: #eeeeee;
  max-width: 150px;
  opacity: 0;
  /* make it see through for effects */
  transition: visibility 0s linear 0.25s, opacity 0.25s linear;
}

.f-dropdown.open::before, .f-dropdown.open::after {
  display: none;
}

.f-open-dropdown {
  opacity: 1;
  transition-delay: 0s;
}

.f-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #555;
  font-size: 13px;
}

.f-dropdown li a:hover {
  background: #e0e0e0;
}