.advantages-section {
    width: 100%;
    padding: 60px 0 0px;
    box-sizing: border-box
}

.advantages-section .advantages-section__title {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    font-weight: bold;
    color: #333333;
    text-align: left;
    position: relative;
    box-sizing: border-box;
}

.advantages-section .advantages-section__description {
    font-weight: 400;
    color: #000000;
    line-height: 36px;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    box-sizing: border-box;
}

.advantages-section .advantages-section__content {
    width: 90%;
    max-width: 1350px;
    margin: 55px auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}


.advantages-section .advantages-section__item {
    width: calc(100% / 2 - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F5F5F5;
    box-sizing: border-box;
    padding: 20px 0 0;
}

.advantages-section .advantages-section__item-image {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.advantages-section .advantages-section__item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantages-section .advantages-section__item-title {
    font-weight: bold;
    color: #070707;
    text-align: center;
    margin-bottom: 6px;
}

.advantages-section .advantages-section__item-description-box {
    padding: 30px 25px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-section .advantages-section__item-description {
    width: 100%;
    font-weight: 400;
    color: #FDFCFC;
    line-height: 32px;
    text-align: left;
}

@media screen and (max-width: 760px) {
    .advantages-section .advantages-section__content {
        flex-direction: column;
        align-items: center;
    }

    .advantages-section .advantages-section__item {
        width: 100%;
        max-width: 675.8px;
    }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
    .advantages-section .advantages-section__content {
        flex-direction: column;
        align-items: center;
    }

    .advantages-section .advantages-section__item {
        width: 100%;
        max-width: 675.8px;
    }
}


@media screen and (min-width: 1020px) and (max-width: 1350px) {}