.hero-section-about
{
    width: 100%;
    height: 50vh;
    /* border: 2px solid red; */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(/images/aboutbk2.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.hero-section-about .container
{
    width: 50rem;
    height: 40%;
    /* border: 2px solid red; */
    background-color: #fff;
    filter: blur(40px);
    position: relative;
    top: 5%;
}
.hero-section-about .container-2
{
    width: 70%;
    height: 100%;
    position: absolute;
    top: 5%;
    /* border: 2px solid yellow; */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.hero-section-about .container-2 h1
{
    color: #383838;
    font-size: 4.7rem;
    font-family: 'Rubik';
    font-style: italic;
    z-index: 9999999999;
    z-index: 2;
}
.hero-section-about .container-2 h1 span
{
    color: var(--secondary-color);
}




















/* Media Queries */
/* 920px */
@media all and (max-width: 920px)
{
    .hero-section-about .container-2 h1
    {
        font-size: 4.4rem;
    }
}




/* 820px */
@media all and (max-width: 820px)
{
    .hero-section-about .container-2 h1
    {
        font-size: 3.2rem;
    }
    .hero-section-about .container
    {
        width: 40rem;
    }
}