/*--------------------------------- About ---------------------------------------- */
.about {
    display: flex;
    flex-direction: column;
    color: white;
    padding-top: 70px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    font-size: 35px;
}

.column-left {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.column-left img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-top: 45px;
    box-shadow: 0.2px 0.1px 11px rgb(255, 221, 158);
}

.right p {
    margin-top: 25px;
    display: flex;
    font-size: 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;

}

/*-----------------------------skill------------------------ */

.skills {
    background: rgb(0, 5, 17);
    box-shadow: 0.2px 0.2px 5px 0.3px rgb(106, 106, 122);
    border-radius: 10px;
    height: 400px;
    width: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 45px;
}

.skills h2 {
    font-size: 28px;
    padding-top: 15px;
}

.skill-content {
    gap: 15px;
    flex-wrap: wrap;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.logo {
    width: fit-content;
    display: flex;
    padding: 10px;
    align-items: flex-start;
    font-size: 16px;
    margin: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo-name {
    display: flex;
    padding-left: 7px;
}

.logo-parag {
    display: flex;
    padding-left: 7px;
}

.logo-parag p {
    font-size: 14px;
}

@media (max-width: 1200px) {
    .about-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .column-left {
        width: 100%;
        padding-bottom: 25px;
    }

    .skills {
        width: 100%;
        margin-top: 25px;
    }

    .skills h2 {
        font-size: 24px;
        padding-top: 15px;
    }

}

@media (max-width: 768px) {

    .left img {
        height: 250px;
        width: 250px;
    }

    .about {
        display: flex;
        flex-direction: column;
    }

    .right p {
        font-size: 16px;
        text-align: center;
    }

    .logo {
        margin: 5px;
        padding: 2px;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .logo-name {
        display: flex;
        padding-left: 5px;
    }

    .logo-name h3 {
        font-size: 17px;
    }

    .logo-parag {
        display: flex;
        padding-left: 5px;
    }

    .logo-parag p {
        font-size: 12px;
    }

    .title {
        font-size: 35px;
    }
}