#ideas_jump {
    position: absolute;
    margin-top: -50px;
    height: 0;
}

.opening_wrapper {
    box-sizing: border-box;
    margin: 150px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.opening_wrapper .column {
    width: calc((100% - 64px) / 2);
    position: relative;
}

.opening_wrapper .opening_image {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opening_wrapper .opening_image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 0.8;
}

.opening_wrapper .column:first-of-type .opening_image {
    height: 500px;
}

.opening_wrapper .column:first-of-type .button,
.opening_wrapper .column:last-of-type .button_2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.opening_wrapper .column:last-of-type h2 {
    right: 30px;
}

.opening_wrapper .column:last-of-type .opening_image {
    height: 100%;
}

.opening_wrapper h2 {
    margin: 0;
    padding-left: 20px;
    font-size: 80px;
    color: var(--white);
    text-align: right;
    line-height: 1.2;
}

.opening_wrapper h3 {
    font-size: 48px;
    margin-bottom: 0;
    line-height: 1.2;
}

@media (max-width: 1250px) {
    .opening_wrapper .column {
        width: calc((100% - 40px) / 2);
    }
}

@media (max-width: 1150px) {
    #ideas_jump {
        margin-top: -25px;
    }
}

@media (max-width: 1050px) {
    .opening_wrapper {
        flex-direction: column;
    }

    .opening_wrapper .column {
        width: 100%;
    }

    .opening_wrapper .column:first-of-type {
        display: flex;
        flex-direction: column-reverse;
    }

    .opening_wrapper .column:first-of-type h3 {
        position: relative;
        margin-bottom: 40px;
        margin-top: -10px;
    }

    .opening_wrapper .column:first-of-type .opening_image {
        margin-bottom: 40px;
    }
}

@media (max-width: 950px) {
    .opening_wrapper h3 {
        text-align: center;
    }
}

@media (max-width: 750px) {
    .opening_wrapper .column:last-of-type .opening_image {
        height: 500px !important;
    }
}

@media (max-width: 600px) {
    .opening_wrapper {
        margin: 100px auto;
    }

    .opening_wrapper .column:first-of-type {
        flex-direction: column;
    }

    .opening_wrapper .column:last-of-type h2 {
        font-size: 48px;
        text-align: center;
        right: 20px;
    }

    .opening_wrapper h3 {
        font-size: 36px;
        text-align: center;
        margin-top: 40px !important;
        margin-bottom: 80px !important;
    }

    .opening_wrapper .button {
        left: 50%;
        margin-left: -99px;
    }

    .opening_wrapper .button_2 {
        left: 50%;
        margin-left: -95px;
    }
}

@media (max-width: 500px) {
    .opening_wrapper .button_2,
    .opening_wrapper .button {
        left: 20px;
        margin-left: 0;
        width: calc(100% - 40px);
    }
}