18 lines
311 B
SCSS
18 lines
311 B
SCSS
|
|
.terms {
|
||
|
|
padding: 80px 0;
|
||
|
|
&__title {
|
||
|
|
font-size: $h3-size;
|
||
|
|
line-height: $h3-height;
|
||
|
|
font-weight: 700;
|
||
|
|
color: $text-black;
|
||
|
|
margin-bottom: 40px;
|
||
|
|
}
|
||
|
|
&__para {
|
||
|
|
font-size: $p-size;
|
||
|
|
line-height: $p-height;
|
||
|
|
font-weight: 400;
|
||
|
|
color: $text-black;
|
||
|
|
margin-bottom: 40px;
|
||
|
|
}
|
||
|
|
}
|