html {
  scroll-padding-top: 64px;
}

body {
  min-height: 100vh;
}

:root {
  --primary--stone: #eee;
  --primary--black: #161616;
  --primary--white: #fcfcfc;
  --text--neutral-lighter: #ccc;
  --text--neutral-light: #aaa;
  --primary--orange: #ff5a14;
  --primary--blue: #30B0C7;
}

#header {
  background: var(--primary--black);
  padding: 2vh 1.5vh;
  padding: 1.5%;
}

header {
  position: relative;
  background-color: var(--primary--black);
  height: 82vh;
  /*min-height: 25rem;*/
  width: 100%;
  overflow: hidden;
}

header .container {
  position: relative;
  z-index: 2;
}

img.footer-bg {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 600px;
}

img.header-bg {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.sec-black {
  background-color: var(--primary--black);
  padding: 70px 0;
}

.sec-lighter {
  background-color: var(--primary--lighter);
  padding: 70px 0;
}

.label_wrapper {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
  margin-bottom: 1em;
}

.label_number-wrapper {
  background-color: var(--primary--blue);
  color: var(--primary--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.label_number-wrapper p {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.5;
  font-size: 15px;
}

.label_text {
  /*color: var(--primary--white);*/
}

.wrap-img-hover {
  width: auto;
  /*display: block;*/
  margin: 0 5px;
}

.wrap-img-hover a {
  display: block;
  overflow: hidden;
  position: relative;
}

.wrap-img-hover a .figcaption {
  transition: all .25s;
  opacity: 0.5;
  background: var(--primary--blue);
  background: rgb(from var(--primary--blue) r g b / 0.9);
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*display: block;*/
  color: #fff;
  transform: translateY(101%);
}

div.figcaption {
  position: absolute;
  text-align: center;
}

@media (hover: hover) {
  .wrap-img-hover a:hover .figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}

/* .wrap-img-hover a:hover .figcaption {
  transform: translateY(0);
  opacity: 1;
} */

div.figcaption div.bottom {
  position: absolute;
  bottom: 0;
  word-break: break-all;
  padding: 10px;
  text-align: left;
}

div.figcaption div.top {
  position: absolute;
  top: 0;
  word-break: break-all;
  padding: 10px;
  font-size: larger;
}

.wrap-img-hover a img {
  transition: all .25s;
  display: block;
  width: 100%;
}

@media (hover: hover) {
  .wrap-img-hover a:hover img {
    transform: scale(1.2,1.2);
    transform-origin: center center;
  }
}

/* .wrap-img-hover a:hover img {
  transform: scale(1.2,1.2);
  transform-origin: center center;
} */

.navbar-inner {
  margin-top: 8px;
}

@media (min-width:768px) {
  .navbar-inner {
    margin-top: 66px;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 2%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.about-item {
  margin-bottom: 2em;
}

footer {
  background: var(--primary--black);
  padding: 50px 1.5% 1em;
  top: 100vh;
  position: sticky;
}

.contact-send {
  width: 100%;
}

@media (min-width: 1200px) {
  .contact-send {
    width: 50%;
  }
}

.nav-logo-img {
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
}

.header-copy {
  width: 100%;
}

@media (min-width: 768px) {
  .header-copy {
    width: 50%;
  }
}

