/************************* Paragraph Sections *************************/
.paragraph_section {
    display: flex;
    flex-wrap: wrap;
    margin: 120px auto;
    justify-content: space-between;
    align-items: center;
}

.paragraph_section .column {
    width: 50%;
}

.paragraph_section .image_column {
    width: 40%;
}

.paragraph_section .column h1 {
    margin: -20px 0 30px 0;
    font-weight: 700;
    font-size: 50px;
}

.paragraph_section .column h2 {
    font-weight: 200;
}

.paragraph_section .column p {
    margin: 0;
}

.paragraph_section .image_column img {
    max-width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    background-color: var(--light_grey);
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.20);
}

.paragraph_section .column .button {
    margin-top: 50px;
}

@media (max-width: 1500px) {
    .paragraph_section {
        margin: 90px auto;
    }
}

@media (max-width: 950px) {
    .paragraph_section {
        display: block;
    }
    .paragraph_section .column {
        width: 100%;
        padding: 0;
    }
    .paragraph_section .image_column {
        position: relative;
        margin: 0 auto;
        margin-top: 30px;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }
    .paragraph_section .image_column img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 0px;
    }

    .paragraph_section .column h1 {
        margin: 30px 0;
        font-size: 44px;
    }
}

.reverse_sides {
    flex-flow: row-reverse;
}

@media (max-width: 900px) {
    .paragraph_section {
        margin: 30px auto;
    }
}

@media (max-width: 600px) {
    .paragraph_section .image_column,
    .paragraph_section .image_column img {
        width: 100%;
        max-width: 100%;
    }

    .paragraph_section {
        margin-bottom: 60px;
    }

    .paragraph_section h1 {
        text-align: center;
    }
}