2023-10-28 08:20:52 +00:00
|
|
|
.tmp_logo_container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.split-two {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
column-gap: 2rem;
|
|
|
|
}
|
|
|
|
|
2024-09-02 20:45:31 +00:00
|
|
|
.landing__container {
|
|
|
|
section {
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
padding: 2rem 0;
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 1.2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
section:last-of-type {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing__container .landing__section:nth-child(even) {
|
2024-09-03 09:46:32 +00:00
|
|
|
background-color: #19875420;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing__slogan__content {
|
|
|
|
word-break: keep-all;
|
2024-09-02 20:45:31 +00:00
|
|
|
}
|
|
|
|
|
2023-10-28 08:20:52 +00:00
|
|
|
@media(max-width: $md-breakpoint) {
|
|
|
|
.split-two {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2024-09-03 09:46:32 +00:00
|
|
|
|