.img-viewbook{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;  
}

.btn-gap {
    gap:30px
}

#welcome h3 {
    height:70px
}

/* Makes the names default to two lines for consistency */
.pt-2 h3{
    width: min-content;
    margin: auto;
    margin-bottom: 1rem;
}
#countdown{
    display: none;
}

.hideCountdown {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: white;
    text-decoration: underline;
    border: none;
}

#countdown.active{
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--trent-green);
    background-image: url('hero_image.png');
    background-size: cover;
    background-position: center;
    z-index: 50;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;

}

.green_tint{
    background-color: var(--trent-green);
    opacity: 0.6;
    position: fixed;
    width: 100%;
    height: 100%;
}

#countdown .clock
{
    
    font-family: Oswald, Helvetica Neue, Helvetica, sans-serif;
    color: var(--trent-gold);
    align-items: center;
    display: flex;
    gap: 2vw;
    z-index: 55;

}

.clock p {
    text-shadow: 1px 1px 2px black;
    font-size: 5vw;
}

.voh_content{
    display: flex;
    flex-flow: row nowrap;
    gap: 5vw;
    align-items: center;
    max-width: 90%;
}

.left{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: auto;
    z-index: 55;
    max-width: 30%;
}

.left h2{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--trent-gold);
    line-height: 1;
}

.left img,
.right img{
    display: block;
    max-width: 100%;
}

.trent_logo{
    width: 16vw;  
    z-index: 55;
    min-width: 200px;
}

.laptop{
    position: relative;
    z-index: 55;
}

.connect_list li {
    width: fit-content;
}

.scroll-arrow{
    cursor: pointer;
}

@media screen and (max-width: 767px) {

    .voh_content{
        flex-flow: column nowrap;
        max-height: 80%;
    }
    .right{
        display: none;
    }
    
}

#virtual_tour .col-5 {
    color: #000;
    p{
        color: #000;
    }
}

.voh-tour-link{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 16/9;
    img {
        position: absolute;
        top:0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        filter: brightness(0.8);
    }
    p{
        position: relative;
        font-size: 2rem;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
        padding: 1rem;
    }
    &:hover img{
        filter: brightness(0.75);
    }
}