.mainPageSections__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.mainPageSections__items__item {
    display: flex;
    flex-wrap: nowrap;
    height: 126px;
    width: calc(100%/3 - (20px * 2/3));
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 2px 10px 0 rgba(38, 38, 38, 0.10);
}
.mainPageSections__items__item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 100%;
    color: #333;
    padding: 20px;
    box-sizing: border-box;
    flex: 1;
}
.mainPageSections__items__item__img {
    flex: 1;
    max-width: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 20px;
}
.mainPageSections__items__item__img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.mainPageSections__items__item__text__title {    
    font-family: FranklinGothicMediumITC;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.mainPageSections__items__item__text__text {    
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.mainPageSections__items__item__text__link {
    color: #AFCB1F;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-top: auto;
}
.mainPageSections__items__item:hover .mainPageSections__items__item__text__link {
    text-decoration: none;
}

@media screen and (max-width: 1279px) {
    .mainPageSections__items {
        gap: 8px;
    }
    .mainPageSections__items__item {
        width: calc(50% - 4px);
        height: 106px;
    }
    .mainPageSections__items__item__text {
        padding: 16px;
    }
    .mainPageSections__items__item__img {
        padding-top: 16px;
    }
    .mainPageSections__items__item__text__title {
        font-size: 16px;
    }
    .mainPageSections__items__item__text__text {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .mainPageSections__items__item {
        width: 100%;
    }
}