#cirlcB {
    top: 63%;
    right: 23%;
}

.blog {
    overflow: hidden;
}

.filter-button-group {
    display: flex;
    gap: 1.56vw;
    flex-wrap: wrap;
}

.button-group button {
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 1vw 2vw;
    font-size: 1.56vw;
}

.button-group button:hover {
    background-color: #000;
    color: #fff;
}

#filters button.selected {
    background-color: #000;
    color: #fff;
}

.box-listing {
    margin-top: 5.2vw;
    margin-bottom: 10.4vw;
}

.box-item {
    width: 31%;
    margin: 5.2vw 1vw 0 1vw;
    cursor: pointer;
}

#boximg {
    overflow: hidden;
}

.box-item #boximg img {
    width: 100%;
    transition: all .5s ease;
    scale: 1.2;
    object-fit: cover;
}

.box-item #boximg:hover img {
    scale: 1.1;
}

.box-item p {
    margin: 1.5vw 0 3vw 0;
}

.box-item a {
    font-size: 1.14vw;
    border: 2px solid #000;
    color: #000;
    padding: 1vw 1.56vw;
    border-radius: 50px;
    transition: all 0.3s ease-out;
}

.box-item a:hover {
    background: #000;
    color: #fff;
}


.Blogtexts {
    width: 75%;
}

@media (max-width: 1280px) {
    #cirlcB {
        top: 68%;
    }
}

@media (max-width: 868px) {
    #cirlcB {
        top: 55%;
        right: 10%;
    }

    .box-listing {
        margin-bottom: 20vw;
    }

    .button-group button {
        padding: 2vw 4vw;
        font-size: 2.4vw;
    }

    .box-item {
        width: 47%;
        margin: 10vw 1.5vw 0 1vw;
    }

    .box-item p {
        margin: 3vw 0 4vw 0;
    }

    .box-item a {
        font-size: 2.2vw;
        padding: 1.5vw 3vw;
    }

    .Blogtexts {
        width: 85%;
    }
}

@media (max-width: 670px) {
    #cirlcB {
        top: 73%;
        right: 25%;
    }

    .box-listing {
        margin-top: 10vw;
        margin-bottom: 30vw;
    }

    .filter-button-group {
        gap: 2.5vw;
    }

    .button-group button {
        font-size: 3.5vw;
    }

    .box-item {
        width: 100%;
        margin: 15vw 0 0 0;
    }

    .box-item p {
        margin: 3.5vw 0 5vw 0;
    }

    .box-item a {
        font-size: 3vw;
        padding: 2vw 4vw;
    }

    .Blogtexts {
        width: 100%;
    }
}