2024-03-01 17:47:03 +03:00
|
|
|
.banner--header {
|
|
|
|
|
height: 12rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.banner--header img {
|
|
|
|
|
min-height: 100%;
|
2024-03-12 09:16:19 +03:00
|
|
|
max-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.banner--header a {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
justify-content: center;
|
2024-03-01 17:47:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
|
.banner--header {
|
|
|
|
|
height: 8rem;
|
2024-03-12 09:16:19 +03:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.banner--header img {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
max-height: 100%;
|
2024-03-01 17:47:03 +03:00
|
|
|
}
|
|
|
|
|
}
|