29 lines
575 B
SCSS
29 lines
575 B
SCSS
.text-over-image-c {
|
|
background-position: center;
|
|
background-size: cover;
|
|
padding-top: 6rem;
|
|
padding-bottom: 20rem;
|
|
|
|
@include media-breakpoint-down(md) {
|
|
.col:first-of-type {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.content-wrapper {
|
|
.content {
|
|
h2 {
|
|
@extend .goudy;
|
|
font-size: 70px;
|
|
line-height: 77px;
|
|
margin-bottom: 2rem;
|
|
color: $c-navy;
|
|
}
|
|
|
|
strong {
|
|
color: $c-navy;
|
|
}
|
|
}
|
|
}
|
|
}
|