/* About */

.aboutSection_container {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-content: center;
    gap: var(--gap);
    position: relative;
    z-index: 5;
}

.custom-shape-divider-top-1753146277 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1753146277 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 214px;
}

.custom-shape-divider-top-1753146277 .shape-fill {
    fill: var(--pink_color);
}

.aboutSection_Picture_container {
    width: 100%;
    height: 100%;
    z-index: 10;
}

.aboutSection_Picture {
    aspect-ratio: 1 / 1;
    width: 80%;

    border-radius: var(--border_radius);
    overflow: hidden;
}

.aboutSection_titeContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aboutSection_titeContainer span:nth-child(1) {
    position: relative;
    left: -5px;
}

.aboutSection_textContainer {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--gap);
}

/* About */

.aboutSection_container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-content: center;
    gap: var(--gap);
    padding: 100px 0px;
    box-sizing: border-box;
}

.aboutSection_Picture_container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutSection_Picture {
    aspect-ratio: 12 / 16;
    width: 80%;
    max-width: 500px;
    border-radius: var(--border_radius);
    overflow: hidden;
}

.aboutSection_titeContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.aboutSection_titeContainer span:nth-child(1) {
    position: relative;
    left: -5px;
}

.aboutSection_textContainer {
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--gap);
    z-index: +100;
}

@media screen and (max-width: 992px) {
    .aboutSection_container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .aboutSection_Picture {
        width: 70%;
        margin: 0 auto;
    }
    
    .aboutSection_textContainer {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    .aboutSection_container {
        padding: 1rem;
        min-height: 130vh;
    }
    
    .aboutSection_Picture {
        width: 90%;
    }
    
    .aboutSection_textContainer {
        width: 100%;
    }
    
    
    .aboutSection_titeContainer span:nth-child(2) {
        font-size: calc(var(--size-1) * 0.9);
    }
    
    .aboutSection_textContainer span.size-1_5 {
        font-size: calc(var(--size-1_5) * 0.9);
    }
}