.nav-div{
    display: flex;
    background-color: black;
    width: 100%;
    height: 130px;
    /*margin-bottom: 50px;*/
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}
.nav-section-container{
    display: flex;
    height: 100%;
    width: 80%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}
.nav-section-one{
    display: flex;
    height: calc(100% - 30px);
    width: 30%;
    justify-content: center;
    justify-items: center;

}
.nav-logo{
    display: flex;
    /*align-items: center;*/
    justify-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}
.nav-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav-section-two{
    display: flex;
    height: calc(100% - 30px);
    width: 55%;
    justify-items: center;
    justify-content: flex-end;
    align-items: center;
}
.nav-link-container{
    display: flex;
    flex-wrap: nowrap;
    justify-items: center;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;

}
.nav-link{
    display: flex;
    text-decoration: none;
    font-size: 14px;
    color: var(--navFontColor);
    font-weight: var(--navFontWeight);
}
.active-nav-link{
    display: flex;
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--navFontWeight);
    color: var(--colorAccent);
}
.nav-section-three{
    display: flex;
    height: calc(100% - 30px);
    width: 15%;
    justify-items: center;
    justify-content: flex-end;
    align-items: center;
}
.nav-cta-button{
    display: flex;
    text-decoration: none;
    font-size: 12px;
    color: var(--navFontColor);
    font-weight: var(--navFontWeight);
    background-color: var(--colorAccent);
    height: 32px;
    width: 120px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}
.footer-div{
    display: flex;
    background-color: black;
    flex-wrap: wrap;

}
.footer-section{
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 50px;
    /*background-color: red;*/
        color: var(--navFontColor);
    font-weight: var(--navFontWeight);
}
.footer-header-card{
    display: flex;
    height: 50px;
    border-bottom: 2px solid white;

}
.footer-card{
    justify-content: center;
    align-content: center;
}
.footer-logo-card{
    width: 30%;

}
.footer-links-card{
    width: 30%;

}

.footer-pay-card{
    width: 30%;
    color: var(--navFontColor);
    font-weight: var(--navFontWeight);
}
.footer-logo{
    display: flex;
    /*align-items: center;*/
    justify-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-link-container{
    display: flex;
    justify-items: center;
    height: 100%;
    width: 70%;
    justify-content: center;
    align-items: center;
    gap: 30px;

}
.footer-link{
    display: flex;
    text-decoration: none;
    font-size: 14px;
    color: var(--navFontColor);
    font-weight: var(--navFontWeight);
}
/* Media query for large tablets or small desktop screens */
@media (max-width: 1048px){
    .nav-section-container {
    display: flex;
    height: 100%;
    width: 90%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}
}

/* Media query for tablets */
@media (max-width: 991px) {
.nav-div{
    display: flex;
    width: 100%;
    height: 260px;

    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}
.nav-section-container{
    display: flex;
    height: 90%;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
}
.nav-logo{
    width: 90%;
    height: 90%;
}
.nav-section-one{
display: flex;
        height: calc(40% - 30px);
        width: 100%;
        justify-content: center;
        justify-items: center;
}
.nav-section-two{
    display: flex;
    height: calc(25% - 30px);
    width: 100%;
    justify-items: center;
    justify-content: flex-end;
    align-items: center;
}
.nav-link-container{
      display: flex;
    flex-wrap: nowrap;
    justify-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.nav-section-three{
    display: flex;
    height: calc(25% - 30px);
    width: 100%;
    justify-items: center;
    justify-content: center;
    align-items: center;
}
.nav-link {
    display: flex;
    text-decoration: none;
    font-size: 2.5vw;
    color: var(--navFontColor);
    font-weight: var(--navFontWeight);
}
.footer-logo-card{
    width: 50%;
}
.footer-links-card {
    width: 70%;
}
.footer-pay-card {
    width: 70%;
    color: var(--navFontColor);
    font-weight: var(--navFontWeight);
    font-size: var(8px);
}
}

/* Media query for mobile devices */
@media (max-width: 767px) {


}