File size: 1,065 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
/* ############### Jumbotron Section ############### */
.jumbo-item {
padding: 70px 5%;
max-width: 1100px;
margin: auto;
display: flex;
justify-content: flex-end;
}
@media (max-width: 950px) {
.jumbo-item {
flex-direction: column;
}
}
.jumbo-title {
font-size: 3rem;
line-height: 1.1;
margin-bottom: 8px;
padding-right: 100px;
}
@media (max-width: 950px) {
.jumbo-title {
font-size: 2.5rem;
text-align: center;
padding-right: initial;
}
}
@media (max-width: 550px) {
.jumbo-title {
font-size: 1.5rem;
text-align: center;
}
}
.jumbo-subtitle {
font-size: 1.5rem;
font-weight: normal;
line-height: normal;
padding-right: 100px;
}
@media (max-width: 950px) {
.jumbo-subtitle {
font-size: 1.25rem;
text-align: center;
padding-right: initial;
}
}
@media (max-width: 550px) {
.jumbo-subtitle {
font-size: 1.2rem;
text-align: center;
}
}
@media (max-width: 950px) {
.jumbo-imagewrapper {
text-align: center;
}
}
.jumbo-image {
max-width: 100%;
height: auto;
}
|