.about-section {
    padding-top: 2rem;
    padding-bottom: 1.3rem;
    background-color: var(--bg-gray-color);
}

.about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    border-radius: calc(var(--border-radius) * 2);
    background-color: var(--font-color);
}

.about__col {
    flex-grow: 1;
}

.about__image {
    width: 90%;
    height: auto;
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: 1rem;
}

.about__col {
    flex-grow: 1;
}

.about__title {
    margin-bottom: 2rem;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3rem;
    font-weight: 750;
    line-height: .90;
    text-transform: uppercase;
	color: var(--brand-yellow-color);
}

.about__paragraph {
    margin-bottom: 0rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--bg-white-color);
}

.about__page-link {
    margin-bottom: 0rem;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0rem;
    font-weight: 0;
    line-height: 0;
    text-transform: uppercase;
    color: var(--bg-white-color);
}

.about__links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: .5rem;
}

.about__link {
    max-width: 35%;
}

.about__link-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0rem;
    height: 0rem;
    margin-bottom: 1rem;
    border-radius: 100%;
    background-color: var(--brand-blue-bg);
}

.about__link-image {
    width: 0rem;
    height: 0rem;
}

.about__link-text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0rem;
    font-weight: 700;
    line-height: 0;
    text-transform: uppercase;
}

@media (min-width: 767px) {
    .about-section {
        padding-bottom: 1rem;
    }

    .about {
        flex-direction: row;
        padding: 3rem;
        gap: 1rem;
    }

    .about__content {
        max-width: 95rem;
    }

    .about__col:first-of-type {
        display: left;
        justify-content: left;
        align-items: left;
    }

    .about__title {
        font-size: var(--font-size-title);
    }

    .about__page-link {
        font-size: 1.125rem;
    }

    .about__link {
        width: calc((100% - 5.5rem) / 3);
    }

    .about__paragraph {
        margin-bottom: 0rem;
    }
}

@media (min-width: 1023px) {
    .about__image {
        max-width: 54rem;
        margin-right: auto;
    }
}
