body{
    
    height: 100vh; /* Full viewport height */
    background-image: url('../images/tess.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}
.fogbg{
    position:fixed;
    height:100vh;
    width:100vw;
    z-index: -1;
}
/* 
.bg{
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-image: url();
    background-size: cover;
    background-position: center;
    z-index: -1; 
} */

.partner-content{
    height: 100vh; 
    overflow-y: auto; 
}

.brand{
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(0px, 16vw, 150px);
    margin: 20px auto;
}

.brand img{
    max-width: 20%;
    min-width: 200px;
    height: auto; 
    width: auto;
}
.brand_row{
    width:100%;
    color:white;
    text-align:center;
    margin-top:-20px;
}

.partner-div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5vw;
    margin-top:25px;
    padding: 25px 0 50px 0;
}

.partner-div .inner-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    gap: clamp(0px, 3vw, 12.42px);
}

.partner-div .inner-div .img{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: none; 
    animation: blink 1.5s linear infinite;
}

.partner-div .inner-div .btn{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 130px;
    border-radius: 5px;
    background-image: var(--m_topbtn);

    /* text */
    white-space: nowrap;
    font-family: var(--font-family-roboto);
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.partner_desc{
    color:white;
}

@keyframes blink {
    0% { box-shadow: 0 0 10px gold; } 
    50% { box-shadow: none; }
    100% { box-shadow: 0 0 10px gold; } 
}