.introduction {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* min-height: 800px; */
}

.introduction_background {
    position: relative;
    background-color: var(--grey);
    width: 100%;
    margin-top: -5px;
    height: calc(75vh - 100px);
    min-height: 550px;
    max-height: 620px;
}

.introduction_background:after {
    content: "";
    position: absolute;
    background-color: var(--grey);
    /* height: calc(30vh - 100px); */
    height: 30vh;
    width: 100%;
    bottom: 0;
    margin-bottom: calc(-30vh + 10px);
    /* margin-bottom: calc(-30vh + 105px); */
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 5%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 5%, 0% 100%);
}

.introduction_wrapper {
    display: flex;
    justify-content: space-between;
    /* margin-top: clamp(-500px, calc(-70vh + 100px), -580px); */
    margin-top: -510px;
}

.introduction_wrapper .column {
    width: 50%;
}

.introduction_wrapper .image_column {
    width: 40%;
}

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

.introduction_wrapper .column p,
.mobile_introduction .column p {
    margin: 0;
}

.introduction_wrapper .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);
}

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

.mobile_introduction {
    display: none;
}

@media (max-width: 950px) {
    .introduction {
        display: none;
    }

    .mobile_introduction {
        display: block;
    }

    .mobile_introduction .text_column {
        background-color: var(--grey);
        height: 100%;
        padding: 40px 0 70px;
        margin-top: -5px;
    }

    .mobile_introduction .image_column {
        width: 100%;
        margin: 0 auto;
    }

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

    .introduction_wrapper {
        display: block;
        margin-top: -600px;
    }

    .introduction_wrapper .column {
        width: 100%;
        padding: 0;
    }

    /* .introduction_wrapper .image_column {
        position: relative;
        margin: 0 auto;
        margin-top: 30px;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    } */

    .mobile_introduction .image_column img {
        display: block;
        max-width: 100%;
        margin: 60px auto 40px;
    }

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

@media (max-width: 600px) {
    .mobile_introduction h1 {
        text-align: center;
    }

    .mobile_introduction .image_column img {
        width: 100%;
    }
}

/*************** Page Scroll Button ********************/
.introduction .wrapper_large {
    position: initial;
}

.introduction .page_scroll_button {
    position: absolute;
    top: clamp(calc(420px + 30vh), 105vh, calc(520px + 30vh));
}