/*
$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #eee !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #999 !default;
$gray-600: #777 !default;
$gray-700: #495057 !default;
$gray-800: #333 !default;
$gray-900: #2d2d2d !default;
$black: #000 !default;

$blue: #446e9b !default;
$indigo: #6610f2 !default;
$purple: #6f42c1 !default;
$pink: #e83e8c !default;
$red: #cd0200 !default;
$orange: #fd7e14 !default;
$yellow: #d47500 !default;
$green: #3cb521 !default;
$teal: #20c997 !default;
$cyan: #3399f3 !default;

$primary: $blue !default;
$secondary: $gray-500 !default;
$success: $green !default;
$info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-200 !default;
$dark: $gray-800 !default;

$min-contrast-ratio: 2.65 !default;

// Body

$body-color: $gray-600 !default;

// Links

$link-color: $info !default;

// Fonts

// stylelint-disable-next-line value-keyword-case
$font-family-sans-serif: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$headings-color: $gray-900 !default;

*/
.carousel-caption {
  bottom: 2.5rem;
  border-radius: 10px;
  z-index: 10;
}

.carousel-caption-bg {
  background: rgba(160, 160, 160, 0.5);
  padding: 20px;
}

.carousel-item img {
  min-width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  overflow: hidden;
}

.divider {
  min-height: 1rem;
  height: auto;
}

.divider-50 {
  min-height: 50px;
  height: auto;
}

.divider-60 {
  min-height: 60px;
  height: auto;
}

.divider-70 {
  min-height: 70px;
  height: auto;
}

.divider-80 {
  min-height: 80px;
  height: auto;
}

.divider-90 {
  min-height: 90px;
  height: auto;
}

.divider-100 {
  min-height: 100px;
  height: auto;
}

.divider-110 {
  min-height: 110px;
  height: auto;
}

.divider-120 {
  min-height: 120px;
  height: auto;
}

.divider-130 {
  min-height: 130px;
  height: auto;
}

.divider-140 {
  min-height: 140px;
  height: auto;
}

.divider-150 {
  min-height: 150px;
  height: auto;
}

.divider-160 {
  min-height: 160px;
  height: auto;
}

.divider-170 {
  min-height: 170px;
  height: auto;
}

.divider-180 {
  min-height: 180px;
  height: auto;
}

.divider-190 {
  min-height: 190px;
  height: auto;
}

.divider-200 {
  min-height: 200px;
  height: auto;
}

.divider-left {
  border-left: solid 8px;
  padding: 10px 10px 6px 20px;
  margin: 20px 0 20px;
  background-color: #fcfcfe;
}
.divider-left h2 {
  color: dimgray;
  font-style: italic;
  font-size: 1.8em;
}
.divider-left h3 {
  color: darkgrey;
  font-style: italic;
  font-size: 1.5em;
}

.divider-shadow {
  background-color: rgba(0, 0, 0, 0.1);
  margin: 4px 0 20px;
  padding: 4px 0 4px;
  box-shadow: inset 0 0 0.5em #888888;
  border-radius: 0.5rem;
}

#myCookieConsent {
  z-index: 999;
  min-height: 20px;
  font-family: OpenSans, arial, "sans-serif";
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: fixed;
  color: #fff;
  bottom: 0px;
  right: 10px;
  display: none;
  left: 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
#myCookieConsent div {
  padding: 7px 0 0;
}
#myCookieConsent a {
  color: #ffc107;
}
#myCookieConsent a:hover {
  color: #ffdb6d;
}
#myCookieConsent a#cookieButton {
  display: inline-block;
  font-size: 1.1em;
  background: #ffdb6d;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 20px;
  float: right;
  border-radius: 20px;
}
#myCookieConsent a#cookieButton:hover {
  background: #ffc107;
}

.hero {
  background-repeat: no-repeat;
  background-position: center center;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.image-caption {
  position: relative;
}

.img-caption {
  width: 100%;
  height: auto;
}

.topleft-caption {
  position: absolute;
  top: 8px;
  left: 8px;
}

.topright-caption {
  position: absolute;
  top: 8px;
  right: 8px;
}

.bottomleft-caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.bottomright-caption {
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.centered-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay-target .overlay-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: grey;
}

.overlay-target:hover .overlay-fade {
  opacity: 1;
}

.overlay-top {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: grey;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.overlay-target:hover .overlay-top {
  bottom: 0;
  height: 100%;
}

.overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: grey;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.overlay-target:hover .overlay-bottom {
  height: 100%;
}

.overlay-left {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: grey;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: 0.5s ease;
}

.overlay-target:hover .overlay-left {
  width: 100%;
}

.overlay-right {
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
  background-color: grey;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: 0.5s ease;
}

.overlay-target:hover .overlay-right {
  width: 100%;
  left: 0;
}

.overlay-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.grid-vcenter {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.accent {
  color: rgb(8, 197, 2);
}

.thin-border {
  border: 1px solid;
  padding: 16px;
}

.rounded-circle-0 {
  border-radius: 50% !important;
  padding: 0px;
}

.rounded-circle-10 {
  border-radius: 50% !important;
  padding: 10px;
}

.rounded-circle-20 {
  border-radius: 50% !important;
  padding: 20px;
}

.rounded-circle-30 {
  border-radius: 50% !important;
  padding: 30px;
}

.rounded-circle-40 {
  border-radius: 50% !important;
  padding: 40px;
}

.rounded-circle-50 {
  border-radius: 50% !important;
  padding: 50px;
}

.rounded-circle-60 {
  border-radius: 50% !important;
  padding: 60px;
}

.rounded-circle-70 {
  border-radius: 50% !important;
  padding: 70px;
}

.rounded-circle-80 {
  border-radius: 50% !important;
  padding: 80px;
}

.rounded-circle-90 {
  border-radius: 50% !important;
  padding: 90px;
}

.rounded-circle-100 {
  border-radius: 50% !important;
  padding: 100px;
}

.grid-border-5 {
  border: 5px solid transparent;
}

.grid-border-10 {
  border: 10px solid transparent;
}

.grid-border-15 {
  border: 15px solid transparent;
}

.grid-border-20 {
  border: 20px solid transparent;
}

.grid-border-25 {
  border: 25px solid transparent;
}

.grid-border-30 {
  border: 30px solid transparent;
}

.grid-border-35 {
  border: 35px solid transparent;
}

.grid-border-40 {
  border: 40px solid transparent;
}

.grid-border-45 {
  border: 45px solid transparent;
}

.grid-border-50 {
  border: 50px solid transparent;
}

.shadow-right-5 {
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-10 {
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-15 {
  box-shadow: 15px 15px 15px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-20 {
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-25 {
  box-shadow: 25px 25px 25px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-30 {
  box-shadow: 30px 30px 30px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-35 {
  box-shadow: 35px 35px 35px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-40 {
  box-shadow: 40px 40px 40px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-45 {
  box-shadow: 45px 45px 45px 0 rgba(0, 0, 0, 0.4);
}

.shadow-right-50 {
  box-shadow: 50px 50px 50px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-5 {
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-10 {
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-15 {
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-20 {
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-25 {
  box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-30 {
  box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-35 {
  box-shadow: 0px 0px 35px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-40 {
  box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-45 {
  box-shadow: 0px 0px 45px 0 rgba(0, 0, 0, 0.4);
}

.shadow-center-50 {
  box-shadow: 0px 0px 50px 0 rgba(0, 0, 0, 0.4);
}

.border-round-5 {
  border-radius: 10px;
  padding: 5px;
}

.border-round-10 {
  border-radius: 20px;
  padding: 10px;
}

.border-round-15 {
  border-radius: 30px;
  padding: 15px;
}

.border-round-20 {
  border-radius: 40px;
  padding: 20px;
}

.border-round-25 {
  border-radius: 50px;
  padding: 25px;
}

.border-round-30 {
  border-radius: 60px;
  padding: 30px;
}

.border-round-35 {
  border-radius: 70px;
  padding: 35px;
}

.border-round-40 {
  border-radius: 80px;
  padding: 40px;
}

.border-round-45 {
  border-radius: 90px;
  padding: 45px;
}

.border-round-50 {
  border-radius: 100px;
  padding: 50px;
}

.hbright-50:hover {
  -webkit-filter: brightness(0.5);
  -moz-filter: brightness(0.5);
  -o-filter: brightness(0.5);
  -ms-filter: brightness(0.5);
  filter: brightness(0.5);
}

.hbright-60:hover {
  -webkit-filter: brightness(0.6);
  -moz-filter: brightness(0.6);
  -o-filter: brightness(0.6);
  -ms-filter: brightness(0.6);
  filter: brightness(0.6);
}

.hbright-70:hover {
  -webkit-filter: brightness(0.7);
  -moz-filter: brightness(0.7);
  -o-filter: brightness(0.7);
  -ms-filter: brightness(0.7);
  filter: brightness(0.7);
}

.hbright-80:hover {
  -webkit-filter: brightness(0.8);
  -moz-filter: brightness(0.8);
  -o-filter: brightness(0.8);
  -ms-filter: brightness(0.8);
  filter: brightness(0.8);
}

.hbright-90:hover {
  -webkit-filter: brightness(0.9);
  -moz-filter: brightness(0.9);
  -o-filter: brightness(0.9);
  -ms-filter: brightness(0.9);
  filter: brightness(0.9);
}

.hbright-100:hover {
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
}

.hbright-110:hover {
  -webkit-filter: brightness(1.1);
  -moz-filter: brightness(1.1);
  -o-filter: brightness(1.1);
  -ms-filter: brightness(1.1);
  filter: brightness(1.1);
}

.hbright-120:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -o-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}

.hbright-130:hover {
  -webkit-filter: brightness(1.3);
  -moz-filter: brightness(1.3);
  -o-filter: brightness(1.3);
  -ms-filter: brightness(1.3);
  filter: brightness(1.3);
}

.hbright-140:hover {
  -webkit-filter: brightness(1.4);
  -moz-filter: brightness(1.4);
  -o-filter: brightness(1.4);
  -ms-filter: brightness(1.4);
  filter: brightness(1.4);
}

.hbright-150:hover {
  -webkit-filter: brightness(1.5);
  -moz-filter: brightness(1.5);
  -o-filter: brightness(1.5);
  -ms-filter: brightness(1.5);
  filter: brightness(1.5);
}

body {
  min-height: 75rem;
  padding-top: 64px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: beige;
}

.blog-content {
  padding: 6px;
  background-color: #f7f7ef;
  margin: 20px 0px 20px 0px;
}

.blog-aside {
  padding: 6px;
  background-color: #eef6f6;
  margin: 20px 0px 20px 0px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
}

/*# sourceMappingURL=main.css.map */
