/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.logo img {
    width: auto;
    height: 50px;
}

/* BANNER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.banner {
    height: 550px;
    background-size: cover; 
    background-attachment: fixed;
    background-position: center center;
}

.banner-model {
    position: absolute;
    transform: translatex(-50%);
    max-width: 65vw;
    left: 50%;
    bottom: -85px;
}

@media (max-width: 1200px) {
    .banner {
        height: 375px;
    }
}

@media (max-width: 1024px) {
    .banner-model {
        max-width: 100vw;
    }
}

.main-content {
    overflow-x: hidden;
}

/* MODEL-LIST
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.card-title a {
    text-decoration: none;
}

.card-title a:hover {
    text-decoration: underline;
}

/* MODEL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.details li {
    margin-bottom: .75rem;
}

/* IMAGE GRID STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.image-grid figure {
    margin-bottom: 0;
}
  
  
/* LIGHTBOX STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.lightbox-modal .modal-content {
    background: var(--lightbox);
}
  
.lightbox-modal .btn-close {
    position: absolute;
    top: 20px;
    right: 18px;
    font-size: 1.2rem;
    z-index: 10;
}
  
.lightbox-modal .modal-body {
    display: flex;
    align-items: center;
    padding: 0;
    text-align: center;
}
  
.lightbox-modal img {
    width: auto;
    max-height: 100vh;
    max-width: 100%;
}
  
.lightbox-modal .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 36, 36, 0.75);
}
  
.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
}
  
.lightbox-modal .carousel-control-prev {
    left: 10px;
}
  
.lightbox-modal .carousel-control-next {
    right: 10px;
}

/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.by {
    text-decoration: none;
}

.by img {
    height: 20px;
    width: auto;
}