/* ================= ABOUT SECTION ================= */

.about {
    background: rgb(213, 215, 216);
    padding: 80px 8%;
}

/* Heading */

.heading {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.heading span {
    color: rgb(101, 28, 109);
}

/* Container */

.aboutcontainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

/* Image */

.photo img {
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Text */

.text {
    max-width: 600px;
}

.context {
    font-size: 1.15rem;
    line-height: 1.8;
}

.context span {
    color: rgb(101, 28, 109);
    font-weight: 600;
}

/* Skills */

.skills {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.sitems {
    background: rgb(101, 28, 109);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .9rem;
}

/* Read More */

.readmorebtn {
    margin-top: 25px;
}

.readmorebtn a {
    background: black;
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
}

/* ---------- TABLET ---------- */

@media (max-width:900px) {

    .aboutcontainer {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .photo img {
        height: 200px;
        width: 200px;
        border-radius: 50%;
        object-fit: cover;

    }

    /* ---------- MOBILE ---------- */

    @media (max-width:600px) {

        .heading {
            font-size: 2rem;
        }

        .context {
            font-size: 1rem;
        }

    }

}