.gb-card {
    position: relative;
    width: 100%;
}

.gb-card-wrapper {
    position: absolute;
    left: 0;
    top: 55px;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gb-card-line {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.gb-card-line::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
}

p.gb-card-descr {
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Inter Variaable';
    font-size: 25px;
    line-height: normal;
    color: #333;
}

p.gb-card-descr span {
    display: block;
    margin-top: 5px;
    font-size: 18px;
}

.gb-card-block {
    margin-bottom: 10px;
    padding: 5px 15px;
    width: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #fff;
    border-radius: 30px;
}

.gb-card-value {
    background-color: #333;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter Variaable';
    font-size: 16px;
    line-height: normal;
    color: #fff;
}

.gb-card-arrow {
    display: block;
    transform: rotate(-135deg);
}

p.gb-card-txt {
    margin: 0;
    padding-left: 20px;
    position: relative;
    font-family: 'Inter Variaable';
    font-size: 14px;
    line-height: normal;
    color: #333;
}

p.gb-card-txt::before {
    content: '';
    position: absolute;
    background-image: url('//img.danila-master.ru/uploads/articlesImages/pages/classical-monuments/cemetery/arrow_black.svg?v=1');
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
    top: 50%;
}

.gb-card-image {
    width: 100%;
}

.gb-card-mob {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .gb-card-wrapper {
        top: 160px;
    }

    .gb-card-line,
    p.gb-card-descr {
        display: none;
    }

    .gb-card-mob {
        display: flex;
    }

    .gb-card-mob * {
        display: block !important;
    }
}