#between {
    padding: 112px 0;
    overflow: hidden;
    position: relative;
}

.between_wrapper {
    padding: 112px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    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 h4 {
    text-align: center;
    text-shadow: 0px 2px 2px #0000004D;
}

.between_text {
    font-family: Evolventa;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--primary-black);
}

body.dark .between_text {
color: #E7E7E7;
}

.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: 35px;
    width: 1250px;
}

body.dark .between_left,
body.dark .between_right {
    opacity: 0.2;
}

.between_left {
    left: -139%;
}

.between_right {
    display: block;
    right: -139%;
}

@media (max-width: 815px) {

    .between_wrapper {
        padding: 107px 16px;
    }

    .between_right {
        display: none;
    }

    .between_left {
        top: 30%;
        left: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 560px) {
    .between_butns {
        flex-direction: column;
        gap: 8px;
    }
}