.about {
    width: 100%;
    padding: 12rem 0;
}

.about__left img {
    height: auto;
    width: 90%;
    text-align: center;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.about__right {
    width: 100%;
}

.about__right h1 {
    font-size: 1.5rem;
    text-transform: capitalize;
    margin-bottom: 3rem;
}

.about__right h5 {
    font-size: 1rem;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.about__right span {
    color: #FF7800;
}

.about__right p {
    letter-spacing: 1px;
    line-height: 1.75rem;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* ========== MEDIA QUERIES (TABLETS) ==========*/


@media screen and (max-width: 1024px) {
    .about {
        margin-bottom: 4rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 3rem;
        justify-content: center;
    }

    .about__left {
        padding: 2rem 10rem;
    }

    .about__left img {
        width: 100%;
    }

    .about__right {
        text-align: center;
    }
    .about__right h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about__right h5 {
        font-size: 1.2rem;
        text-align: center;
    }

    .about__right p{
        font-size: 1rem;
        text-align: left;
    }

}

/* ========== MEDIA QUERIES (PHONES) ==========*/


@media screen and (max-width: 600px) {
    .about {
        padding: 7rem 0 0 0;
    }

    .about__left {
        padding: 2rem 0;
    }
}