*{
    --feat-height-mobile: 210px;
    --feat-height-desktop: 100%;
}
.aboutFrame{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    box-sizing: border-box;
    letter-spacing: -5px;
    text-align: justify;
    opacity: 0;
    transition: opacity 1s ease;
    visibility: hidden;
}
.show-about{
    z-index: 1;
    opacity: 1;
    visibility: visible;
}
.feature-image{
    width: 100%;
    height: 210px;
    border-bottom: 1px solid gray;
    box-shadow: 0px 2px 4px gray;
    background-image: url('/assets/images/landing/freshers.png');
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}
.content{
    width: 100%;
    height: calc(100% - var(--feat-height-mobile));
    box-sizing: border-box;
    padding: 15px;
    overflow-y: scroll;
    z-index: 1;
}
.content::-webkit-scrollbar{
    width: 5px;
    height: auto;
    background-color: transparent;
}
.content::-webkit-scrollbar-thumb{
    border: 1px solid black;
    background-color: #C6C6C6;
}

@media only screen and (min-width: 600px){
    .feature-image{
        position: absolute;
        opacity: 0.25;
        height: var(--feat-height-desktop);
        background-size: cover;
    }
    .content{
        box-sizing: border-box;
        padding-top: 75px;
        height: var(--feat-height-desktop);
    }
}

.aboutFrame h1{
    font-family: 'Teko-Bold';
}
.aboutFrame h4{
    font-family: 'atalon';
}
.aboutFrame h3{
    font-family: 'Teko-SemiBold';
}
.aboutFrame p{
    font-family: 'Hind-Regular';
    font-size: 1rem;
    margin-bottom: 10px;
}
.aboutFrame ul{
    font-family: 'Hind-Light';
    margin-left: 5%;
    list-style-type: symbols();
}
.aboutFrame ul li::marker{
    content: "✔";
}
.aboutFrame a,
.aboutFrame a:active
{
    color: royalblue;
    text-decoration: overline;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-weight: 900;
}
.aboutFrame a:hover{
    color: goldenrod;
}
.aboutFrame small{
    position: relative;
    left: 60%;
}
.flames_icon,
.flames_caption{
    position: fixed;
    margin: auto;
    width: 98dvw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    font-family: 'nunito';
    font-weight: 900;
}
.flames_caption p{
    color: orangered;
    /* opacity: 0.67; */
    font-size: 1.2rem;
}
#flamesMA{
    outline: 1px solid silver;
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    background:
    linear-gradient(
        royalblue,
        skyblue
    );
    color: whitesmoke;
    cursor: pointer;
    border-color: transparent;
}
#flamesMA:hover{
    background: rebeccapurple;
    color: wheat;
}
#ideations{
    position: absolute;
    bottom: 100px;
    text-align: left;
    background-color: rgba(128, 128, 128, 0.4);
    padding: 10px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}