/* FEATURES =============================================================== */
#features {
    background-color: #273347;
    padding: var(--paddingMedium) 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

#features h2 {
    margin: 0 0 1em 0;
    color: #FFF;
    font-weight: 700;
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    text-align: center;
}

#features ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 80px;
    row-gap: 60px;
    margin-bottom: 20px;
}

#features ul li {
    box-sizing: border-box;
    font-weight: 300;
}

#features ul li h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 10px 0;
    /* color: #02CEFF; */
    color: #FFF;
}

#features ul li p {
    font-size: 16px;
    line-height: 22px;
    color: #49505b;
    color: #FFF;
    font-weight: 500;
}

#features ul li p.note {
    font-size: 13px;
    line-height: 1.4em;
    color: var(--gris-7);
    font-weight: 500;
    margin-top: .6em;
}

#features ul li p strong {
    font-weight: 300;
    text-transform: uppercase;
}

#features ul li span {
    margin-left: -5px;
}

#features ul li span.noGap {
    height: 66px !important;
    display: inline-block;
    position: relative;
}

#features ul li span i {
    font-size: 70px;
    color: #02CEFF;
}

#features ul li ul {
    display: flex;
    flex-direction: column;
    column-gap: 0;
    row-gap: 0;
    margin-bottom: 0;
}
#features ul li ul li{
    font-weight: 300;
    margin: 0 0 1em 0;
    padding: 0;
    display: flex;
}
#features ul li ul li i {
    color: #02CEFF;
    margin-right: 5px;
}


#features .demoAccess {
    text-align: center;
    margin-bottom: var(--paddingMedium);
}

#features .demoAccess a {
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 auto;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 700;
    background: rgb(2,199,255);
    background: -moz-linear-gradient(90deg, rgba(2,199,255,1) 0%, rgba(154,119,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,199,255,1) 0%, rgba(154,119,255,1) 100%);
    background: linear-gradient(90deg, rgba(2,199,255,1) 0%, rgba(154,119,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02c7ff",endColorstr="#9a77ff",GradientType=1);
}

#features .demoAccess a:hover {
    background: rgb(0,189,235);
    background: -moz-linear-gradient(90deg, rgba(0,189,235,1) 0%, rgba(145,104,238,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,189,235,1) 0%, rgba(145,104,238,1) 100%);
    background: linear-gradient(90deg, rgba(0,189,235,1) 0%, rgba(145,104,238,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00bdeb",endColorstr="#9168ee",GradientType=1);
}

@media screen and (max-width: 1100px) {
    #features .pageWidth {
        padding: 0 20px;
    }
}

@media screen and (max-width: 860px) {
    #features .pageWidth {
        padding: 0 20px;
    }

#features ul {
    grid-template-columns: repeat(2, 1fr);
}

    #features ul li span {
        width: 120px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
#features ul {
    grid-template-columns: repeat(1, 1fr);
        row-gap: 40px;
}
}


@media screen and (max-width: 400px) {
    #features ul li h3 {
        font-size: 19px;
        line-height: 24px;
    }

    #features ul li h4 {
        font-size: 15px;
    }

    #features ul li p {
        font-size: 15px;
        line-height: 20px;
    }
}
