.content {
    position: relative;
}

main {
    position: relative;
    height: 100%;
    width: 100%;
    grid-column: 1 / span 12;
    display: grid;
    overflow: hidden;
    /* touch-action: pan-y; */
}

.index-sections {
    display: flex;
    /* flex-direction: column; */
    flex-grow: 1;
    flex-shrink: 0;
    height: calc(100% - 60px);
    width: 100%;
    position: absolute;
    left: 0px;
    overflow: hidden;
}

.index-footer-heading {
    background: #00000078;
}

.section-nav-btn-wrapper {
    z-index: 10;
    height: 100%;
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.section-nav-btns {
    border: 1px solid lightgray;
    background: #00000026;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    transition: 0.5s ease;
}

.section-nav-btns.active {
    height: 30px;
    background: white;
}

.footer-section {
    /* position: absolute; */
    top: 100vh;
    /* left: 0px;
    width: 100%;
    height: calc(100vh - 60px); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.5s ease-in-out;
    z-index: 9;
}

.footer-section.active {
    top: 0px;
}

.footer-img-bg {
    position: absolute;
    height: 100%;
    width: auto;
    margin: auto;
}

.footer-section .blurFx {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgb(255 255 255 / 87%);
    backdrop-filter: blur(10px);
}

.footer-section .background-section {
    position: relative;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-img {
    position: absolute;
    margin: auto;
    height: auto;
    width: 100%;
    z-index: 0;
}

.footer-img-text {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
    background: rgb(0 0 0 / 42%);
    backdrop-filter: blur(10px);
    font-family: sans-serif;
}

.footer-img-title {
    font-size: 14px;
    text-shadow: 0px 0px 20px black;
}

.footer-img-main-txt {
    font-size: 52px;
    font-weight: bold;
    text-shadow: 0px 0px 20px black;
}

.footer-section .footer-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    .index-sections {
        height: 100%;
    }

    .footer-section {
        height: 100vh;
    }

    .footer-img-bg {
        display: none;
    }

    .footer-section .blurFx {
        display: none;
    }

    .footer-section .background-section {
        display: flex;
    }

}