﻿/*################################################### POSLOVANJE #####################################################*/

.poslovanje .row {
    background-color: #333333;
    position: relative;
    height: 200px;
    margin: 0;
}


.poslovanje .row h1 {
    position: absolute;
    margin: 0;
    margin-top: 46px;
    color: white;
    font-size: 32px;
    text-align: center;
}

.poslovanje .row button{
    position: absolute;
    bottom: 0;
    margin-bottom: 46px;
    border: none;
    background-color: #e94615;
    border-radius: 1em;
    left: 50%;
    transform: translate(-50%);
    font-size: 26px;
    overflow: hidden;
    flex-shrink: 0;
    width: 300px;
}

.poslovanje .row button a{
    text-decoration: none;
    color: white;

}

.poslovanje .row button a:hover {
    color: #e94615;
}

.poslovanje .row button::after {
    content: "";
    background-color: white;
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
}

.poslovanje .row button[class^="slide"]::after {
    transition: all 0.35s;
}

.poslovanje .row button[class^="slide"]:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.35s;
}

.poslovanje .row button.slide_from_left::after {
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
}