section{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: auto;
    padding: 20px;
    gap: 10px;
}

h2{
    margin-bottom: 20px;
}

.page_row{
    width: 100%;
    margin-top: 20px;
    display: flex;
    height: fit-content;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 30px;
}

.wide_photo{
    width: 55%;
    max-height: 350px;
    object-fit: cover;
}

.not_so_wide_photo{
    width: 30%;
    min-height: 300px;
    object-fit: cover;
}

.first_row-text{
    display: flex;
    flex-direction: column;
    height: 150px;
    justify-content: space-between;
    width: 30%;
    line-height: 25px;
}

.first_row-paragraph {
    padding-top: 15px;
    line-height: 35px;
}

.first_row-paragraph.mesurmentParagraph{
    text-align: left;
}

.boldParagraph{
    width: 100%;
    margin: 20px 0;
    line-height: 35px;
}

.wider_row-text{
    width: 58%;
    text-align: left;
}

.paragraphSectionWrapper {
    padding: 0 3.5%;
}

.paragraphText{
    line-height: 35px;
    /* padding: 0 4%; */
}

.paragraphText.bottomText{
    margin-top: 60px;
}

@media only screen and (max-width: 800px) {
    .page_row{
        flex-direction: column;
        align-items: center;
    }

    .wide_photo{
        width: 100%;
    }

    .first_row-text{
        width: 95%;
        text-align: center;
        margin-top: 5%;
    }

    .wider_row-text{
        width: 100%;
    }
    
    .not_so_wide_photo{
        width: 100%;
        max-height: 100px;
    }

    .not_so_wide_photo.mesurmentWidePhoto{
        display: none;
    }
}