html {
  scroll-behavior: smooth;
}

a, button, .btn {
  transition: all 1s;
}

h2 {
  border-bottom: 2px solid #efdab9;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 45px;
}

.text-yellow {
  color: #efdab9;
}

.lead {
  font-size: 22px;
  font-weight: 300;
}

.icon-menu {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
}

.site-navbar {
  border-bottom: 2px solid #121212;
  position: fixed;
  background: #000;
}

.nav-link::before, 
.nav-item.active .nav-link::before {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: 20px;
  /*right: 0;*/
  margin: auto;
  bottom: 0;
  transition: 0.5s transform ease;
  transform: scale3d(0,1,1);
  transform-origin: 50% 50%;
  background: #000;
}

.nav-link:hover::before, .nav-link.active::before {
  transform: scale3d(1,1,1);
}

.section-full-height {
  min-height: 100vh;
  align-content: center;
  align-items: center;
}

.section-full-height-first {
  min-height: calc(100vh - 185px);
  align-content: center;
  align-items: center;
  margin-top: 185px;
}

.p-185 {
  padding-top: 185px;
  padding-bottom: 185px;
}

.btn-secondary {
  color: #000;
  border-color: #fff;
  background-color: #fff;
  padding: 12px 24px;
  font-size: 18px;
  min-width: 220px;
  font-family: 'NunitoSans-SemiBold';
}

.btn-secondary:hover {
    background-color: #efdab9 !important;
    color: #353437 !important;
}

.bg-yellow {
  background-color: #efdab9;
}

.table-bordered th, .table-bordered td {
  border-color: #efdab9;
}

.text-black {
  color: #000;
}

.mt-50 {
  margin-top: 50px;
}

.text-underline {
  text-decoration: underline !important;
}

.team-member {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  border-top-right-radius: 100%;
  margin-bottom: 20px;
}

.team-member img {
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 100%;
}

.team-member h4 {
  text-transform: uppercase;
  font-size: 16px;
  color: #efdab9;
}

.dyv-graph{
  /*max-width: 860px;*/
  display: block;
  margin: 0 auto;
}

.dyv-graph img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  margin-top: 50px;
}

.footer {
  border-top: 2px solid #121212;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 70px;
}

@media only screen and (max-width: 1400px) {
  .site-navbar .site-logo a {
    font-size: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .site-navbar .site-logo a {
    font-size: 70px;
  }
}

@media only screen and (max-width: 575px) {
  .site-navbar .site-logo a {
    font-size: 50px;
  }
  .p-185 {
      padding-top: 117px;
      padding-bottom: 117px;
  }
  .table th, .table td{
    padding: 5px;
  }
  .footer{
    margin-top: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .site-navbar .site-logo a {
    font-size: 35px;
  }
}