/************************* featuresSection *************************/

.featuresSection {
    width: 85%;
    max-width: 85%;
    margin: auto;
    display: flex;
    gap: 20px;
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
}

.featuresSection .titr {
    margin: 10px auto;
    font-size: 1.2rem;
}

.featuresSection p {
    font-size: 0.8rem;
    line-height: 2;
}

.featuresSection>div {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: space-around;
}

.featureItem header span {
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 5px auto;
    transition: .3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(1.5px) saturate(180%);
        -webkit-backdrop-filter: blur(1.5px) saturate(180%);
}

.featureItem:hover header span {
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
    border-left: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
}

.featureItem header span svg {
    width: 100%;
    height: 100%;
    fill: #9B795D;
}

.featureItem header h4 {
    text-align: center;
    margin: 13px auto;
    font-size: 14px;
}

.featureItem p {
    display: none;
}

@media (max-width:900px) {
    .featureItem header h4 {
        font-size: 12px;
    }
}
















