57 lines
987 B
CSS
57 lines
987 B
CSS
.qualifyingPoints {
|
|
display: none;
|
|
}
|
|
|
|
.title {
|
|
color: var(--some-grey-color, #000);
|
|
/* font-family: var(--ff-brandon-text); */
|
|
font-size: 1.5rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.6%;
|
|
line-height: 1.7rem;
|
|
margin: 0 0 0.7rem;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.qualifyingPoints {
|
|
display: block;
|
|
}
|
|
|
|
.container {
|
|
display: grid;
|
|
gap: 3.8rem;
|
|
grid-template-columns: auto 1fr;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.title {
|
|
color: var(--some-grey-color, #4f4f4f);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.points {
|
|
align-items: center;
|
|
display: grid;
|
|
gap: 1rem;
|
|
grid-template-columns: auto 1fr;
|
|
}
|
|
|
|
.point {
|
|
/* font-family: var(--ff-brandon-text); */
|
|
font-size: 2.7rem;
|
|
font-weight: 900;
|
|
line-height: 2.7rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.pointTitle {
|
|
font-family: var(--ff-fira-sans);
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.6%;
|
|
line-height: 1.4rem;
|
|
grid-column: 1/-1;
|
|
margin: 0;
|
|
}
|
|
}
|