.about-page{
    background-color: #000;
}
.about-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-inner .logo {
    max-width: 300px;
    margin-bottom: 2rem;
}
.about-inner .description {
    color: var(--cream);
}
.about-inner .description h2 {
    color: var(--green);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-inner .description > p {
    font-size: 20px;
    line-height: 1.5;
}
.about-inner .description > p:not(:last-child) {
    margin-bottom: 1rem;
}
.about-inner {
    flex-basis: 60%;
    margin-right: 5%;
}
.about-options{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-options .texts h3 {
    color: var(--green);
}
.about-options .texts p {
    color: var(--cream);
}
.about-options .option:not(:last-child) {
    margin-bottom: 2rem;
}
.about-options .option lord-icon {
    width: 70px;
    height: 70px;
    margin-right: 1rem;
}
.about-options .option .texts {
    flex: 1;
}
.about-options .option .texts h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-options .option .texts p {
    color: #bfb9b9;
    font-size: 17px;
    line-height: 1.3;
}
@media only screen and (max-width: 820px){
    .about-inner .logo {
        max-width: 150px;
    }
    .about-inner {
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 5rem;
    }
}