table {
  line-height: normal;
  font-weight: normal;
  font-size: medium;
  font-style: normal;
}

@media (min-width: 991px) {
  .banner--full-screen {
    height: 95vh;
  }
}

div.landing-header[data-kt-sticky-enabled="true"] .menu.menu-column .menu-item .menu-link, div.inner-header .menu.menu-column .menu-item .menu-link {
  color: var(--bs-primary) !important;
}

div.inner-header .landing-header {
  background-color: #ffffff !important;
}

div.pricing-table {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.box-shadow-theme {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
}

.landing-header .menu .menu-link {
  font-weight: 600;
}

.landing-header .menu .menu-link.active {
  color: var(--bs-primary) !important;
  background-color: rgba(239, 242, 245, 0.8) !important;
}

.banner-text {
  position: absolute;
  width: 100% !important;
  height: calc(100% - 100px) !important;
  top: 100px;
  left: 0;
}

.btn-theme-primary {
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 0;
  border: 2px solid var(--bs-primary) !important;
}

.btn-theme-primary i {
  color: #fff;
}

.btn-theme-primary:hover {
  background-color: transparent;
  color: var(--bs-primary);
}

.btn-theme-primary:hover i {
  color: var(--bs-primary);
}

.bg-inner-header {
  background-color: var(--bs-page-bg) !important;
}

/*
* Animated Banner Button Styling
*/

a.banner-btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  color: #fff;
  text-transform: uppercase;
  background-color: var(--bs-secondary-theme);
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 22px;
  /* box-shadow: 0 20px 50px rgba(0,0,0,.5); */
  overflow: hidden;
}

a.banner-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  /* background: rgba(56, 102, 56, 0.7); */
  background: rgba(23, 198, 83, 0.7);
  z-index: -1;
}

a.banner-btn span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ffffff, #ffffff);
  animation: animate1 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

a.banner-btn span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  animation: animate2 2s linear infinite;
  animation-delay: 2s;
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

a.banner-btn span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #ffffff, #ffffff);
  animation: animate3 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

a.banner-btn span:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #ffffff, #ffffff);
  animation: animate4 2s linear infinite;
  animation-delay: 2s;
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.bg-dark-gray {
  background-color: #232427;
  background-color: var(--bs-primary);
}

.color-dark-gray {
  color: #232427;
  color: var(--bs-primary);
}

.home-card {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2), inset -5px -5px 15px rgba(255, 255, 255, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  box-shadow: rgba(255, 255, 255, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  border-radius: 15px;
  transition: 0.5s;
}

.home-card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #2a2b2f;
  background: var(--bs-primary);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

.home-card .box:hover {
  transform: translateY(-50px);
}

.home-card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.07);
}

.home-card .box .content {
  padding: 20px;
  text-align: center;
}

.home-card .box .content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
  color: var(--bs-secondary-theme);
}

.home-card .box .content h3 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

.home-card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

.home-card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.home-card .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}

.banner-btn-2 {
  transform: translate(0) !important;
  bottom: auto !important;
  left: unset !important;
  /* width: 80%; */
}

a.banner-btn-2::before, a.banner-btn-2::before {
  width: 100%;
}

i.ki-cross, i.ki-cross-circle {
  color: #fa0000;
}

.scroll-down {
  position: absolute;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  bottom: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-down a {
  width: 70px;
}

@media (max-width: 1200px) {
  .home-card {
    min-width: 80%;
  }

  .home-card .box .content h2 {
    font-size: 6rem;
  }
}

@media (max-width: 992px) {
  .home-card .box .content h2 {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .banner-btn-2 {
    left: 0 !important;
    width: 100%;
  }

  .home-card .box .content h2 {
    font-size: 8rem;
  }
}

.table td {
  vertical-align: middle;
}

#spanAvgScore {
  margin-left: 77px;
}

#spanAvgDecScore {
  margin-left: 107px;
}

.btn-check:active + .btn.btn-active-orange,
.btn-check:checked + .btn.btn-active-orange,
.btn.btn-active-orange.active,
.btn.btn-active-orange.show,
.btn.btn-active-orange:active:not(.btn-active),
.btn.btn-active-orange:focus:not(.btn-active),
.btn.btn-active-orange:hover:not(.btn-active),
.show > .btn.btn-active-orange {
  color: #fff;
  border-color: #ffad0f;
  background-color: #ffad0f!important;
}

.btn-check:active + .btn.btn-active-orange .svg-icon,
.btn-check:active + .btn.btn-active-orange i,
.btn-check:checked + .btn.btn-active-orange .svg-icon,
.btn-check:checked + .btn.btn-active-orange i,
.btn.btn-active-orange.active .svg-icon,
.btn.btn-active-orange.active i,
.btn.btn-active-orange.show .svg-icon,
.btn.btn-active-orange.show i,
.btn.btn-active-orange:active:not(.btn-active) .svg-icon,
.btn.btn-active-orange:active:not(.btn-active) i,
.btn.btn-active-orange:focus:not(.btn-active) .svg-icon,
.btn.btn-active-orange:focus:not(.btn-active) i,
.btn.btn-active-orange:hover:not(.btn-active) .svg-icon,
.btn.btn-active-orange:hover:not(.btn-active) i,
.show > .btn.btn-active-orange .svg-icon,
.show > .btn.btn-active-orange i,
.btn-check:active + .btn.btn-active-orange.dropdown-toggle:after,
.btn-check:checked + .btn.btn-active-orange.dropdown-toggle:after,
.btn.btn-active-orange.active.dropdown-toggle:after,
.btn.btn-active-orange.show.dropdown-toggle:after,
.btn.btn-active-orange:active:not(.btn-active).dropdown-toggle:after,
.btn.btn-active-orange:focus:not(.btn-active).dropdown-toggle:after,
.btn.btn-active-orange:hover:not(.btn-active).dropdown-toggle:after,
.show > .btn.btn-active-orange.dropdown-toggle:after,
.btn-check:active + .btn.btn-light-orange .svg-icon,
.btn-check:active + .btn.btn-light-orange i,
.btn-check:checked + .btn.btn-light-orange .svg-icon,
.btn-check:checked + .btn.btn-light-orange i,
.btn.btn-light-orange.active .svg-icon,
.btn.btn-light-orange.active i,
.btn.btn-light-orange.show .svg-icon,
.btn.btn-light-orange.show i,
.btn.btn-light-orange:active:not(.btn-active) .svg-icon,
.btn.btn-light-orange:active:not(.btn-active) i,
.btn.btn-light-orange:focus:not(.btn-active) .svg-icon,
.btn.btn-light-orange:focus:not(.btn-active) i,
.btn.btn-light-orange:hover:not(.btn-active) .svg-icon,
.btn.btn-light-orange:hover:not(.btn-active) i,
.show > .btn.btn-light-orange .svg-icon,
.show > .btn.btn-light-orange i,
.btn-check:active + .btn.btn-light-orange.dropdown-toggle:after,
.btn-check:checked + .btn.btn-light-orange.dropdown-toggle:after,
.btn.btn-light-orange.active.dropdown-toggle:after,
.btn.btn-light-orange.show.dropdown-toggle:after,
.btn.btn-light-orange:active:not(.btn-active).dropdown-toggle:after,
.btn.btn-light-orange:focus:not(.btn-active).dropdown-toggle:after,
.btn.btn-light-orange:hover:not(.btn-active).dropdown-toggle:after,
.show > .btn.btn-light-orange.dropdown-toggle:after{
  color: #fff;
}

.btn.btn-light-orange {
  color: #ffad0f;
  border-color: rgba(255, 175, 15, 0.1);
  background-color: rgba(255, 175, 15, 0.1);
}

.btn.btn-light-orange .svg-icon,
.btn.btn-light-orange i,
.btn.btn-light-orange.dropdown-toggle:after {
  color: #ffad0f;
}

.btn-check:active + .btn.btn-light-orange,
.btn-check:checked + .btn.btn-light-orange,
.btn.btn-light-orange.active,
.btn.btn-light-orange.show,
.btn.btn-light-orange:active:not(.btn-active),
.btn.btn-light-orange:focus:not(.btn-active),
.btn.btn-light-orange:hover:not(.btn-active),
.show > .btn.btn-light-orange {
  color: #fff;
  border-color: #ffad0f;
  background-color: #ffad0f !important;
}

#kt_aside #kt_aside_menu .menu-icon > * {
  font-size: 2rem !important;
}

.btn.btn-outline {
  padding: calc(0.775rem + 1px) calc(1.5rem + 1px);
}

.symbol.symbol-rounded, .symbol.symbol-rounded .symbol-label, .symbol.symbol-rounded > img {
  border-radius: 0.95rem !important;
}