.try-btn {
    position: relative;
    background-color: var(--black);
    color: white;
    width: 220px;
    padding: 20px;
    margin: 0 18px;
}

.title-gradient{
    background: var(--gradientText);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.comparison-table-title{
    text-align: center;
    font-size: 220%;
    font-weight: 600;
    margin: 0;
}

.comparison-table{
    display: flex;
    margin: 5% 0 0 0 ;
}

.comparison-logo-holder{
    text-align: center;
}

.comparison-competitor{
    font-weight: 700;
    font-size: 200%;
}

.comparison-logo{
    width: 185px;
    height: auto;
    max-height: 48px;
}

.comparison-col{
    width: 40%;
    margin: 0 auto;
    border-radius: 8px;
        border: 1px solid var(--black)
}

.comparison-col-right{
    background-color: var(--black);
    color: white;
}

.comparison-col-right .comparison-txt{
    color: gainsboro !important;
}

.comparison-holder {
    margin: 6% auto;
    width: 90%;
}

.comparison-img{
    width: 22px;
    margin-bottom: 18px;
}

.comparison-title {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 135%;
}

.comparison-txt {
    line-height: 1.4;
    margin-top: 8px;
    font-weight: 400;
    font-size: 95%;
    color: gray;
}

.post-holder{
    width: 85% !important;
}


@media only screen and (max-width: 800px) {
    .try-btn {
        width: 80%;
    }

    .logo-title{
        margin-top: 10%;
    }

    .comparison-table-title{
        font-size: 175%;
    }

    .comparison-table{
        margin: 10% 0 0 0;
    }

    .comparison-col{
        width: 48%;
    }

    .comparison-competitor{
        font-size: 155%;
    }

    .comparison-logo{
        width: 120px;
        height: auto;
        max-height: 31px;
    }

    .comparison-holder{
        margin: 16% auto;
    }

    .comparison-img{
        width: 16px;
        margin-bottom: 12px;
    }

    .comparison-title{
        font-size: 120%;
    }

    .post-holder{
        width: 92% !important;
    }
}