.transport-companies-content {
    position: relative;
}

.transport-companies-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--deepblue);
}


.transport-companies-content .owl-nav {
    justify-content: space-between;
    display: flex !important;
    pointer-events: none;
    position: absolute;
    top: 30%;
    left: -110px;
    right: -110px;
}

.transport-companies-content .owl-nav button {
    width: 60px;
    height: 60px;
    border: 1px solid var(--lightgray) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s;
    pointer-events: all;
}

.transport-companies-content .owl-nav button:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.transport-companies-content .owl-nav button svg path {
    transition: all .4s;
}

.transport-companies-content .owl-nav button:hover svg path {
    stroke: #FFFFFF;
}

@media all and (max-width: 1750px) {
    .transport-companies-content .owl-nav {
        left: 5px;
        right: 5px;
    }
}

@media all and (max-width: 1024px) {
    .transport-companies-content .owl-nav {
        justify-content: center;
        position: static;
        margin-top: 40px;
    }

    .transport-companies-content .owl-nav > * {
        margin: 0 8px;
    }
}