.border-top {
  border-top: 1px solid #e8e8e8 !important;
}

.rounded {
  border-radius: 0.2rem !important;
  overflow: hidden;
}

.rounded-n {
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.shadow {
  box-shadow: rgba(33, 33, 33, 0.3) 0px 6px 6px -4px !important;
}

html {
  height: 100% !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  color: #565656;
  height: 100% !important;
  -webkit-overflow-scrolling: touch;
}
body:not(.focus-visible) :focus:not(.focus-visible) {
  outline: 0 !important;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

hr {
  margin: 3rem 0 !important;
  border-top: 1px solid #e0d7eb !important;
}

@media (min-width: 1320px) {
  .container, .container-lg {
    max-width: 1400px;
  }
}

.container-fluid {
  max-width: 1800px;
}

.tabs {
  margin: 3rem 0;
  font-family: "Encode Sans Condensed", sans-serif;
  padding: 0;
}
@media (max-width: 768px) {
  .tabs {
    margin: 0.45rem 0;
  }
}
.tabs .nav-tabs {
  margin: 0 0 2rem 0;
  border-bottom: none;
}
.tabs .nav-tabs .nav-link {
  padding: 0.75rem 2rem;
  border: none;
  background-color: rgba(80, 50, 145, 0.075);
  border-radius: 50rem;
  margin: 0 0.35rem;
  color: #503291;
}
.tabs .nav-tabs .nav-link:hover {
  background-color: rgba(80, 50, 145, 0.2);
}
.tabs .nav-tabs .nav-link.active {
  background-color: rgba(80, 50, 145, 0.5);
  color: #ffffff;
}