.why-anod h2 {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: 500;
    color: #484949;
    text-align: center;
}
.why-anod .swiper-slide {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}
.why-anod .anodSwiper {
    overflow: hidden;
    margin: 0 85px 80px;
}
.why-anod h2:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #bfcbb7;
    margin: 20px auto;
}
.why-anod .advantages-blocks-list {
    padding: 0 85px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.why-anod .advantages-block {
    width: calc((100% - 100px) / 3);
    max-width: 390px;
    height: auto;
    min-height: 285px;
    border-radius: 12px;
    border: 1px solid #BEC5D6;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background-color .2s ease-in-out;
}
.why-anod .advantages-block:hover {
    background-color: transparent;
    background-image: linear-gradient(180deg, #DFE7E0 96%, #BFCBB7 96%);
    box-shadow: 1px 4px 35px 0px rgba(0, 0, 0, 0.04);
}
.why-anod .title {
    font-weight: 500;
    font-size: 27px;
    line-height: 159%;
    letter-spacing: -0.07em;
    color: #303030;
}
.why-anod .descr {
    font-weight: 300;
    font-size: 15px;
    line-height: 155%;
    color: #303030;
}
@media screen and (max-width: 1200px) {
    .why-anod .advantages-blocks-list {
        padding: 0 40px;
    }
}
@media screen and (max-width: 991px) {
    .why-anod .advantages-block {
        width: calc((100% - 50px) / 2);
        max-width: 100%;
        align-items: center;
        text-align: center;
        min-height: 245px;
    }
    .why-anod .swiper-slide {
        width: calc(100% / 2);
    }
}
@media screen and (max-width: 768px) {
    .why-anod .advantages-blocks-list {
        padding: 0 20px;
    }
    .why-anod .advantages-block {
        width: 100%;
        min-height: 245px;
    }
}
