.main-carousel {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 85px;
    padding-right: 85px;
}

.main-carousel::before {
    content: "";
    position: absolute;
    left: 45px;
    top: 30px;
    display: block;
    width: calc(100% - 90px);
    box-sizing: border-box;
    height: 4px;
    border-top: 4px solid black;
}
.main-carousel::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 30px;
    height: 5px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-top: 4px dashed black;
}
.main-carousel .button-arrow:hover {
    transform: scale(1.2) translateY(35%);
}
.main-carousel .button-arrow {
    position: absolute;
    bottom: 70px;
    transform: translateY(50%);
}
.main-carousel .button-arrow.-left {
    left: 15px;
}
.main-carousel .button-arrow.-right {
    right: 15px;
}
.main-carousel .wrapper {
    overflow: hidden;
    width: 100%;
}
.main-carousel .elements {
    display: flex;
    justify-content: space-between;
    transition: transform 1s;
}