body {
    font-family: 'Inter UI', sans-serif;
    margin: 0;
}

#header-nav{
    background-color: #295b4c;
    height: 4vh;
}

#tab-menu{
    border-bottom: 1px solid lightgray;
}

.option-active{
    text-decoration: underline;
    text-decoration-color: #295b4c;
    text-decoration-thickness: .38em;
}

a{
    color: black;
    text-decoration: none;
}

a:hover{
    color: #295b4c;
}

.page{
    padding: 2%;
    flex-wrap: wrap;
    /*min-height:62.4vh;*/
}

.card {
    background: whitesmoke;
}

img{
    width: 100%; 
    height: auto; 
    padding: .5rem;
}

header{
    height: 10vh;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 1rem;
    width: 15rem;
    height: 15rem;
    background: white;
    border-radius: 75px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 2px;
    transition: 1s box-shadow;
}

@media screen and (max-width: 995px) {
    #banner{
        display: none;
    }
}
@media screen and (max-width: 460px) {
    #tab-menu{
        flex-direction: column!important;
    }
    #tab-menu div{
        margin-left: 0!important;
    }
}



.item:hover {
    box-shadow: 0 5px 35px 0px rgba(0,0,0,.1);
}

.item:hover::before, .item:hover::after {
    display: block;
    content: '';
    position: absolute;
    width: 15rem;
    height: 15rem;
    background: #d2af7a;
    border-radius: 75px;
    z-index: -1;
    animation: 1s clockwise infinite;
}

.item:hover:after {
    background: #767574;
    animation: 2s counterclockwise infinite;
}

@keyframes clockwise {
    0% {
        top: -5px;
        left: 0;
    }
    12% {
        top: -2px;
        left: 2px;
    }
    25% {
        top: 0;
        left: 5px;    
    }
    37% {
        top: 2px;
        left: 2px;
    }
    50% {
        top: 5px;
        left: 0;    
    }
    62% {
        top: 2px;
        left: -2px;
    }
    75% {
        top: 0;
        left: -5px;
    }
    87% {
        top: -2px;
        left: -2px;
    }
    100% {
        top: -5px;
        left: 0;    
    }
}

@keyframes counterclockwise {
    0% {
        top: -5px;
        right: 0;
    }
    12% {
        top: -2px;
        right: 2px;
    }
    25% {
        top: 0;
        right: 5px;    
    }
    37% {
        top: 2px;
        right: 2px;
    }
    50% {
        top: 5px;
        right: 0;    
    }
    62% {
        top: 2px;
        right: -2px;
    }
    75% {
        top: 0;
        right: -5px;
    }
    87% {
        top: -2px;
        right: -2px;
    }
    100% {
        top: -5px;
        right: 0;    
    }
}

.bg-brown{
    background-color: #C9A977!important;
}

footer.sticky-footer {
    padding: 2rem 0;
    flex-shrink: 0;
    background-color: #C9A977;
}

.text_break{
    inline-size: 300px !important;
    text-align: center !important;
}