.features {
    width: 100%;
    position: relative;
    height: fit-content;
    box-sizing: border-box;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 100px;
    row-gap: 100px;
    flex-wrap: wrap;
    padding: 60px 30px;

}

.features .left{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.features .left h2{
    font-size: 45px;
}
.features .left p{
    font-size: 14px;
    line-height: 1.7;
    width: 100%;
    max-width: 500px;
}
.features #cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.features .card {
    width: 320px;
    height: fit-content;
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 10px;
    background-color: #a0a0a000;
    border-radius: 10px;
}

.features .card svg {
    width: 35px;
    height: 35px;
    border-radius: 1000px;
    
}
.features .card svg path{
    fill:#BB7615;
}

.features .card h3 {
    margin: 0;
    padding: 0;
    font-weight: 450;
    font-size: 20px;
    line-height: 150%;
    text-align: left;
}

.features .card p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    color: #5f5f5f;

    text-align: left;
}

@media (max-width:960px){
    #features{
        padding-bottom: 30px;
    }
    .features #cards{
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width:520px) {
    .features {
        padding-inline: 20px;
    }

    .features .card {
        width: 100%;
    }
}