.interne-scroll .wrapper{
    justify-content: center;
    gap: 30px;
}

.interne-scroll .wrapper a{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 30px;
    line-height: 44px;
}

.interne-scroll .wrapper a:nth-child(2)::before{
    position: absolute;
    left: -14px;
    content: "";
    height: 40px;
    width: 2px;
    background-color: #A1AB96;
}
.interne-scroll .wrapper a:nth-child(2)::after{
    position: absolute;
    right: -14px;
    content: "";
    height: 40px;
    width: 2px;
    background-color: #A1AB96;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
  screen and (max-width: 1024px) {
    .interne-scroll .wrapper a {
        font-size: 20px;
        line-height: 26px;
    }
    .interne-scroll .wrapper a:nth-child(2)::before,
    .interne-scroll .wrapper a:nth-child(2)::after {
        height: 30px;
    }
}
@media screen and (max-width: 767px) {
    .interne-scroll .wrapper a:nth-child(2)::before,
    .interne-scroll .wrapper a:nth-child(2)::after {
       display: none;
    }
    .interne-scroll .wrapper a:nth-child(2) {
        justify-content: center;
        border-top: 1px solid #A1AB96;
        border-bottom: 1px solid #A1AB96;
        width: 85%;
        padding: 20px 0;
    }
    
}

