@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");

:root {
  --brand: #2469eb;
}

.brand-color {
  color: var(--brand);
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
}

.w-20 {
  width: 20%;
}

.btn-main {
  background-color: #0160b9;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.btn-main:hover {
  background-color: #004d96;
  color: #ffffff;
}

.btn-main1 {
  background-color: #ffffff;
  color: #0160b9;
  transition: all 0.3s ease-in-out;
}

.btn-main1:hover {
  background-color: whitesmoke;
  color: #0160b9;
}

.font-xxs {
  font-size: xx-small;
}

.font-xs {
  font-size: x-small;
}

.font-s {
  font-size: small;
}

.font-md {
  font-size: medium;
}

.font-l {
  font-size: large;
}

.font-xl {
  font-size: x-large;
  font-weight: 200;
}

.color-dark-blue {
  color: #0060b9;
}

.card-bg-color {
  background-color: #f0f7ff;
}

.border-box {
  border: #004d96;
  box-sizing: border-box;
  border-radius: 35%;
}

.multiline-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6em;
}

ul {
  padding: 0;
  padding-top: 8px;
  font-size: small;
  color: #000000;
}

.form-text {
  color: #656565;
  font-size: small;
}

.brand-logo {
  width: 25%;
}

.top-banner {
  padding-bottom: 162px;
  padding-top: 100px;
}

.col-img {
  width: 15%;
  height: max-content;
  object-fit: cover;
}

.card-img {
  width: 95px;
  height: 95px;
  padding: 12px;
}

.text-justify {
  text-align: justify;
}

.text-gray {
  color: #5d5d5d;
}

.footer-ul {
  list-style: none;
  color: #94a3b8;
}

.tag {
  background-color: #f0f7ff;
  color: #064786;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 15px;
}

.navbar-content {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 275px;
  background-color: #fff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  z-index: 1050;
}

.navbar-content.show {
  right: 0;
}

.navbar-toggler {
  z-index: 1060;
}

.navbar-nav .nav-link.active {
  color: #ffd700;
  font-weight: bold;
  border-bottom: 2px solid #ffd700;
}

.navbar-nav .nav-link:active,
/* when the link is pressed */
.navbar-nav .nav-link.active:active {
  font-weight: bold;
  /* Keep the font bold */
  color: #ffd700;
  /* Same color to indicate it's still active */
}

.scrollable-div::-webkit-scrollbar {
  width: 8px;
  transition: all 0.3s ease-in-out;
}

.scrollable-div::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.scrollable-div::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scrollable-div {
  max-height: 1000px;
  min-height: 500px;
  overflow-y: scroll;
}

.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6,
.markdown p,
.markdown span {
  margin: 0;
}

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