/* Apply a natural box layout model to all elements. */
/* Used to fix overflowing of the img element when it has padding applied to it.
Note: don't use padding on images that need to be 100% res, or disable the box-sizing property. */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

html {
  width: 100%;
  height: 100%;
  /*background: hsl(232, 43%, 20%);*/
  /*background: linear-gradient(90deg, hsl(232, 43%, 20%) 0%, hsl(232, 43%, 20%) 50%,  hsl(170, 63%, 20%) 50%, hsl(170, 63%, 20%) 100%);*/
}

body {
/*  border-left: 2px solid hsl(170, 63%, 20%);
  border-right: 2px solid hsl(170, 63%, 20%);
  margin-right: -2px;
  margin-left: -2px;*/

  max-width: 840px;
  min-height: 100%;
  margin: 0 auto;

  /*box-shadow: 0px 0px 3px black;*/
}

main {
  padding: 25px;
/*
  border-left: 4px solid hsl(232, 43%, 20%);
  border-right: 4px solid hsl(232, 43%, 20%);
  margin-right: 2px;
  margin-left: 2px;*/
}

header {
  /*border-bottom: 1px solid #bcc3ce;*/
  margin-bottom: 20px;
}

.container {
  margin-bottom: 20px;
}

header .navbar-center {
  font-weight: 500;
}

footer {
  display: block;
  clear: both;
  margin: 0 auto;
  text-align: center;
  padding: 50px 50px 0 50px
}

footer .divider {
  margin-right: -25px !important;
  margin-left: -25px !important;
}

/*https://www.labnol.org/internet/embed-responsive-google-maps/28333/*/
.google-maps {
    position: relative;
    padding-bottom: 75%; /*This is the aspect ratio*/
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/*a,
.btn-link {
  color: #040563 !important;
}
*/

a {
  text-decoration: underline;
}
a:hover {
  color: black;
}

.navbar-center .btn-link {
  font-weight: 600;
  /*border: none;*/
  /*border-top: solid 1px rgba(0,0,0,0.3);*/
  border-radius: 0;
  border-width: .1rem;
  text-transform: uppercase;
}
.navbar-center .btn-link.current {
  font-weight: 600;
  border-bottom: solid .1rem #135348;
}
.navbar-center .btn-link:hover {
  color: black;
}

.fotorama__caption__wrap {
  display: block !important;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/*.fotorama > img {width: 100%;}*/

.nojs.fotorama > a {
  display: block;
  display: block !important;
}