:root {
  --bs-primary: #006394;
  --bs-success: #8cc152;
  --bs-danger: #ed3241;
  --bs-warning: #f6bb42;
  --bs-info: #3bafda;
  --bs-primary-rgb: 0, 99, 148;
  --bs-success-rgb: 140, 193, 82;
  --bs-warning-rgb: 246, 187, 66;
  --bs-danger-rgb: 237, 50, 65;
  --bs-info-rgb: 59, 175, 218;
  --color-text: #000c;
  --text-color-primary: #006394;
  --text-color-danger: #da4453;
  --text-color-warning: #f6bb42;
  --text-color-success: #8cc152;
  --text-color-info: #3bafda;
  --text-color-dark: #282a32;
  --bs-dark-rgb: 0, 11, 16;

  /* color-scheme: light dark; */
}
html {
  /* font-size: 62.5%; */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size-adjust: 100%;
  scroll-behavior: smooth;
  --bs-body-font-family: "Poppins", sans-serif;
}
body,
html {
  height: 100%;
}
body {
  font: normal 400 10pt "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-y: auto;
  background-color: #f5f7fa;
  color: var(--color-text);
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.mono,
pre,
code {
  font-family: "JetBrains Mono", monospace;
}
.text-shadow {
  text-shadow: 0px 2px 6px #0009;
}
.text-shadow-sm {
  text-shadow: 0px 1px 2px #0009;
}
/* NAVBAR */
.navbar {
  .nav-link {
    font-size: 11pt;
    color: #fff;
    font-weight: bold;
    background: transparent;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    text-shadow: 0px 1px 2px #0009;
  }

  .nav-link:hover {
    color: var(--bs-primary);
    background-color: white;
    text-shadow: 0px 1px 2px #0000;
  }

  .nav-link.active,
  .dropdown-toggle {
    position: relative;
  }

  .dropdown-toggle.show {
    color: var(--bs-primary);
  }

  .dropdown-menu {
    a {
      color: #333;
      text-shadow: none;
    }
  }
}

a,
a.nav-link {
  color: var(--bs-primary);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0.5rem;
}
.card-a {
  position: relative;
  overflow: hidden;
  img {
    transform: scale(1.2);
    filter: saturate(0.3);
    transition: all 0.3s ease-in-out;
  }

  .card-a-content {
    color: #efefef;
    position: absolute;
    top: 25%;
    width: 100%;
    height: 50%;
    padding: 1rem;
  }
}
.card-a:hover {
  img {
    filter: blur(4px);
    filter: saturate(1);
    transform: scale(1);
  }
}
/* C O V E R */
.cover {
  height: 480px;
  position: relative;
  margin-bottom: 1.5rem;
  display: table;
  width: 100%;

  img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center center;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .overlay-center {
    display: table-cell;
    top: 25%;
    height: 50%;
    vertical-align: middle;
  }
}
.text-outline {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}
/* */

.page-header {
  /* padding: 4.6rem 0 5rem; */
  background-color: #ebebeb;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-header h1 {
  color: #333;
  font: normal 400 3.2rem/1.1 "Poppins", sans-serif;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.page-header h1 span {
  display: block;
  color: #c96;
  font-size: 1.6rem;
  margin-top: 0.8rem;
}

.page-header.page-header-big {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  margin-bottom: 5rem;
}

.page-header.page-header-big h1 span {
  font-size: 1.6rem;
  margin-top: 0.4rem;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .page-header h1 {
    font-size: 3.6rem;
  }

  .page-header h1 span {
    font-size: 1.8rem;
  }

  .page-header.page-header-big {
    min-height: 350px;
  }
}

@media screen and (min-width: 992px) {
  .page-header h1 {
    font-size: 4rem;
  }

  .page-header h1 span {
    font-size: 2rem;
  }

  .page-header.page-header-big {
    min-height: 480px;
  }
}

.dropcap::first-letter {
  initial-letter: 3;
  margin: 0;
  margin-right: 0.2rem;
  font-weight: light;
  color: grey;
}
.card.card-sm {
  padding: 0;
}
.card.card-sm > div {
  padding: 0.5rem;
  margin: 0;
}

.text-muted {
  color: #9999;
}
.page-link {
  color: var(--color-text);
}
.page-link.active {
  font-weight: bold;
  background: var(--bs-primary);
  color: #fff;
}
