.terms {
    padding: 40px 0;
}
.terms-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.terms-items {
    display: flex;
    border: 1px solid #D3D3DD;
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    align-items: center;
    padding: 20px 40px;
    justify-content: center;
    gap: 38px;
    transition: .4s;
}
.terms-items:hover {
    box-shadow: 0 2px 12px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8384e;
}
.terms-items svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 72.06px;
}
.terms-items svg path {
    transition: .4s;
}
.terms-items:hover svg path {
    fill: #e53e3e;
}
.terms-items span {
    color: #464040;
    font-size: 18px;
    line-height: 1.2 !important;
    font-weight: 700;
    font-family: "Manrope", arial, sans-serif;
    margin-bottom: 10px;
    display: inline-block;
    transition: .4s;
}
.terms-items:hover span {
    color: #e8384e;
}

@media (max-width: 990px) {
    .terms-items {
        padding: 20px 30px;
        gap: 28px;
    }
}
@media (max-width: 768px) {
    .terms-items p {
        font-size: 14px;
    }
}