2020-08-05 05:45:05 +00:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
2023-08-02 07:56:52 +00:00
|
|
|
flex-direction: row;
|
2022-03-01 02:39:37 +00:00
|
|
|
align-items: center;
|
2021-02-16 04:14:09 +00:00
|
|
|
width: 100%;
|
2023-08-02 07:56:52 +00:00
|
|
|
height: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
align-items: center;
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
2020-09-27 05:02:10 +00:00
|
|
|
display: flex;
|
2022-12-13 03:45:38 +00:00
|
|
|
flex-direction: row;
|
2020-08-05 05:45:05 +00:00
|
|
|
align-items: center;
|
2023-03-03 20:37:26 +00:00
|
|
|
gap: 10px;
|
|
|
|
|
font-size: var(--font-size-lg);
|
|
|
|
|
font-weight: 700;
|
2023-03-15 05:37:50 +00:00
|
|
|
color: var(--font-color100) !important;
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
2020-08-07 05:03:02 +00:00
|
|
|
|
2020-09-20 09:54:38 +00:00
|
|
|
.buttons {
|
|
|
|
|
display: flex;
|
2022-12-13 03:45:38 +00:00
|
|
|
flex-direction: row;
|
2020-09-27 05:02:10 +00:00
|
|
|
align-items: center;
|
2023-03-03 20:37:26 +00:00
|
|
|
justify-content: flex-end;
|
2020-09-20 09:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
2022-03-01 02:39:37 +00:00
|
|
|
.header .buttons {
|
|
|
|
|
flex: 1;
|
2021-03-01 04:37:59 +00:00
|
|
|
}
|
2022-03-12 00:04:05 +00:00
|
|
|
|
2022-03-01 02:39:37 +00:00
|
|
|
.links {
|
|
|
|
|
order: 2;
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
min-width: 100%;
|
2020-09-20 09:54:38 +00:00
|
|
|
}
|
2021-01-03 11:32:25 +00:00
|
|
|
}
|
2020-09-20 09:54:38 +00:00
|
|
|
|
2021-03-01 04:37:59 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2022-03-01 02:39:37 +00:00
|
|
|
.buttons,
|
|
|
|
|
.links {
|
2021-02-16 04:14:09 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2020-08-07 05:03:02 +00:00
|
|
|
}
|