@charset "UTF-8";
body {
  padding-top: 3.5rem;
  color: white;
}

main {
  padding: 2rem 0;
  background-color: #151515;
}

img {
  max-width: 100%;
}

a {
  color: rgb(62, 166, 255);
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: rgb(62, 166, 255);
}

body {
  font-family: Lato, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Raleway, sans-serif;
  color: rgb(255, 255, 255);
}

p {
  color: rgb(200, 195, 188);
}

blockquote {
  color: #999;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 3rem auto;
  width: 80%;
}

.navbar-brand small {
  font-family: Lato, sans-serif;
  font-size: 75%;
  font-weight: 400;
  margin-left: 0.5rem;
}

.lead {
  font-size: 1.2rem;
}

.btn.btn-primary {
  background-color: #2f2f2f;
  border-color: #b5b5b5;
  transition: all 0.2s ease-in-out;
}
.btn.btn-primary:hover {
  background-color: #090909;
  border-color: #8f8f8f;
}

.card .card-img, .card .card-img-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.navbar.fixed-top {
  background-color: #151515;
  /*border-bottom: 1px solid #ddd;*/
  font-family: Raleway, sans-serif;
  box-shadow: 0 0 2rem rgb(0, 0, 0);
}
.navbar.fixed-top .navbar-nav {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}
.navbar.fixed-top .navbar-nav .active a {
  color: #f94c3b;
}
.navbar.fixed-top .navbar-toggler {
  padding: 0.25rem 0.5rem;
}
.navbar.fixed-top .navbar-toggler .navbar-toggler-icon {
  width: 1em;
  height: 1em;
}

@media (max-width: 767px) {
  .navbar.fixed-top .container {
    max-width: 100%;
  }
}
header {
  background-position: 50% 50%;
  /*background-color: black;*/
  background-size: cover;
  position: relative;
}
header.black {
  background-color: #151515;
}
header .container {
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
  max-width: 800px;
}
header h1 {
  font-size: 3.6rem;
  text-transform: uppercase;
}
header .lead {
  font-size: 1.35rem;
}
header.has-image {
  color: #eee;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
header.has-image .dimmer {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.block {
  padding: 0 0 1.5rem;
}
.block img {
  border-radius: 0.25rem;
}
.block.column-block .col-md:not(:last-child) {
  margin-bottom: 1.5rem;
}
.block.column-block img {
  height: 100%;
  object-fit: cover;
}
.block.image-gallery-block .carousel {
  border-radius: 0.25rem;
  overflow: hidden;
  max-width: 400px;
  margin: auto;
}

@media (min-width: 768px) {
  .block.column-block .col-md:not(:last-child) {
    margin-bottom: 0;
  }
}
.post-meta {
  font-size: 0.875rem;
}
.post-meta span:not(:last-child)::after {
  content: "◆";
  display: inline-block;
  padding: 0 0.25rem;
}

.archive article {
  padding-bottom: 1rem;
}

.comments .alert {
  background: #f4f4f4;
  padding: 2rem 2.5rem;
}

#cookieConsent {
  z-index: 1000;
  position: fixed;
  width: 400px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px 20px 30px;
  font-family: "Century Gothic", sans-serif;
  box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
  text-align: center;
  border-radius: 30px 30px 0 0;
}

#cookieConsent button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: none;
  background-color: green;
  padding: 10px 50px;
  margin-top: -5px;
  color: white;
  transition: all ease 0.5s;
}

#cookieConsent button:hover {
  background-color: darkgreen;
}

#cookieConsent h3 {
  font-size: 22px;
  color: black;
}

#cookieConsent p {
  font-size: 13px;
  color: black;
}

#cookieConsent a {
  color: gray;
  text-decoration: underline;
}