.three-item{
    flex: 1 1 calc(33.33%);
}

.features-page-items-div{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 20px;
    margin: 20px 0px 20px 0px;
}


.features-item-div{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: 300px;
    min-width: 400px;
    max-width: 400px;
    box-shadow: 1px 1px 10px rgb(236, 236, 236);
    padding: 40px 20px 20px 20px;
    justify-content: space-between;
}

.features-item-div img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

#key-span{
    color: #d21f3c;
    
}

#key-features-h2{
    text-align: center;
}

#get-started-link{
    background-color: #d21f3c;
    color: white;
    border-radius: 5px;
    padding: 5px;
}

.features-highlight-a{
    font-style: italic;
    margin-right: 10px;
    align-self: flex-end;
}

.features-item-h6{
    color: #d21f3c;
    font-size: 1.5rem;
    font-weight: bold;
}

.features-item-p{
    
}

.some-features-p{
    text-align: right;
}

.features-section{
    padding-bottom: 0px;
}

.features-headings-h1-h2{
    font-weight: bold;
    font-size: 1.5rem;
}

#invisible-features-item-div{
    visibility: hidden;

}

@media (max-width:1399px) {
    #invisible-features-item-div{
        display: none;
    }
}

@media (max-width:500px) {
    .features-headings-h1-h2{
        font-size: 1.2rem;
    }
    .features-item-h6{
        font-size: 1rem;
    }

    .features-section{
        padding: 20px;
    }
    
    .features-section h2{
        text-align: center;
    }

    .features-item-div{
        min-width: 300px;
        max-width: 300px;
    }
}