:root {
  --primary-color-dark: #05394f;
  --primary-color-gray: #130d5f;
  --danger-color: #f22727;
  --danger-color-dark: rgb(172, 17, 17);
}
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  line-height: 1.6;
}

.text-md {
  font-size: 1rem;
}
.text-sm {
  font-size: 0.8rem;
}
.text-fb {
  color: var(--primary--color);
}

p a:link,
p a:visited,
.link:link,
.link:visited {
  color: rgb(0, 119, 247);
  transition: color 200ms ease;
}

p a:hover,
p a:active,
.link:hover,
.link:active {
  color: red;
}

.text-muted {
  color: rgb(82, 82, 82) !important;
}

.bg-light-gray {
  background-color: rgb(216, 216, 216);
}

.bg-green {
  background-color: rgb(12, 162, 12) !important;
}
.bg-green:hover,
.bg-green:active {
  background-color: rgb(8, 126, 8) !important;
}

.bg-dark {
  background-color: var(--primary-color-dark) !important;
}
/* .bg-light {
  background-color: var(--light-color) !important;
} */
.bg-danger {
  background-color: var(--danger-color) !important;
}
.bg-danger:hover,
.bg-danger:active {
  background-color: var(--danger-color-dark) !important;
}
.logo {
  height: 1.8rem;
}

.avatar {
  height: 2.8rem;
  width: 2.8rem;
}

.text-dark {
  color: #031f2b !important;
}

strong {
  font-weight: 600;
}

.avatars:hover {
  transform: scale(1.05);
}

/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .avatars {
    width: 40%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .avatars {
    width: 20%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}
