

.about-main{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}
.about-burner{
    width: 100%;
    height: 20vh;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: var(--background-clr);
}
.about-burner-content{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}
.about-burner-content-span1{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    box-sizing: border-box;
}
.about-burner-content-span1 a{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 16px;
    color: var(--font-clr);
    text-decoration: none;
    cursor: pointer;
}

.about-burner-content-span1 i{
    font-size: 16px;
    color: var(--font-clr);
}
.about-burner-content-span1 a:hover{
    color: var(--themed-clr);
}
.about-burner-content-span2{
    font-family: var(--lora-font-fam);
    font-weight: bold;
    font-size: 35px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.about-burner-content-span2 span{
    color: var(--themed-clr);
}
.about-burner-img{
    width: 30%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
@media(max-width:769px){
    .about-burner{
        background-color: var(--highlighted-clr-3);
    }
    .about-burner-img{
        display: none;
    }
}






.about-content-main{
    margin-top: 20px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px;
    box-sizing: border-box;
}
.about-content-left{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    border: solid 1px var(--highlighted-clr-4);
    border-radius: 8px;
}

.about-intro-span{
    margin-top: 20px;
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 25px;
    color: var(--faded-font-clr);
}
.about-intro-span span{
    color: var(--themed-clr);
}

.about-intro-p{
    margin-top: 20px;
    width: 98%;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--font-clr);
    text-decoration: none;
}
.about-intro-additional-span,
.about-intro-additional-span a
{
    width: 100%;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 12px;
    color: var(--font-clr);
    text-decoration: none;
    margin-top: 5px;
}
.about-intro-additional-span a:hover{
    color: var(--themed-clr);
}
.about-intro-additional-span span{
    color: var(--themed-clr-2);
}
.about-intro-additional-span i{
    color: var(--themed-clr-2);
    font-size: 13px;
}

.about-intro-additional-span2{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 14px;
    color: var(--faded-font-clr);
}
.about-intro-additional-span2 span{
    color: var(--themed-clr);
}

.about-content-right{
    width: 68%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    border: solid 1px var(--highlighted-clr-4);
    border: 8px;
}
.about-content-right-card{
    width: 98%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-top: 20px;
}
.about-content-card-img-cont{
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.5;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.about-content-card-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    pointer-events: none;
}
.about-card-shade{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.about-card-shade span{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 20px;
    color: white;
}
.about-card-shade span span{
    color: var(--themed-clrs);
}
.about-card-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
}
.about-card-content span{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--font-clr);
    line-height: 1.8;
}
.about-card-content span i{
    color: var(--themed-clr-2);
}
.about-card-content p{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--font-clr);
}


@media (min-width:800px){
    .about-content-left{
        position: sticky;
        top: 0;
    }
}


@media (max-width:800px){
    .about-content-main{
        flex-direction: column;
        padding: 0;
    }
    .about-content-left{
        width: 98%;
    }
    .about-content-right{
        width: 100%;
        padding: 10px;
    }
    .about-intro-additional-span,
    .about-intro-additional-span a
    {
        line-height: 2;
    }
}
