@use '../utils' as *;
/*----------------------------------------*/
/* 2.11 Breadcrumb
/*----------------------------------------*/
.mtbreadcrumb {
&__wrap {
@media #{$xs} {
flex-wrap: wrap;
gap: 20px;
}
}
&__bg {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
&::before {
content: "";
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
left: 0;
top: 0;
opacity: 0.5;
background: var(--0A0909, #0A0909);
}
& img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
&__space {
padding-top: 320px;
padding-bottom: 100px;
@media #{$xs} {
padding-top: 200px;
padding-bottom: 90px;
}
&.mtlargspace {
padding-bottom: 290px;
}
}
&__title {
font-size: 96px;
font-weight: 900;
color: var(--mt-common-white);
@media #{$lg} {
font-size: 80px;
}
@media #{$md} {
font-size: 60px;
}
@media #{$xs} {
font-size: 40px;
}
}
&__list {
& span {
font-size: 24px;
font-weight: 600;
color: var(--mt-common-white-3);
margin: 0 5px;
@media #{$xs} {
font-size: 18px;
}
&.active {
color: var(--mt-theme-1);
}
}
}
&__shape {
position: absolute;
left: 0;
top: 5%;
@media #{$xs} {
display: none;
}
&-2 {
position: absolute;
top: 0;
right: 0;
}
}
}