#between {
    padding: 112px 0;
    overflow: hidden;
    position: relative;
}

.between_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 2;
    max-width: fit-content;
    margin: 0 auto;
}

.between_first {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.between_first h2 {
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30), 0px 1px 3px rgba(0, 0, 0, 0.15);
    font-family: Colus;
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: -0.01em;
}

.between_first h2 span {
    color: #aa0909;
}

.between_text {
    font-family: Evolventa;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--primary-black);
    max-width: 570px;
}

.between_butns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 20px;
    margin: 0 auto;
    flex-direction: row;
}

.between_left,
.between_right {
    position: absolute;
    top: 107px;
    width: 1250px;
    pointer-events: none;
}

.between_left {
    left: 113%;
}

.between_right {
    display: block;
    right: 113%;
}

.goto {
    position: absolute;
    right: 20px;
    top: 19px;
}

@media (max-width: 815px) {

    .between_wrapper {
        padding: 40px 16px 40px;
    }

    .between_right {
        display: none;
    }

    .between_left {
        display: none;
    }
}

@media (max-width: 850px) {

    .between_butns {
        flex-direction: column;
        gap: 8px;
    }
}