25 lines
477 B
CSS
25 lines
477 B
CSS
.page-header {
|
|
@apply bg-primary text-white py-16 items-center;
|
|
|
|
&__inner {
|
|
@apply grid grid-cols-1 gap-x-24 gap-y-20 !py-0;
|
|
@screen lg {
|
|
grid-template-columns: 61.8fr 38.2fr;
|
|
@apply !py-16;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
@apply !text-white;
|
|
}
|
|
&__subtitle {
|
|
@apply text-white text-6xl;
|
|
}
|
|
&__description {
|
|
@apply mb-8 lg:mb-16;
|
|
}
|
|
&__cta {
|
|
@apply internal-link-with-icon internal-link-with-icon--white;
|
|
}
|
|
}
|