.bg-video {
    height: 90vh !important;
    pointer-events: none;
}

@media only screen and (max-width: 480px) {
    .bg-video {
        height: 40vh !important;
    }
}

.card figure {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    height: 320px;
    object-fit: cover;
}

.h-160 {
    height: 160px !important;
}

.h-160 img {
    object-position: top;
}

.align-start {
    align-items: start;
}

.img-inline img {
    display: inline-block;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.justify-center {
  justify-content: center;
}

@media only screen and (max-width: 480px) {
    .img-inline {
       overflow-x: scroll;
       width: 100%;
       justify-content: flex-start;
    }

    .video-portrait {
      width: 100% !important;
    }
}

#content ul {
    list-style-type: disc;
    margin-left: 1.25rem;
}

  .scrollbar::-webkit-scrollbar {
    height: 10px;
    width: 50% !important;
  }

  .scrollbar::-webkit-scrollbar-track {
    border-radius: 100vh;
    background: rgb(45, 45, 45);
  }

  .scrollbar::-webkit-scrollbar-thumb {
    background: yellow;
    border-radius: 100vh;
    cursor: ew-resize;
  }  

  .lightbox {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 50;
  }
  

  figure.zoom {
    background-position: 50% 50%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
  }
  figure.zoom img:hover {
    opacity: 0;
  }
  figure.zoom img {
    transition: opacity .5s;
    display: block;
    width: 100%;
  }

  .g-img {
    display: none;
  }
  
  .pointer {
    cursor: pointer;
  }

  .relative {
    position: relative;
  }

  .cta {
    bottom: 0;
  }

  .btn.btn-cta {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .flex-row {
    flex-direction: row;
  }

  .overlap-top-right {
    top: -1rem;
    right: -1rem;
    z-index: 2;
  }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 2s ease-out;
}

h1, h2 {
  font-family: 'bebas neue';
}

/* Hamburger */
.hamburger-line {
  display: block;
  position: absolute;
  top: 60px;
  right: 10px;
  z-index: 2; 
  width: 30px;
  height: 30px;
}

.hamburger-line span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: #CA8027;
  border-radius: 2px;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger-line span:nth-child(1) {
  top: 0px;
}

.hamburger-line span:nth-child(2),
.hamburger-line span:nth-child(3) {
  top: 8px;
}

.hamburger-line span:nth-child(4) {
  top: 16px;
}

.hamburger-line.hamburger-open span {
  background: white;
}

.hamburger-line.hamburger-open span:nth-child(1) {
  top: 16px;
  width: 0%;
  left: 50%;
}

.hamburger-line.hamburger-open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger-line.hamburger-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger-line.hamburger-open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.overlay-menu {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-y: auto;
  transition: 0.5s;
}

.overlay-menu a {
  font-size: 1.5rem;
  display: block;
  transition: 0.3s;
}

.content ul {
  padding-left: 1.5rem;
}

.content li {
  list-style: disc;
}

.content a:hover {
  color: #713F12;
}

.team-content p {
  margin-bottom: 0.5rem;
}

.team-content a:hover {
  color: #713F12;
}

.img-team img {
  @media only screen and (max-width: 425px) {
    object-position: 0% 30%;
  }
  @media only screen and (max-width: 375px) {
    object-position: 0% 25%;
  }
}

.img-team div:nth-child(2) img {
  object-position: 0% 20%;
}
.img-team div:nth-child(4) img {
  @media only screen and (max-width: 425px) {
  object-position: 0% 25%;
  }
}

.portfolio-img {
  cursor: pointer;
}

.portfolio-description p {
  margin-bottom: 1rem;
}