.content-boxes .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.content-boxes .boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.content-boxes .box-single {
    width: calc(25% - 24px);
    border: 1px solid var(--Input, #979797);
    background: #FFF;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #717182;
    transition: border .3s ease;
}

.content-boxes a.box-single:hover {
    border-color: var(--brick);
}

.content-boxes .box-single .details {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    color: #1d1d1d;
    font-weight: 700;
    font-family: 'Alegreya Sans';
    transition: color .3s ease;
}

.content-boxes a.box-single:hover .details {
    color: var(--brick);
}
.content-boxes a.box-single:hover .details svg path{
    stroke: var(--brick);
}

.content-boxes .box-single strong {
    text-transform: uppercase;
    font-weight: inherit;
}

@media (max-width:1199px) {
    .content-boxes .boxes-wrapper {
        gap: 24px;
    }

    .content-boxes .box-single {
        width: calc(50% - 12px);
    }
}

@media (max-width:679px) {
    .content-boxes .box-single {
        width: 100%;
    }
}