.cabb-block.front-page-hero {
    --hero-height: calc(100vh - (265px));
}

/*@media (max-width: 620px) {
    .cabb-block.front-page-hero {
        --hero-height: calc(100vh - (270px));
    }
}*/

.cabb-block.front-page-hero {
    min-height: var(--hero-height);
    height: 100%;
    padding: 0;
    position: relative;
    color: #ffffff;
    row-gap: 0;
    /*padding-bottom: 147px*/
}

.cabb-block.front-page-hero .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: var(--hero-height);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.cabb-block.front-page-hero .bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .7) 40%, transparent 150%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cabb-block.front-page-hero .bg img.hero-bg-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    height: var(--hero-height);
}

.cabb-block.front-page-hero .bg img.hero-bg-image.active {
    opacity: 1;
    animation: move 80s ease;
    -ms-animation: move 80s ease;
    -webkit-animation: move 80s ease;
    -moz-animation: move 80s ease;
    animation-delay: 0;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.cabb-block.front-page-hero .bg img.hero-bg-image.hidden {
    display: none;
}

@keyframes move {
    0% {
        width: 100%;
    }

    50% {
        width: 110%;
    }

    100% {
        width: 100%;
    }
}

.cabb-block.front-page-hero .content {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    height: var(--hero-height);
    width: 100%;
    z-index: 10;
    min-height: max-content;
    padding: 3em 0;
}

.cabb-block.front-page-hero .content > div {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.cabb-block.front-page-hero .content > div > div {
    width: 100%;
    max-width: 470px;
}

.cabb-block.front-page-hero .content > div > div > :first-child {
    margin-top: 0;
}

.cabb-block.front-page-hero .content > div > div > :last-child {
    margin-bottom: 0;
}

.cabb-block.front-page-hero .clients {
    position: relative;
    bottom: 0;
    left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 10;
    background-color: #000000;
}

.cabb-block.front-page-hero .clients>div {
    display: flex;
    gap: 20px;
    row-gap: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.cabb-block.front-page-hero .clients a {
    display: inline-block;
    width: 100px;
    height: 80px;
}

.cabb-block.front-page-hero .clients img {
    width: 100px;
    height: 80px;
    opacity: 1;
    transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
}

.cabb-block.front-page-hero .clients a:hover img {
    opacity: .5;
}

.cabb-block.front-page-hero .testimonial,
.cabb-block.front-page-hero .testimonial > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.cabb-block.front-page-hero .testimonial p:first-of-type {
    font-size: 25px;
    font-family: 'Ubuntu';
    white-space: nowrap;
    margin: 0;
}

.cabb-block.front-page-hero .testimonial p:last-of-type {
    font-size: 14px;
    white-space: nowrap;
    margin: 0;
}

/*.cabb-block.front-page-hero .clients > div a:last-child {
    flex-grow: 1;
}*/
