.key-features{
    width: 100%;
    min-height: 70lvh;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-image: url(../images/key-features.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow-y: auto;
}

.key-features-inner{
    width: 50%;
    min-height: 70lvh;
    padding-left: 3rem;
    padding-top: 1rem;
    background-color: rgba(28, 40, 48, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.key{
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    margin: 0 auto;
}
.key-icon-con{
    width: 4rem;
    height: 3rem;
    border-radius: 1rem;
}
.key-icon{
    width: 100%;
    height: 100%;
}
.key-content {
    width: 85%;
}
.key-content h2{
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.key-content p{
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 950px) {
    .key-features-inner{
        width: 80%;
    }
}

@media (max-width: 700px) {
    .key-features-inner {
        width: 95%;
        padding: 0;
    }
}

@media (max-width: 370px) {
    .key-content h2{
        font-size: 18px;
    }
    .key-content p{
        font-size: 14px;
    }
}