2025-09-02 19:50:17 -04:00
|
|
|
.logo {
|
2025-09-24 14:05:51 -06:00
|
|
|
position: relative;
|
|
|
|
|
filter: invert(1);
|
|
|
|
|
z-index: 3;
|
|
|
|
|
margin: 5px;
|
2025-09-02 19:50:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cedetecContainer {
|
2025-09-24 14:05:51 -06:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: -1;
|
2025-09-02 19:50:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cedetecContainer::after {
|
2025-09-24 14:05:51 -06:00
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background: linear-gradient(to right, #f9f9f9, rgba(128, 128, 128, 0));
|
2025-09-02 19:50:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.yellowPart {
|
2025-09-24 14:05:51 -06:00
|
|
|
position: absolute;
|
|
|
|
|
content: "";
|
|
|
|
|
top: 0;
|
|
|
|
|
left: -20px;
|
2025-09-24 17:51:54 -06:00
|
|
|
width: 65%;
|
2025-09-24 14:05:51 -06:00
|
|
|
height: 100%;
|
|
|
|
|
min-width: 300px;
|
2025-09-24 17:51:54 -06:00
|
|
|
background: linear-gradient(to right, #bd8c01, #f9f9f9);
|
2025-09-24 14:05:51 -06:00
|
|
|
transform: skew(-45deg);
|
|
|
|
|
z-index: 0;
|
2025-09-02 19:50:17 -04:00
|
|
|
}
|
2025-09-24 17:51:54 -06:00
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
.yellowPart {
|
|
|
|
|
background: #bd8c01;
|
|
|
|
|
}
|
|
|
|
|
}
|