.about-page-landing{
    width: 100%;
    padding-top: 15rem;
    display: flex;
    flex-direction: column;
    padding-bottom: 3rem;
    background-color: rgb(81, 108, 134);
    color: white;
    position: relative;
}
.about-page-landing-inner{
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.about-page-landing-inner h1{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0 auto;
    color: rgb(216, 216, 11);
}

.about-page-paragraphs{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    align-items: center;
}

.anonymous-link{
    display: flex;
    align-self: center;
    border-bottom: solid 1px rgb(216, 216, 11);
    color: rgb(216, 216, 11);
    font-weight: bold;
    padding-bottom: 5px;
    text-align: center;
}

.about-page-background{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/security\ group.png);
    background-position: center;
    background-size: cover;
    z-index: 0;
}
.about-page-background-filter{
    width: 100%;
    height: 100%;
    background-color: rgb(33, 49, 61,0.5);
    backdrop-filter: blur(3px);
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
}


.about-page-hero{
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 4rem;
}
.about-page-hero-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about-page-left-con{
    width: 55%;
}
.about-page-left-con h1{
    color: rgb(27, 51, 75);
    width: 60%;
}
.about-page-left-con hr{
    width: 25%;
    margin: 0;
    border: solid 1px rgb(27, 51, 75);
}

.about-page-first-paragraph{
    padding-bottom: 1rem;
}
.about-page-first-paragraph span{
    color: rgb(27, 51, 75);
    font-weight: bold;
}



.about-page-second-paragraph{
    padding-bottom: 2rem;
}
.about-page-left-con button{
    width: 8rem;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    border: none;
    background-color: rgb(27, 51, 75);
    color: white;
}


.about-page-right-con{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-page-hero-logo-con{
    width: 80%;
    height: 20rem;
}
.about-page-hero-logo{
    width: 100%;
    height: 100%;
    object-fit: contain;
}



@media (max-width: 930px) {
    .about-page-landing{
        text-align: center;
    }
    .about-page-landing h1{
        font-size: 20px;
    }
    .about-page-landing p{
        font-size: 15px;
    }
    .about-page-hero-inner{
        display: flex;
        flex-direction: column;
    }
    .about-page-left-con{
        width: 95%;
        margin: 0 auto;
    }
    .about-page-left-con h1{
        width: 95%;
        text-align: center;
        font-size: 20px;
    }
    .about-page-left-con hr{
        margin:  0 auto;
        width: 50%;
    }
    .about-page-right-con{
        width: 90%;
        margin: 0 auto;
    }
}