section.support-main {
    text-align: center;
    margin-bottom: -10px;
}
section.support-main .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
}
section.support-main .item {
    padding: 35px 30px 25px;
}
section.support-main .image {
    font-size: 23px;
    width: 64px;
    height: 64px;
    background: var(--color);
    display: inline-block;
    line-height: 64px;
    border-radius: 50%;
    color: black;
}
section.support-main .item a {
    display: block;
}
section.support-main h2 {
    color: var(--color);
    font-size: 36px;
    line-height: 36px;
    margin-top: 10px;
}
section.support-main p {
    min-height: 130px;
    font-size: 16px;
    line-height: 21px;
}
section.support-main .rel{
    position:relative;
}

section.support-main .pro-only{

font-weight: 600;

color: white;

background: black;

position: absolute;

left: 0;

right: 0;

top: 31%;

-ms-transform: translateY(-50%);

transform: translateY(-50%);

margin: auto;

width: 203px;

line-height: 40px;

z-index: 2;

border-radius: var(--border-radius);

border: 2px solid var(--color2);

transform: rotate(12deg);
}
section.support-main .pro-only span{

color: var(--color);
}
section.support-main .pro-badge {
    position: absolute;
    line-height: 24px;
    left: 0;
    right: 0;
    width: 78px;
    margin: auto;
    top: 84px;
}
section.support-main .options {
    margin-top: 35px;
    text-align: left;
}
section.support-main .options li:hover .name{
color:var(--color);
}
section.support-main .options .name {
    font-size: 16px;
    line-height: 14px;
    margin-top: 5px;
    display: inline-block;
    color: white;
    font-weight: 700;
        -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section.support-main .options li {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border: var(--border);
    border-radius: var(--border-radius);
    background: var(--darker);
    margin-bottom: 5px;
}
section.support-main .options li:hover {
    opacity: 1;
    color: var(--color);
    border-color: var(--color)
}
section.support-main .options.disabled li,
section.support-main .options.disabled li:hover {
    opacity: 0.25;
}
section.support-main .options.disabled li a {
    cursor: not-allowed;
}
section.support-main .options li a {
    padding: 10px 20px 14px 45px;
    display: block;
    position: relative;
    line-height: 18px;
}
section.support-main .options i {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: var(--color);
    position: absolute;
    left: 17px;
    top: 13px;
}
section.support-main .options a {
    display: block;
}
@media all and (max-width: 1140px) {
    section.support-main .item {
        padding: 25px 15px 15px;
    }
    section.support-main h2 {
        font-size: 30px;
        line-height: 32px;
    }
}
@media all and (max-width: 960px) {
    section.support-main h2 {
        font-size: 24px;
        line-height: 25px;
    }
    section.support-main p {
        font-size: 15px;
        line-height: 19px;
    }
}
@media all and (max-width: 720px) {
    section.support-main .items {
        grid-template-columns: 1fr;
        grid-gap: 5px;
    }
    section.support-main .item {
        margin: unset;
    }
    section.support-main p {
        min-height: unset;
        margin-bottom: 0;
    }
    section.support-main .options {
        margin-top: 15px;
    }
}
@media all and (max-width: 576px) {
    section.support-main .item {
        padding: 15px;
    }
}