.about_paragraph {
    padding: 0 40px;
    margin-top: 140px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
}

.reverse_sides {
    flex-direction: row;
}

.about_paragraph .about_image,
.notice_image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: var(--green);
    overflow: hidden;
    width: calc((100% - 80px) / 2);
    border-radius: 20px;
    z-index: 0;
}

.about_paragraph .about_image img,
.notice_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.about_paragraph .about_content {
    width: calc((100% - 80px) / 2);
}

.about_paragraph .about_content h2 {
    margin-top: 60px;
    margin-bottom: 20px;
}

.about_paragraph .buttons_container {
    margin-top: 40px;
    margin-bottom: 80px;
}

.justify_center .about_content h2 {
    margin-top: 120px
}

.justify_center .buttons_container {
    margin-bottom: 140px
}

.about_paragraph .notice {
    position: relative;
    width: calc(100% + 270px);
    z-index: 5;
    background-color: var(--grey);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 80px;
}

.about_paragraph .reverse_notice {
    margin-left: -310px;
}

.notice h4,
.notice p {
    margin: 10px 0 0;
}

.notice .square_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--green);
    text-align: center;
    color: var(--white);
    font-size: 16px;
    margin-right: 20px;
    opacity: 1;
    border-radius: 5px;
    transition: 0.1s all ease-in-out;
}

.notice .notice_content {
    width: calc(100% - 280px - 20px);
}

.notice_image {
    width: 280px;
    max-height: 280px;
    border-radius: 10px;
}

@media (max-width: 1250px) {
    .about_paragraph {
        padding: 0 25px;
    }

    .about_paragraph .about_image {
        width: calc((100% - 50px) / 2);
        border-radius: 20px;
        z-index: 0;
    }

    .about_paragraph .about_content {
        width: calc((100% - 50px) / 2);
    }
}

@media (max-width: 1150px) {
    .about_paragraph {
        padding: 0;
    }

    .about_paragraph,
    .reverse_sides {
        flex-direction: column;
        width: 100%;
    }

    .about_paragraph .about_image {
        width: 100%;
        max-height: 650px;
    }

    .about_paragraph .about_content {
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    .about_paragraph .about_content h2,
    .justify_center .about_content h2 {
        margin-top: 80px;
    }

    .about_paragraph .buttons_container {
        margin: 40px auto 0;
        justify-content: center;
    }

    .about_paragraph .notice {
        box-sizing: border-box;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 0;
        text-align: left;
    }

    .about_paragraph .reverse_notice {
        margin-left: 0px;
    }
}

@media (max-width: 950px) {
    .about_paragraph .notice {
        width: 120%;
        margin-left: -10%;
    }
}

@media (max-width: 800px) {
    .about_paragraph .notice {
        flex-direction: column;
    }

    .notice .notice_content {
        width: 100%;
        text-align: center;
    }

    .notice .square_icon {
        margin: 0 auto;
    }

    .notice_image {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 700px) {
    .about_paragraph .buttons_container {
        flex-direction: column;
        width: 100%;
    }

    .about_paragraph .buttons_container .button {
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
    }

    .about_paragraph .buttons_container .button:first-of-type {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .about_paragraph .about_content {
        width: 100%;
    }

    .about_paragraph .notice {
        width: 100%;
        margin-left: 0;
    }
}