.main-sections {
    margin-top: 80px;
}

.main-sections__wrapper {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.main-sections__item {
    height: 110px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
    background-color: #ffff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    /* flex: 1 1 33%; */
    padding: 15px 20px;
    transition: box-shadow 0.3s ease;
}

@media (min-width:1025px) {
    .main-sections__item:hover {
        box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
    }

    .main-sections__link:hover {
        color: #0C920D;
    }
}

.main-sections__bottom {
    display: flex;
    justify-content: center;
}

a.main-sections__link {
    color: var(--main-color);
    border: 1px solid currentColor;
    border-radius: 4px;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    max-width: 243px;
    width: 100%;
    gap: 10px;
    height: 44px;
}

.main-sections__link span {
    color: currentColor;
    font-size: 16px;
}

.main-sections__link svg {
    width: 12px;
    height: 12px;
    color: currentColor;
}

.main-sections__link svg path {
    color: currentColor;

}

.main-sections__img {
    max-width: 80px;
    display: flex;
    justify-content: end;
    height: 80px;
}

.main-sections__img img {
    height: 100%;
    object-fit: contain;
}

@media (max-width:1200px) {
    .main-sections {
        margin-top: 40px;

    }

    .main-sections__wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .main-sections__item {
        height: 70px;
        padding: 5px;


    }

    a.main-sections__link {
        max-width: 100%;
    }

    .main-sections__item span {
        color: currentColor;
        font-size: 16px;
    }

    .main-sections__img {
        height: 60px;

    }
}