.--black-section {
background: var(--shark-shark-600, #0A0B0D);
}
.--black-section * {
color: var(--white, #FFF);
}
/* gradient border */
.--gradient-border {
position: relative;
z-index: 1;
}
.--gradient-border:before {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
z-index: -2;
left: 0;
top: 0;
background: var(--linear-white-30);
border-radius: inherit;
}
.--gradient-border:after {
content: '';
display: block;
width: calc(100% - 2px);
height: calc(100% - 2px);
position: absolute;
z-index: -1;
left: 1px;
top: 1px;
background: inherit;
border-radius: inherit;
}