/* Custom CSS for website */
body {
  padding-top: 81px;
  font-family: 'Open Sans', 'Roboto';
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.home {
  padding-top: 0;
}

/* This changes the color for links */
a {
  color: #0a6ebd;
}

a:hover {
  font-weight: bold;
  color: #0a6ebd;
}
/* Text */
.title, .card-title, .info-title, .footer-brand, .footer-big h5, .footer-big h4, .media .media-heading {
  font-family: 'Google Sans', Roboto, Helvetica, Arial, sans-serif;
}

.icons-dark .material-icons {
  color: #033;
}

.icons-custom .material-icons {
  color: teal;
  /*color: #003333;*/
}

.white-bg-transparent {
  background: rgba(255, 255, 255, 0.2);
}

.black-bg-transparent {
  background: rgba(0, 0, 0, 0.7);
}

.gray-bg {
  background: #eeeeee96;
}

.centered-background {
  background-size: cover;
  background-position: center;
}

#typewriter_title {
  min-height: 60px;
  margin-top: 0;
}

#typewriter_title span {
  display: none;
}

.no-mg-bottom {
  margin-bottom: 0;
}

.page-header {
  height: calc(100vh - 81px)
}

.navbar .navbar-brand {
  padding: 0;
  margin-top: -6px;
  transition: 0.3s all;
}

.navbar .navbar-brand img {
  height: 52px;
  width: auto;
  transition: 0.3s height;
}

/* Home */
.solutions {
    padding-top: 80px;
}
.solutions .title {
  margin-bottom: 30px;
}
.description, .info p {
  color: #444;
}

.solution-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 40px;
  padding: 50px 70px;
  padding-left: 0;
  border-top: 5px solid white;
  box-shadow: 0 -3px 0 black;
  height: calc(100% - 40px);
}

@media (min-width: 520px) and (max-width: 991px) {
  .solution-container {
    padding-right: 35%;
  }
}

.solution-container:hover img {
  transform: scale(1.1);
}

.solution-container h4 {
  font-weight: bold;
  position: relative;
  color: black;
  line-height: 30px;
  margin: 0 0 15px;
}

.solution-container h4::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #00B050;
  bottom: -5px;
  position: absolute;
}

.solution-container img {
  width: 100%;
  position: absolute;
  z-index: -1;
  transition: .25s transform;
}

.solution-container p {
  height: 92px;
}

.solution-container a {
  font-weight: bold;
  color: black;
  position: relative;
}

.solution-container a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid #00B050;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  position: absolute;
  right: -16px;
  top: 5px;
  transition: 0.25s right;
  margin-top: 4px;
}

.solution-container a:hover::after {
  right: -19px;
}

.solution-container .box {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  width: 100%;
}

.subscribe-line.subscribe-line-image {
  background: #283e4a;
}

.subscribe-line.subscribe-line-image:after {
  background-color: transparent;
}

/* Footer */
footer {
  /*background: #66615b;*/
  background: #283e4a;
  /*background: #212123;*/
  /*background: #444;*/
  color: white;
  text-align: left;
  padding: 40px 0 50px;
  margin-top: 40px;
}

footer h3 {
  font-weight: bold;
}

footer ul li a {
  text-transform: none;
}

footer ul li a:hover,
footer a:hover {
  color: white;
  font-weight: 700;
  font-size: 13px;
}

footer a {
  color: white;
}



footer .social {
  margin-top: 10px;
}

footer .social a {
  font-size: 25px;
  margin-right: 10px;
}

footer .social .btn-just-icon {
  background: white;
  color: #007853;
}

footer ul li {
  display: block;
}

footer ul li a {
  padding: 0;
  font-size: 14px;
  font-weight: 300;
}

footer .logo-group {
  margin: 10px 0 15px;
}

@media (max-width: 991px) {
  footer .logo-group {
    margin-top: 35px;
  }
}

footer .logo-group img {
  margin-right: 20px;
}

/* Biography */
.bio-hero {
  position: relative;
  /*background: #36383d;*/
  background: #283e4a;
  /*background: #4d4d4d;*/
  /*background: #4f5b69;*/

  /*padding: 45px 20px 0;*/
  color: white;
}

.bio-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*background: url(../img/custom/dots.svg);*/
  background-size: 4px auto;
  z-index: 1;
  pointer-events: none;
}

.bio-hero .btn {
  background: #999;
  color: #363836;
  transform: scale(0.8);
}

.bio-hero-inner {
  /*display: flex;*/
  /*align-items: center;*/
  /*text-align: left;*/
  /*margin: 0 auto;*/
  /*max-width: 1095px;*/
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .bio-hero-inner {
      max-width: 720px;
    }
}

@media (min-width: 992px) {
  .bio-hero-inner {
      max-width: 960px;
    }
}

@media (min-width: 1200px) {
  .bio-hero-inner {
    max-width: 1140px;
  }
}


.bio-hero-headshot {
    max-width: 300px;
    margin: 0 auto;
}

.biography {
  margin: 60px auto;
}

.biography-main-content {
  position: relative;
  padding-top: 20px;
}

.upper-line {
  position: relative;
  padding-top: 20px;
}

.upper-line::before,
.biography-main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 3px;
  background: #00B050;
}

.upper-line-center::before {
  left: 50%;
  margin-left: -37.5px;
}

.biography-sidebar-group {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 14px;
}

.biography-sidebar-group:first-child {
  margin-top: 0;
}

.biography-sidebar-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 3px;
  background: #00B050;
}

[class^=projects-] .info {
  padding: 0;

}

@media (min-width: 768px) {

  .bio-hero-headshot {
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    max-width: 100%;
  }

  .bio-hero-content {
  flex: 1.25 1.25 0;
  margin-top: 10px;
  padding-right: 10px;
  }

  .bio-hero-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .bio-hero-inner {
    text-align: center;
  }

  .bio-hero-content { padding-top: 1px; }
  .bio-hero-content .upper-line::before { display: none; }

}


@media screen and (max-width: 991px) {
  body {
    padding-top: 70px;
  }

  .page-header {
  height: calc(100vh - 70px)
  }
}

@media screen and (max-width: 1199px) {
  .navbar .navbar-brand {
    margin: 0;
    padding: 3px 0 0;
  }

  .navbar .navbar-brand img {
    height: 42px;
  }
}

@media screen and (max-width: 575px) {
  .white-bg-transparent {
    margin: 0 !important;
    /*min-height: calc(100vh - 70px);*/
  }
}

.notification {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    list-style-type: none;
    right: 20px;
    cursor: pointer;
    z-index: 1050;
    height: 100px;
}
.notify-content {
    margin-top: -25px;
    margin-right: 12px;
}
.notify{
    display: none;
}
.messages {
    width: 90%;
    list-style-type: none;
    background: #c3f3af;
    text-align: left;
    padding: 15px;
    border-radius: 0px;
    font-size: 15px;
    z-index: 100;
    height: 50px;
    text-align: center;
    padding: 15px 20px;
    margin-left: 5%;
    margin-top: 15px;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: grey;
}

.nav-item.active {
  border-bottom: 1px solid red;
}

.errors {
    color: red;
}

.google-recaptcha-container {
    margin-left: 30px;
}

.dropdown-toggle:after {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

.dropdown.show .material-icons {
    transform: rotate(180deg);
}

.dropdown-toggle .material-icons {
    will-change: transform;
    transition: -webkit-transform 150ms linear;
    -webkit-transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    color: #f44336;
}

.subscribe-line .title {
  margin-top: 0px;
}

.card .card-header.card-header-image img,
.card .card-header.card-header-image {
  border-radius: 0px;
}

#features .section-image {
  background: transparent;
  background-color: transparent;
  color: grey;
}

#features .section-image:after {
  background-color: transparent;
}

#contact-form .card-header {
  background: #283e4a;
  box-shadow: 0 5px 20px 0px grey, 0 13px 24px -11px grey;
}

#contact-form .btn.btn-primary {
  background-color: #f44336
}

.contactus-1.section-image {
  padding: 0;
}

#contactus.solutions {
  padding-top: 10px;
}

#contactus a,
#contactus a:hover {
  color: white;
}

#contactus a:hover {
  font-weight: bold;
}

@media (max-height: 600px) {
  .page-header {
    height: auto;
    padding-bottom: 30px
  }
}

/* fix for IE 11 */
.solution-container img {
    top: 0;
    left: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .navbar > .container {
        flex: none;
    }
}

.advisors-section {
  min-height: 480px;
  background: #66615b14;
}

.btn-commodore {
    background-color: #00B050;
    border-color: #00B050;
}


#cc-main .cm__desc {
    font-size: 0.75em;
}

#cc-main .cm__title {
    font-size: 0.8em;
}

.investor-access-link {
    border: 1px solid #0d0;
    border-radius: 5px;
    padding: 0;
    box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12);
}

.investor-access-link .nav-link {
    padding: 10px 5px !important;
}


.main-section-text {
    padding-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.header-filter::before {
    /* background: rgb(42 141 63 / 49%); */
    background: transparent;

}

@media (max-width: 800px) {
    /* .header-filter {
        background-size: auto 300px;
        background-repeat: no-repeat;
        background-position: top;
        height: 620px;

    }

    .header-filter {
        background-color: rgb(245, 245, 245);
    }

    .main-section-text {
        margin-bottom: 0;
        margin-top: 250px;
    } */
    .main-section-text {
        background-color: rgba(255, 255, 255, 0.8);
    }
}

@media only screen
    and (min-device-width: 810px)
    and (max-device-width: 1180px) {
    .main-section-text {
        background: rgba(255, 255, 255, 0.4);
        max-width: 300px;
    }
}

.navbar.navbar-expand-lg {
    padding-top: 0;
}

.navbar-brand {
    height: 55px;
}

.sections-page + footer {
    margin-top: 0px;
}

.main-content {
    flex: 1;
}


.form-control {
    background-image: linear-gradient(to top, #000000 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(0, 176, 80, 0) 1px) !important;
}

.form-control:invalid {
    background-image: linear-gradient(to top, #00b050 2px, rgba(244, 67, 54, 0) 2px), linear-gradient(to top, #d2d2d2 1px, rgba(0, 176, 80, 0) 1px) !important;
}

.text-black {
    color: #000 !important;
}

.country-input-field {
    display: none;
}

.category-files-section {
    padding: 10px 20px;
    background: #fff;
}

.text-center {
    text-align: center !important;
}

.footnotes-section {
    text-align: left;
    font-size: 11px;
    line-height: normal;
}

.footnotes-section ol {
    padding-inline-start: 10px;
}

.nav-tabs .nav-item .nav-link {
    color: #888 !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0!important;
}

.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-item .nav-link:hover {
    color: rgba(0, 0, 0, 0.87) !important;
    border-bottom: 1px solid #888 !important;
}

.nav-pills .nav-item .nav-link.active {
    border-radius: 0!important;
    background-color: rgba(0, 150, 0, 0.8);
    box-shadow: none;
}

.nav-pills .nav-item .nav-link:hover {
    border-radius: 0!important;
}

.nav-tabs {
    padding: 0!important;
}

.uploaded-date-column {
    width: 300px;
}

.view-action-column {
    width: 50px;
}

.non-us-person-only-warning,
.us-data-room-warning {
    display: none;
}

.table thead tr th {
    font-size: 1em;
}

.faq-card {
    border-bottom: 1px solid #ddd;
}

.faq-header {
    display: flex;
    justify-content: space-between;
}

.faq-answer{
    background-color: rgba(0,0,0,.03);
}

.faq-button {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
}

.faq-button[aria-expanded="true"] .faq-chevron-icon {
    rotate: 90deg;
    transition-duration: 0.5s;
}

.faq-button[aria-expanded="false"] .faq-chevron-icon {
    rotate: 0deg;
    transition-duration: 0.5s;
}

.faq-header .btn-link,
.faq-header .btn-link:hover,
.faq-header .btn-link:focus {
    color: #000;
    font-size: 16px;
    text-transform: none;
}

.faq-header .ripple-container {
    display: none;
}

.data-room-list li {
    font-size: 14px;
    padding: 5px;
}

.third-party-providers-container {
    align-items: center;
}

.third-party-providers-container .image-container {
    height: 80px;
}

.third-party-providers-container .image-container.short-height {
    height: 60px;
}

.third-party-providers-container img {
    height: 70px;
}

.third-party-providers-container .third-party-item {
    margin-right: 40px;
}

.third-party-item p {
    font-weight: bold;
}
