.features2{
    padding-top: 100px;
    padding-bottom: 150px;
}
.f2Inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.f2iHeader{
    margin-bottom: 85px;
}
.f2iBlocks{
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 30px;
}
.f2ibBlocksHolder{
    
    /* display: flex; */
    /* justify-content: space-around;
    align-items: center; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* overflow: hidden; */
    grid-gap: 30px;
}
.f2ibBlock{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 40px;
    padding-top: 0px;
    background: linear-gradient(180deg, #27201F 0%, rgba(36, 36, 36, 0) 100%);
    border-radius: 11px;
}
.f2ibBlock:last-child{
    margin-right: 0px;
}
.f2ibbIconHolder{
    top: -40px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(154.72deg, #EE252A 16.04%, rgba(48, 8, 9, 0.89) 158.45%);
    border: 6px solid #000000;
    border-radius: 50%;
}
.f2ibbIcon{

}
.f2ibbHeader{
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}
.f2ibbText{
    color: #827579;
    line-height: 24px;
}
@media screen and (max-width: 1400px){
    .f2iBlocks{
        width: 100%;
        max-width: 900px;
        grid-template-columns: repeat(1, 1fr);
    }
    .f2ibBlock{
        width: unset;
    }
}
@media screen and (max-width: 700px){
    .f2iHeader {
        margin-bottom: 70px;
    }
    .f2ibBlocksHolder{
        grid-template-columns: repeat(1, 1fr);
    }   
    .f2ibBlock{
        margin-bottom: 20px;
    }
}