.card-tab{
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 45px;
    background: var(--gray-bg);
    border-radius: 30px;
}
.card-tab__text{
    font-weight: 400;
    font-size: 19px;
    line-height: 125%;
    color: var(--black);
}
.row--tab{
    gap: 20px 0;
    margin-bottom: 20px;
}

.tab-image img{
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 30px;
}
.row--map{
    gap: 20px 0;
}
@media(max-width:767px){
    .tab-image img{
        min-height: 200px;
        object-fit: cover;

    }
}
@media(max-width:575px){
    .card-tab__icon svg{
        max-width: 60px;
        height: auto;
    }
    .card-tab__text{
        font-size: 14px;
    }
}