.padding-terms {
    padding: 9vw 12vw 6vw 12vw;
}

.terms{
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.terms .title-p{
    color: var(--blue);
}
.terms .subtitle{
    width: 50vw;
    margin: auto;
}

.terms span{
    font-weight: 600;
    color: var(--blue);
}
.terms .item{
    text-align: center;
}

.terms .item2 a{
    font-weight: 500;
    color: var(--black);
}
.terms .item2 a:hover{
    color: var(--gold);
}

.terms .item1{
    display: flex;
    flex-direction: column;
    gap: 2vw;
}


@media (max-width: 996px) {
    .terms .subtitle {
        width: 100%;
    }
    .padding-terms {
        padding: 6vw;
    }
    .terms {
        gap: 3vw;
    }
    
}