#birth-content {
    margin-top: 65px;
    padding: 20px 15px 0 15px;
    background-color: rgb(245, 241, 241);
    color: #3f254a;
    min-height: calc(100vh - 65px);
    overflow-x: hidden;
    display: grid;
grid-gap: 1rem;
gap: 1rem
}

#birth-content>div {
    display: flex;
    gap: 15px;
    align-items: center;
}

#birth-content img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

#birth-content p {
    line-height: 1.5;
    font-size: max(1.4vw, 17px);
}

.img-wrapper {
    width: 35%;
    min-width: 350px;
    height: 300px;
    border-radius: 5px;
}

.img-wrapper:nth-child(1) {
    margin-right: 20px;
}

.img-wrapper:nth-child(2) {
    margin-left: 20px;
}

.txt-wrapper {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/*tablet*/
@media (max-width: 768px) {

    .img-wrapper,
    .txt-wrapper {
        width: 100%;
        min-width: none;
    }

    #birth-content>div {
        justify-content: center;
        align-items: flex-start;
    }

    #birth-content>div:nth-child(1) {
        flex-direction: column;
    }

    #birth-content>div:nth-child(2) {
        flex-direction: column-reverse;
    }

    .img-wrapper:nth-child(1) {
        margin-right: 0;
    }

    .img-wrapper:nth-child(2) {
        margin-left: 0;
    }
}