section.comparison {
    padding-top: unset;
    margin-bottom: 50px;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 15px 45px;
}
.comparison-grid:after {
    content: "";
    position: absolute;
    width: 3px;
    background-color: #f2f2f2;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
}
.comparison-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 20.16px;
    margin-bottom: 20px;
}
.comparison-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.toggle-content {
    display: none;
}

@media screen and (max-width: 992px) {
    .comparison-content {
        max-height: 7.5em;
        overflow: hidden;
        position: relative;
        transition: max-height 0.5s ease;
    }
    .comparison-content.expanded {
        max-height: none;
    }
    .comparison-content.expanded:after {
        display: none;
    }
    .toggle-content {
        display: block;
        margin-top: 1em;
        cursor: pointer;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: unset;
    }
    .comparison-grid:after {
        display: none;
    }
    .comparison-title, .comparison-content {
        font-size: 16px;
    }
    .toggle-content {
        margin-top: 15px;
        color: #00afef;
        cursor: pointer;
        display: table;
        position: relative;
        border: unset;
        background: unset;
        font-size: 18px;
        font-weight: 300;
        line-height: 1.44;
    }
    .toggle-content:after {
        content: '';
        right: -22px;
        top: 4px;
        position: absolute;
        display: block;
        margin: 2px auto;
        width: 7px;
        height: 7px;
        border-top: 2px solid #00AFEF;
        border-left: 2px solid #00AFEF;
        transform: rotate(225deg);
        transition: .5s;
    }
    .toggle-content.show-less:after {
        transform: rotate(45deg);
    }    
}