
.compare-cards--section{
        padding-bottom: 50px;
        overflow: hidden;
}
.compare-cards--section h2{
    font-size: 40px;
    line-height: 1.2em;
}

.compare-cards--wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.compare-card--item {
    border-radius: 7px;
    background: #fff;
    box-shadow: 0px 0px 56px rgba(0, 0, 0, 0.16);
    padding: 35px;
    margin-bottom: 32px;
    position: relative;
    margin-top: 16px;
}

.compare-card--item:before {
    content: '';
    height: 4px;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(90deg, rgba(79,205,221,1) 0%, rgba(0,0,0,1) 100%);
    box-shadow: 0px 0px 56px rgba(0, 0, 0, 0.16);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.compare-card--item img {
    max-width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 16px;
    text-align: center;
    display: block;
}

@media(min-width:768px){
    .compare-cards--wrapper {
        flex-direction: row;
        max-width: 1200px;
        margin: auto;
        justify-content: space-between;
    }

    .compare-card--item {
        width: calc(50% - 16px);
    }
}

@media(min-width:1025px){
    .compare-cards--section h2{
        padding-bottom: 64px;
        font-size: 60px;
    }
    .compare-card--item img {
        margin-bottom: 42px;
    }

    .compare-card--item ul.css-column-1-check li:before {
        width: 40px;
        height: 31px;
        background-repeat: no-repeat;
        background-size: cover;
        top: 6px;
    }

    .compare-card--item ul.css-column-1-check li {
        padding-left: 60px;
        font-size: 20px;
        line-height: 1.5em;
    }

}

@media((min-width: 1800px)){
    .compare-cards--section{
        padding: 60px 0;

    }
}


.compare-cards--cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
}

.compare-cards--cta p {
    font-weight: 800;
    font-size: 25px;
    line-height: 1.25em;
    text-align: center;
}

@media(min-width:768px){
    .compare-cards--cta {
        flex-direction:row;
        max-width:900px;
        margin:auto
    }
    .compare-cards--cta p{
        text-align:left;
        max-width:600px;
        margin-right:64px;
        padding-bottom:0px;
    }


}

/*blobs*/

.left-blob,.right-blob {
    position: absolute;
}

.left-blob {
    left: -50px;
    max-width: 420px;
}

.right-blob {
    right: -50px;
    bottom: -200px;
    max-width: 460px;
}

@media(min-width:768px){
    .left-blob {
       max-width: 60%;
       bottom: -50px;
       left: -10%;
    }

    .right-blob {
        max-width: 100%;
        top: -5%;
        right: -40%;
    }
}

@media(min-width:1025px){
    .left-blob {
       max-width: 100%;
       bottom: -5%;
       left: -10%;
    }

    .right-blob {
        max-width: 100%;
        top: -5%;
        right: -20%;
    }
}

@media(min-width:1200px){
    .left-blob {
       max-width: 100%;
       bottom: -5%;
       left: -10%;
    }

    .right-blob {
        max-width: 100%;
        top: -11%;
        right: -10%;
    }
}