html {
  position: absolute;
  min-height: 100%;
}

html, body {
  margin: 0;
  width: 100%;
}

body {
  background-color: #F6F9FC;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
@media (max-width: 992px) {
  body {
    position: absolute;
    height: 100%;
    min-height: initial;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

b, strong {
  font-weight: 500;
}

.tooltip-inner {
  background-color: #fff;
  color: #232f3e;
  max-width: 600px;
  padding: 1rem 2rem 1rem 1rem;
  text-align: left;
  pointer-events: all;
  max-height: 290px;
  overflow-y: auto;
  position: relative;
  direction: rtl;
}
.tooltip-inner .tooltip-content {
  direction: ltr;
  height: 100%;
}
@media (max-width: 992px) {
  .tooltip-inner {
    position: relative;
    max-height: 55vh;
  }
}
.tooltip-inner::-webkit-scrollbar {
  width: 26px;
  background-color: #fff;
  border-radius: 5px;
}
.tooltip-inner::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.tooltip-inner::-webkit-scrollbar-thumb {
  border: 10px solid #fff;
  border-radius: 50px;
  width: 6px;
  background-color: rgba(35, 47, 62, 0.55);
}
.tooltip-inner::-webkit-scrollbar-track {
  border: 10px solid rgba(0, 0, 0, 0);
  width: 6px;
  border-radius: 0.25rem;
  background-color: #fff;
}

.text-red {
  color: #cb0000;
}

.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
  top: -10px !important;
}
@media (max-width: 992px) {
  .bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
    margin-left: 10px;
  }
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-width: 0.6rem 0.6rem 0;
  border-top-color: #fff;
}

i[data-dismiss=tooltip] {
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 5px;
  color: rgba(35, 47, 62, 0.6117647059);
}

.background-overlay {
  display: none;
}

header.site-header {
  display: flex;
  width: 100%;
  align-items: center;
  background-color: #232f3e;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 1rem;
  position: relative;
  z-index: 1000;
}
header.site-header #logo {
  width: 180px;
  height: 45px;
  background-image: url("../images/logo-mobile.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header-logo-link {
  display: flex;
  align-items: center;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.hamburger-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: #f2f2f2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Slide Menu */
.slide-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: #232f3e;
  z-index: 10001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}
.slide-menu.open {
  right: 0;
}

/* Close Button */
.close-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #f2f2f2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.close-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Menu Links */
.menu-links {
  list-style: none;
  margin: 0;
  padding: 80px 24px 24px;
}
.menu-links li {
  margin-bottom: 4px;
}
.menu-links li a {
  display: block;
  padding: 16px 20px;
  color: #f2f2f2;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.menu-links li a:hover {
  background-color: rgba(255, 153, 0, 0.15);
  color: #ff9900;
}
.menu-links li.active a {
  background-color: rgba(255, 153, 0, 0.2);
  color: #ff9900;
  font-weight: 500;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

nav.navbar.short-navbar {
  display: none;
}
nav .navbar-nav {
  justify-content: space-evenly;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  nav .navbar-nav {
    height: calc(100vh - 66px);
    background-color: #232f3e;
    z-index: 9999;
  }
  nav .navbar-nav li {
    text-align: center;
  }
}
nav .navbar-nav li:hover > a {
  color: #ff9900;
}
nav {
  background-color: #232f3e;
}
nav .nav-link {
  color: #f2f2f2;
}
nav .nav-item.active .nav-link {
  background: #fff;
  color: #232f3e;
  border-radius: 5px;
}
nav .nav-item.active .nav-link:hover {
  color: #232f3e;
}
nav .additional-link-mobile {
  display: none;
}
@media (max-width: 992px) {
  nav .additional-link-mobile {
    display: block;
  }
}
nav button.navbar-toggler {
  outline: none;
}
nav button.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
nav #logo-mobile {
  display: none;
  position: relative;
  left: -20px;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  background-image: url("../images/logo-mobile.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  nav #logo-mobile {
    display: block;
  }
}

main {
  flex: 1;
  position: relative;
}

.result-carousel {
  margin: 100px auto;
  width: 600px;
  background: rgba(35, 47, 62, 0.9);
  border-radius: 50%;
  overflow: hidden;
  font-weight: 300;
}
@media (max-width: 992px) {
  .result-carousel {
    margin: 0 auto;
    padding-top: 30px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: rgba(35, 47, 62, 0.75);
  }
  .result-carousel #results-carousel {
    height: 100%;
  }
}
@media (max-width: 992px) {
  .result-carousel .carousel-inner {
    height: 100%;
  }
}
.result-carousel .carousel-item {
  height: 600px;
  padding: 6rem 1rem;
  border-radius: 50%;
  overflow: hidden;
  color: #f2f2f2;
  pointer-events: none;
}
.result-carousel .carousel-item > h3 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .result-carousel .carousel-item {
    padding: 1.4rem;
    height: 100%;
    border-radius: 0;
  }
}
.result-carousel .carousel-item.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
}
.result-carousel .carousel-item-next,
.result-carousel .carousel-item-prev {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result-carousel .carousel-indicators {
  margin-bottom: 40px;
}
.result-carousel .valuation-price {
  margin-top: 50px;
  color: #ff9900;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 992px) {
  .result-carousel .valuation-price {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 30px;
  }
}
.result-carousel .valuation-price-tooltip {
  margin-top: 5px;
  color: rgba(242, 242, 242, 0.8);
  font-weight: 300;
  text-align: center;
}
.result-carousel .subtitle {
  margin-top: 100px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .result-carousel .subtitle {
    margin-top: 0;
    position: absolute;
    top: calc(50% - 50px);
  }
}
.result-carousel .gauge-wrapper {
  opacity: 0;
  width: 350px;
  height: 300px;
  position: relative;
}
@media (max-width: 992px) {
  .result-carousel .gauge-wrapper {
    width: 300px;
  }
}
.result-carousel canvas#confidence-gauge {
  width: 100%;
  height: 300px;
  position: relative;
  top: -80px;
}
.result-carousel .valuation-text {
  text-align: center;
  max-width: 440px;
  line-height: 3rem;
  margin-top: 15px;
  height: 100px;
  display: flex;
  align-items: center;
}
.result-carousel .valuation-strength {
  color: #72de6f;
}
.result-carousel .valuation-weakness {
  color: #f77878;
}
.result-carousel .valuation-info {
  text-align: center;
  font-weight: 300;
  margin-top: 20px;
  padding: 0 1rem;
  color: rgb(216.5, 216.5, 216.5);
  position: absolute;
  top: 260px;
  max-width: 80%;
}
@media (max-width: 992px) {
  .result-carousel .valuation-info {
    top: calc(50% - 50px);
    margin-top: 10px;
    max-width: 90%;
    padding: 0 3rem;
  }
}
.result-carousel .carousel-indicators li {
  margin-left: 4px;
  margin-right: 4px;
  overflow: hidden;
}
.result-carousel .carousel-indicators li::after {
  content: "";
  background-color: rgb(255, 153, 0);
  width: 30px;
  transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
  height: 3px;
  display: block;
}
.result-carousel .carousel-indicators li.active::after {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  transition: transform 7s linear;
  -webkit-transition: -webkit-transform 7s linear;
}
.result-carousel .label-low {
  position: absolute;
  bottom: 0;
  left: 40px;
  color: #232f3e;
}
.result-carousel .label-high {
  position: absolute;
  bottom: 0;
  right: 40px;
  color: #232f3e;
}
.result-carousel .help-link {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: underline;
  position: absolute;
  bottom: 140px;
}
@media (max-width: 992px) {
  .result-carousel .help-link {
    bottom: 20%;
  }
}

.gauge-wrapper {
  position: relative;
  width: 350px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .gauge-wrapper {
    width: 300px;
  }
}
@media (max-width: 380px) {
  .gauge-wrapper {
    width: 260px;
  }
}

.label-low {
  position: absolute;
  bottom: 0;
  left: 30px;
  color: #232f3e;
}
@media (max-width: 992px) {
  .label-low {
    left: 25px;
  }
}

.label-high {
  position: absolute;
  bottom: 0;
  right: 30px;
  color: #232f3e;
}
@media (max-width: 992px) {
  .label-high {
    right: 24px;
  }
}

.help-link {
  font-size: 1.2rem;
  color: #232f3e;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .help-link {
    bottom: 20%;
  }
}

.gauge-row {
  margin: 1rem 0 2rem 0;
}

.call-to-action {
  background-color: #71d26e;
  color: #f2f2f2;
  padding: 1rem 3em;
  display: block;
  font-size: 1.8rem;
  width: fit-content;
  margin: 2rem auto 1rem auto;
  border-radius: 5px;
}
.call-to-action:hover {
  text-decoration: none;
  color: #f2f2f2;
  background-color: #67c864;
}
@media (max-width: 992px) {
  .call-to-action {
    padding: 1rem;
    margin: 1rem auto;
  }
}

main .detailed-info-container .call-to-action-container h4 {
  color: #232f3e;
}

main .detailed-info-container h4.valuation-strength {
  color: #47b944;
}

main .detailed-info-container h4.valuation-weakness {
  color: #f77878;
}

.action-circle {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(35, 47, 62, 0.7);
  box-shadow: inset 0 0 0 2px rgba(35, 47, 62, 0.55);
  color: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-400px);
}
@media (max-width: 992px) {
  .action-circle {
    display: none;
    position: absolute;
    top: 60%;
    height: 100px;
    width: 150px;
    padding: 0 0.5rem;
    font-size: 0.8rem;
    border-radius: 5px;
    background: rgba(35, 47, 62, 0.5);
  }
  .action-circle.mobile {
    display: flex;
  }
}
.action-circle:hover {
  text-decoration: none;
}
.action-circle > div > span {
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 992px) {
  .action-circle > div > span {
    font-size: 1.1rem;
  }
}
.action-circle.grow-business-circle {
  top: 80px;
  color: #232f3e;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-450px);
}
.action-circle.grow-business-circle:hover {
  color: #232f3e;
}
@media (max-width: 1100px) {
  .action-circle.grow-business-circle {
    transform: translateX(-400px);
  }
}
@media (max-width: 992px) {
  .action-circle.grow-business-circle {
    transform: translateX(-60%);
    top: 60%;
    background: transparent;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    color: white;
  }
}
.action-circle.grow-business-circle:hover {
  color: #fff;
  background: rgba(35, 47, 62, 0.7);
  box-shadow: inset 0 0 0 2px rgba(35, 47, 62, 0.7);
}
@media (max-width: 350px) {
  .action-circle.grow-business-circle {
    transform: translateX(-52%);
  }
}
.action-circle.sell-business-circle {
  bottom: 80px;
  transform: translateX(450px);
}
.action-circle.sell-business-circle .sell-for {
  display: inline;
}
.action-circle.sell-business-circle:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #232f3e;
}
@media (max-width: 1100px) {
  .action-circle.sell-business-circle {
    transform: translateX(400px);
  }
}
@media (max-width: 992px) {
  .action-circle.sell-business-circle {
    transform: translateX(60%);
    top: 60%;
    bottom: auto;
  }
}
@media (max-width: 350px) {
  .action-circle.sell-business-circle {
    transform: translateX(52%);
  }
}

.num-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  margin-right: 5px;
}
.num-circle.circle-green {
  background: #72de6f;
}
.num-circle.circle-red {
  background: #f77878;
}

footer {
  background-color: #232f3e;
}

.page-footer {
  color: #f2f2f2;
}

.contact-info > dt {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-info > dd {
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-basis: auto;
}

.footer-nav-list {
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  padding: 0;
}

.footer-nav-link {
  color: #f2f2f2;
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background-color: transparent;
}

.footer-nav-link:hover {
  text-decoration: none;
  color: #ff9900;
}

.prefooter-ribbon {
  background-color: #ff9900;
  height: 15px;
}

.prefooter-content {
  background-color: #f2f2f2;
  min-height: 250px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.prefooter-content h3 {
  color: #ff9900;
}

.portrait-small {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  height: 130px;
  width: 130px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.founder-box {
  padding-left: 10px;
  padding-right: 10px;
}

.short-navbar {
  min-height: 0px;
}

.short-navbar ul {
  justify-content: flex-start;
  padding-top: 20px;
}

@media (min-width: 992px) {
  .navbar-expand-lg.short-navbar {
    height: 5px;
  }
}
.fa-angle-double-up {
  font-size: 2rem;
  color: #ff9900;
  margin-right: -1rem;
}

.fa-angle-double-down {
  font-size: 2rem;
  color: #ff9900;
  margin-right: -1rem;
}

.fa-linkedin-in {
  font-size: 2rem;
  color: #ff9900;
  margin: 1rem;
}

.fa-twitter {
  font-size: 2rem;
  color: #ff9900;
  margin: 1rem;
}

.legal-disclaimer {
  font-size: 0.7rem;
  font-weight: lighter;
  padding-bottom: 1rem;
  padding-left: 0;
}

.footer-copyright {
  font-weight: lighter;
}

.under-over-valuation > h3 {
  font-size: 2rem;
  vertical-align: baseline;
}

.fa-sad-tear {
  font-size: 20rem;
  color: #ff9900;
  padding: 2rem;
}

.fa-grin-stars {
  font-size: 10rem;
  color: #ff9900;
  padding: 2rem;
}

.text-based-page {
  background-color: #fff;
}

.text-based-page > div > div {
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.portrait-large {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  height: 200px;
  width: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.bio-box {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.bio-blurb > h5 {
  color: #ff9900;
}

.text-based-page h1 {
  color: #ff9900;
}

.text-based-page p li {
  font-weight: lighter;
}

@media (max-width: 576px) {
  .footer-nav-list {
    display: block;
  }
}
#lower_section {
  background: none;
  background-color: #f2f2f2;
  border-top: 15px solid #ff9900;
}

#main_section {
  background: none;
  background-color: #FFF;
}

.form-submit .btn-info {
  background-color: #ff9900;
  border-color: #ff9900;
}

.fa-comment.text-info {
  color: #ff9900 !important;
}

.fa-envelope.text-info {
  color: #ff9900 !important;
}

.fa-user.text-info {
  color: #ff9900 !important;
}

.input-group-text {
  background-color: #f2f2f2;
}

.contact-info p {
  line-height: 0.5;
}

.contact-info h2 {
  padding-bottom: 1rem;
}

.contact-info {
  padding-bottom: 2rem;
}

.form-submit .btn-info:not(:disabled):not(.disabled):active {
  background-color: #ffc107;
  border-color: #ffc107;
}

.gif-loading {
  width: 38px;
  height: 38px;
  margin-right: 5px;
  background-image: url("../images/loading.gif");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

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