.about {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5em;
}

.about__container {
    width: 80%;
    display: flex;
    padding-block: 2.5em;
    padding-inline: 2em;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: 25px;
}

.about__info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about__info .about__title {
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 2em;
}

.about__info span {
    color: var(--color-primary);
}

.about__info .about__text {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.about__image {
    width: 400px;
    height: 400px;
    margin-left: 50px;
    position: relative;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@media screen and (max-width: 2560px) {}

@media screen and (max-width: 1920px) {
    .about__container {
        padding-block: 5em;
        padding-inline: 2em;
    }

    .about__image {
        width: 600px;
        height: 600px;
    }
}

@media screen and (max-width: 1440px) {
    .about__container {
        padding-block: 5em;
        padding-inline: 2em;
    }

    .about__image {
        width: 400px;
        height: 400px;
    }
}

@media screen and (max-width: 1024px) {
    .about__container {
        padding-block: 3em;
        width: 90%;
        flex-direction: column;
        gap: 2em;
    }

    .about__info {
        width: 100%;
    }

    .about__image {
        position: relative;
        margin: 0;
        width: 400px;
        height: 400px;
    }

    .about__info .about__title {
        font-size: 2em;
        margin-bottom: 1.2em;
    }

    .about__info .about__text {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 768px) {

    .about__image {
        width: 350px;
        height: 350px;
    }

}

@media screen and (max-width: 425px) {

    .about__image {
        width: 300px;
        height: 300px;
    }

}

@media screen and (max-width: 375px) {
    .about__image {
        width: 250px;
        height: 250px;
    }

}
