@charset "UTF-8";

.fib {
    display: flex;
    flex-wrap: wrap;
    gap: 0 64px;
}

@media screen and (max-width: 896px) {
    .fib {
        gap: 0 20px;
    }
}

.fib__item {
    width: calc(50% - (64px / 2));
    margin-top: 55px;
}

@media screen and (max-width: 896px) {
    .fib__item {
        width: calc(50% - (20px / 2));
        margin-top: 25px;
    }
}

.fib__item:nth-of-type(1),
.fib__item:nth-of-type(2) {
    margin-top: unset;
}

.fib__item--title {
    padding-top: 1em;
    text-align: center;
    font-size: 18px;
}

@media screen and (max-width: 896px){
    .fib__item--title{
        padding-top: 0.5em;
        font-size: 14px;
    }
}